1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/intl.cpp
3 // Purpose: Internationalization and localisation for wxWidgets
4 // Author: Vadim Zeitlin
5 // Modified by: Michael N. Filippov <michael@idisys.iae.nsk.su>
6 // (2003/09/30 - PluralForms support)
9 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
29 // The following define is needed by Innotek's libc to
30 // make the definition of struct localeconv available.
31 #define __INTERNAL_DEFS
37 #include "wx/dynarray.h"
38 #include "wx/string.h"
43 #include "wx/hashmap.h"
44 #include "wx/module.h"
54 #ifdef HAVE_LANGINFO_H
59 #include "wx/msw/private.h"
60 #elif defined(__UNIX_LIKE__)
61 #include "wx/fontmap.h" // for CharsetToEncoding()
65 #include "wx/filename.h"
66 #include "wx/tokenzr.h"
67 #include "wx/fontmap.h"
68 #include "wx/encconv.h"
69 #include "wx/ptr_scpd.h"
70 #include "wx/apptrait.h"
71 #include "wx/stdpaths.h"
72 #include "wx/hashset.h"
73 #include "wx/filesys.h"
75 #if defined(__DARWIN__)
76 #include "wx/mac/corefoundation/cfref.h"
77 #include <CoreFoundation/CFLocale.h>
78 #include "wx/mac/corefoundation/cfstring.h"
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 // this should *not* be wxChar, this type must have exactly 8 bits!
86 typedef wxUint8 size_t8
;
87 typedef wxUint32 size_t32
;
89 // ----------------------------------------------------------------------------
91 // ----------------------------------------------------------------------------
93 // magic number identifying the .mo format file
94 const size_t32 MSGCATALOG_MAGIC
= 0x950412de;
95 const size_t32 MSGCATALOG_MAGIC_SW
= 0xde120495;
97 // the constants describing the format of lang_LANG locale string
98 static const size_t LEN_LANG
= 2;
99 static const size_t LEN_SUBLANG
= 2;
100 static const size_t LEN_FULL
= LEN_LANG
+ 1 + LEN_SUBLANG
; // 1 for '_'
102 #define TRACE_I18N wxS("i18n")
104 // ----------------------------------------------------------------------------
106 // ----------------------------------------------------------------------------
110 // small class to suppress the translation erros until exit from current scope
114 NoTransErr() { ms_suppressCount
++; }
115 ~NoTransErr() { ms_suppressCount
--; }
117 static bool Suppress() { return ms_suppressCount
> 0; }
120 static size_t ms_suppressCount
;
123 size_t NoTransErr::ms_suppressCount
= 0;
134 #endif // Debug/!Debug
136 static wxLocale
*wxSetLocale(wxLocale
*pLocale
);
138 // helper functions of GetSystemLanguage()
141 // get just the language part
142 static inline wxString
ExtractLang(const wxString
& langFull
)
144 return langFull
.Left(LEN_LANG
);
147 // get everything else (including the leading '_')
148 static inline wxString
ExtractNotLang(const wxString
& langFull
)
150 return langFull
.Mid(LEN_LANG
);
156 // ----------------------------------------------------------------------------
157 // Plural forms parser
158 // ----------------------------------------------------------------------------
164 LogicalOrExpression '?' Expression ':' Expression
168 LogicalAndExpression "||" LogicalOrExpression // to (a || b) || c
171 LogicalAndExpression:
172 EqualityExpression "&&" LogicalAndExpression // to (a && b) && c
176 RelationalExpression "==" RelationalExperession
177 RelationalExpression "!=" RelationalExperession
180 RelationalExpression:
181 MultiplicativeExpression '>' MultiplicativeExpression
182 MultiplicativeExpression '<' MultiplicativeExpression
183 MultiplicativeExpression ">=" MultiplicativeExpression
184 MultiplicativeExpression "<=" MultiplicativeExpression
185 MultiplicativeExpression
187 MultiplicativeExpression:
188 PmExpression '%' PmExpression
197 class wxPluralFormsToken
202 T_ERROR
, T_EOF
, T_NUMBER
, T_N
, T_PLURAL
, T_NPLURALS
, T_EQUAL
, T_ASSIGN
,
203 T_GREATER
, T_GREATER_OR_EQUAL
, T_LESS
, T_LESS_OR_EQUAL
,
204 T_REMINDER
, T_NOT_EQUAL
,
205 T_LOGICAL_AND
, T_LOGICAL_OR
, T_QUESTION
, T_COLON
, T_SEMICOLON
,
206 T_LEFT_BRACKET
, T_RIGHT_BRACKET
208 Type
type() const { return m_type
; }
209 void setType(Type type
) { m_type
= type
; }
212 Number
number() const { return m_number
; }
213 void setNumber(Number num
) { m_number
= num
; }
220 class wxPluralFormsScanner
223 wxPluralFormsScanner(const char* s
);
224 const wxPluralFormsToken
& token() const { return m_token
; }
225 bool nextToken(); // returns false if error
228 wxPluralFormsToken m_token
;
231 wxPluralFormsScanner::wxPluralFormsScanner(const char* s
) : m_s(s
)
236 bool wxPluralFormsScanner::nextToken()
238 wxPluralFormsToken::Type type
= wxPluralFormsToken::T_ERROR
;
239 while (isspace((unsigned char) *m_s
))
245 type
= wxPluralFormsToken::T_EOF
;
247 else if (isdigit((unsigned char) *m_s
))
249 wxPluralFormsToken::Number number
= *m_s
++ - '0';
250 while (isdigit((unsigned char) *m_s
))
252 number
= number
* 10 + (*m_s
++ - '0');
254 m_token
.setNumber(number
);
255 type
= wxPluralFormsToken::T_NUMBER
;
257 else if (isalpha((unsigned char) *m_s
))
259 const char* begin
= m_s
++;
260 while (isalnum((unsigned char) *m_s
))
264 size_t size
= m_s
- begin
;
265 if (size
== 1 && memcmp(begin
, "n", size
) == 0)
267 type
= wxPluralFormsToken::T_N
;
269 else if (size
== 6 && memcmp(begin
, "plural", size
) == 0)
271 type
= wxPluralFormsToken::T_PLURAL
;
273 else if (size
== 8 && memcmp(begin
, "nplurals", size
) == 0)
275 type
= wxPluralFormsToken::T_NPLURALS
;
278 else if (*m_s
== '=')
284 type
= wxPluralFormsToken::T_EQUAL
;
288 type
= wxPluralFormsToken::T_ASSIGN
;
291 else if (*m_s
== '>')
297 type
= wxPluralFormsToken::T_GREATER_OR_EQUAL
;
301 type
= wxPluralFormsToken::T_GREATER
;
304 else if (*m_s
== '<')
310 type
= wxPluralFormsToken::T_LESS_OR_EQUAL
;
314 type
= wxPluralFormsToken::T_LESS
;
317 else if (*m_s
== '%')
320 type
= wxPluralFormsToken::T_REMINDER
;
322 else if (*m_s
== '!' && m_s
[1] == '=')
325 type
= wxPluralFormsToken::T_NOT_EQUAL
;
327 else if (*m_s
== '&' && m_s
[1] == '&')
330 type
= wxPluralFormsToken::T_LOGICAL_AND
;
332 else if (*m_s
== '|' && m_s
[1] == '|')
335 type
= wxPluralFormsToken::T_LOGICAL_OR
;
337 else if (*m_s
== '?')
340 type
= wxPluralFormsToken::T_QUESTION
;
342 else if (*m_s
== ':')
345 type
= wxPluralFormsToken::T_COLON
;
346 } else if (*m_s
== ';') {
348 type
= wxPluralFormsToken::T_SEMICOLON
;
350 else if (*m_s
== '(')
353 type
= wxPluralFormsToken::T_LEFT_BRACKET
;
355 else if (*m_s
== ')')
358 type
= wxPluralFormsToken::T_RIGHT_BRACKET
;
360 m_token
.setType(type
);
361 return type
!= wxPluralFormsToken::T_ERROR
;
364 class wxPluralFormsNode
;
366 // NB: Can't use wxDEFINE_SCOPED_PTR_TYPE because wxPluralFormsNode is not
367 // fully defined yet:
368 class wxPluralFormsNodePtr
371 wxPluralFormsNodePtr(wxPluralFormsNode
*p
= NULL
) : m_p(p
) {}
372 ~wxPluralFormsNodePtr();
373 wxPluralFormsNode
& operator*() const { return *m_p
; }
374 wxPluralFormsNode
* operator->() const { return m_p
; }
375 wxPluralFormsNode
* get() const { return m_p
; }
376 wxPluralFormsNode
* release();
377 void reset(wxPluralFormsNode
*p
);
380 wxPluralFormsNode
*m_p
;
383 class wxPluralFormsNode
386 wxPluralFormsNode(const wxPluralFormsToken
& token
) : m_token(token
) {}
387 const wxPluralFormsToken
& token() const { return m_token
; }
388 const wxPluralFormsNode
* node(size_t i
) const
389 { return m_nodes
[i
].get(); }
390 void setNode(size_t i
, wxPluralFormsNode
* n
);
391 wxPluralFormsNode
* releaseNode(size_t i
);
392 wxPluralFormsToken::Number
evaluate(wxPluralFormsToken::Number n
) const;
395 wxPluralFormsToken m_token
;
396 wxPluralFormsNodePtr m_nodes
[3];
399 wxPluralFormsNodePtr::~wxPluralFormsNodePtr()
403 wxPluralFormsNode
* wxPluralFormsNodePtr::release()
405 wxPluralFormsNode
*p
= m_p
;
409 void wxPluralFormsNodePtr::reset(wxPluralFormsNode
*p
)
419 void wxPluralFormsNode::setNode(size_t i
, wxPluralFormsNode
* n
)
424 wxPluralFormsNode
* wxPluralFormsNode::releaseNode(size_t i
)
426 return m_nodes
[i
].release();
429 wxPluralFormsToken::Number
430 wxPluralFormsNode::evaluate(wxPluralFormsToken::Number n
) const
432 switch (token().type())
435 case wxPluralFormsToken::T_NUMBER
:
436 return token().number();
437 case wxPluralFormsToken::T_N
:
440 case wxPluralFormsToken::T_EQUAL
:
441 return node(0)->evaluate(n
) == node(1)->evaluate(n
);
442 case wxPluralFormsToken::T_NOT_EQUAL
:
443 return node(0)->evaluate(n
) != node(1)->evaluate(n
);
444 case wxPluralFormsToken::T_GREATER
:
445 return node(0)->evaluate(n
) > node(1)->evaluate(n
);
446 case wxPluralFormsToken::T_GREATER_OR_EQUAL
:
447 return node(0)->evaluate(n
) >= node(1)->evaluate(n
);
448 case wxPluralFormsToken::T_LESS
:
449 return node(0)->evaluate(n
) < node(1)->evaluate(n
);
450 case wxPluralFormsToken::T_LESS_OR_EQUAL
:
451 return node(0)->evaluate(n
) <= node(1)->evaluate(n
);
452 case wxPluralFormsToken::T_REMINDER
:
454 wxPluralFormsToken::Number number
= node(1)->evaluate(n
);
457 return node(0)->evaluate(n
) % number
;
464 case wxPluralFormsToken::T_LOGICAL_AND
:
465 return node(0)->evaluate(n
) && node(1)->evaluate(n
);
466 case wxPluralFormsToken::T_LOGICAL_OR
:
467 return node(0)->evaluate(n
) || node(1)->evaluate(n
);
469 case wxPluralFormsToken::T_QUESTION
:
470 return node(0)->evaluate(n
)
471 ? node(1)->evaluate(n
)
472 : node(2)->evaluate(n
);
479 class wxPluralFormsCalculator
482 wxPluralFormsCalculator() : m_nplurals(0), m_plural(0) {}
484 // input: number, returns msgstr index
485 int evaluate(int n
) const;
487 // input: text after "Plural-Forms:" (e.g. "nplurals=2; plural=(n != 1);"),
488 // if s == 0, creates default handler
489 // returns 0 if error
490 static wxPluralFormsCalculator
* make(const char* s
= 0);
492 ~wxPluralFormsCalculator() {}
494 void init(wxPluralFormsToken::Number nplurals
, wxPluralFormsNode
* plural
);
497 wxPluralFormsToken::Number m_nplurals
;
498 wxPluralFormsNodePtr m_plural
;
501 wxDEFINE_SCOPED_PTR_TYPE(wxPluralFormsCalculator
)
503 void wxPluralFormsCalculator::init(wxPluralFormsToken::Number nplurals
,
504 wxPluralFormsNode
* plural
)
506 m_nplurals
= nplurals
;
507 m_plural
.reset(plural
);
510 int wxPluralFormsCalculator::evaluate(int n
) const
512 if (m_plural
.get() == 0)
516 wxPluralFormsToken::Number number
= m_plural
->evaluate(n
);
517 if (number
< 0 || number
> m_nplurals
)
525 class wxPluralFormsParser
528 wxPluralFormsParser(wxPluralFormsScanner
& scanner
) : m_scanner(scanner
) {}
529 bool parse(wxPluralFormsCalculator
& rCalculator
);
532 wxPluralFormsNode
* parsePlural();
533 // stops at T_SEMICOLON, returns 0 if error
534 wxPluralFormsScanner
& m_scanner
;
535 const wxPluralFormsToken
& token() const;
538 wxPluralFormsNode
* expression();
539 wxPluralFormsNode
* logicalOrExpression();
540 wxPluralFormsNode
* logicalAndExpression();
541 wxPluralFormsNode
* equalityExpression();
542 wxPluralFormsNode
* multiplicativeExpression();
543 wxPluralFormsNode
* relationalExpression();
544 wxPluralFormsNode
* pmExpression();
547 bool wxPluralFormsParser::parse(wxPluralFormsCalculator
& rCalculator
)
549 if (token().type() != wxPluralFormsToken::T_NPLURALS
)
553 if (token().type() != wxPluralFormsToken::T_ASSIGN
)
557 if (token().type() != wxPluralFormsToken::T_NUMBER
)
559 wxPluralFormsToken::Number nplurals
= token().number();
562 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
566 if (token().type() != wxPluralFormsToken::T_PLURAL
)
570 if (token().type() != wxPluralFormsToken::T_ASSIGN
)
574 wxPluralFormsNode
* plural
= parsePlural();
577 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
581 if (token().type() != wxPluralFormsToken::T_EOF
)
583 rCalculator
.init(nplurals
, plural
);
587 wxPluralFormsNode
* wxPluralFormsParser::parsePlural()
589 wxPluralFormsNode
* p
= expression();
594 wxPluralFormsNodePtr
n(p
);
595 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
602 const wxPluralFormsToken
& wxPluralFormsParser::token() const
604 return m_scanner
.token();
607 bool wxPluralFormsParser::nextToken()
609 if (!m_scanner
.nextToken())
614 wxPluralFormsNode
* wxPluralFormsParser::expression()
616 wxPluralFormsNode
* p
= logicalOrExpression();
619 wxPluralFormsNodePtr
n(p
);
620 if (token().type() == wxPluralFormsToken::T_QUESTION
)
622 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
633 if (token().type() != wxPluralFormsToken::T_COLON
)
647 qn
->setNode(0, n
.release());
653 wxPluralFormsNode
*wxPluralFormsParser::logicalOrExpression()
655 wxPluralFormsNode
* p
= logicalAndExpression();
658 wxPluralFormsNodePtr
ln(p
);
659 if (token().type() == wxPluralFormsToken::T_LOGICAL_OR
)
661 wxPluralFormsNodePtr
un(new wxPluralFormsNode(token()));
666 p
= logicalOrExpression();
671 wxPluralFormsNodePtr
rn(p
); // right
672 if (rn
->token().type() == wxPluralFormsToken::T_LOGICAL_OR
)
674 // see logicalAndExpression comment
675 un
->setNode(0, ln
.release());
676 un
->setNode(1, rn
->releaseNode(0));
677 rn
->setNode(0, un
.release());
682 un
->setNode(0, ln
.release());
683 un
->setNode(1, rn
.release());
689 wxPluralFormsNode
* wxPluralFormsParser::logicalAndExpression()
691 wxPluralFormsNode
* p
= equalityExpression();
694 wxPluralFormsNodePtr
ln(p
); // left
695 if (token().type() == wxPluralFormsToken::T_LOGICAL_AND
)
697 wxPluralFormsNodePtr
un(new wxPluralFormsNode(token())); // up
702 p
= logicalAndExpression();
707 wxPluralFormsNodePtr
rn(p
); // right
708 if (rn
->token().type() == wxPluralFormsToken::T_LOGICAL_AND
)
710 // transform 1 && (2 && 3) -> (1 && 2) && 3
714 un
->setNode(0, ln
.release());
715 un
->setNode(1, rn
->releaseNode(0));
716 rn
->setNode(0, un
.release());
720 un
->setNode(0, ln
.release());
721 un
->setNode(1, rn
.release());
727 wxPluralFormsNode
* wxPluralFormsParser::equalityExpression()
729 wxPluralFormsNode
* p
= relationalExpression();
732 wxPluralFormsNodePtr
n(p
);
733 if (token().type() == wxPluralFormsToken::T_EQUAL
734 || token().type() == wxPluralFormsToken::T_NOT_EQUAL
)
736 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
741 p
= relationalExpression();
747 qn
->setNode(0, n
.release());
753 wxPluralFormsNode
* wxPluralFormsParser::relationalExpression()
755 wxPluralFormsNode
* p
= multiplicativeExpression();
758 wxPluralFormsNodePtr
n(p
);
759 if (token().type() == wxPluralFormsToken::T_GREATER
760 || token().type() == wxPluralFormsToken::T_LESS
761 || token().type() == wxPluralFormsToken::T_GREATER_OR_EQUAL
762 || token().type() == wxPluralFormsToken::T_LESS_OR_EQUAL
)
764 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
769 p
= multiplicativeExpression();
775 qn
->setNode(0, n
.release());
781 wxPluralFormsNode
* wxPluralFormsParser::multiplicativeExpression()
783 wxPluralFormsNode
* p
= pmExpression();
786 wxPluralFormsNodePtr
n(p
);
787 if (token().type() == wxPluralFormsToken::T_REMINDER
)
789 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
800 qn
->setNode(0, n
.release());
806 wxPluralFormsNode
* wxPluralFormsParser::pmExpression()
808 wxPluralFormsNodePtr n
;
809 if (token().type() == wxPluralFormsToken::T_N
810 || token().type() == wxPluralFormsToken::T_NUMBER
)
812 n
.reset(new wxPluralFormsNode(token()));
818 else if (token().type() == wxPluralFormsToken::T_LEFT_BRACKET
) {
823 wxPluralFormsNode
* p
= expression();
829 if (token().type() != wxPluralFormsToken::T_RIGHT_BRACKET
)
845 wxPluralFormsCalculator
* wxPluralFormsCalculator::make(const char* s
)
847 wxPluralFormsCalculatorPtr
calculator(new wxPluralFormsCalculator
);
850 wxPluralFormsScanner
scanner(s
);
851 wxPluralFormsParser
p(scanner
);
852 if (!p
.parse(*calculator
))
857 return calculator
.release();
863 // ----------------------------------------------------------------------------
864 // wxMsgCatalogFile corresponds to one disk-file message catalog.
866 // This is a "low-level" class and is used only by wxMsgCatalog
867 // ----------------------------------------------------------------------------
869 WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxString
, wxMessagesHash
);
871 class wxMsgCatalogFile
878 // load the catalog from disk (szDirPrefix corresponds to language)
879 bool Load(const wxString
& szDirPrefix
, const wxString
& szName
,
880 wxPluralFormsCalculatorPtr
& rPluralFormsCalculator
);
882 // fills the hash with string-translation pairs
883 void FillHash(wxMessagesHash
& hash
,
884 const wxString
& msgIdCharset
,
885 bool convertEncoding
) const;
887 // return the charset of the strings in this catalog or empty string if
889 wxString
GetCharset() const { return m_charset
; }
892 // this implementation is binary compatible with GNU gettext() version 0.10
894 // an entry in the string table
895 struct wxMsgTableEntry
897 size_t32 nLen
; // length of the string
898 size_t32 ofsString
; // pointer to the string
901 // header of a .mo file
902 struct wxMsgCatalogHeader
904 size_t32 magic
, // offset +00: magic id
905 revision
, // +04: revision
906 numStrings
; // +08: number of strings in the file
907 size_t32 ofsOrigTable
, // +0C: start of original string table
908 ofsTransTable
; // +10: start of translated string table
909 size_t32 nHashSize
, // +14: hash table size
910 ofsHashTable
; // +18: offset of hash table start
913 // all data is stored here
914 wxMemoryBuffer m_data
;
917 size_t32 m_numStrings
; // number of strings in this domain
918 wxMsgTableEntry
*m_pOrigTable
, // pointer to original strings
919 *m_pTransTable
; // translated
921 wxString m_charset
; // from the message catalog header
924 // swap the 2 halves of 32 bit integer if needed
925 size_t32
Swap(size_t32 ui
) const
927 return m_bSwapped
? (ui
<< 24) | ((ui
& 0xff00) << 8) |
928 ((ui
>> 8) & 0xff00) | (ui
>> 24)
932 // just return the pointer to the start of the data as "char *" to
933 // facilitate doing pointer arithmetic with it
934 char *StringData() const
936 return wx_static_cast(char *, m_data
.GetData());
939 const char *StringAtOfs(wxMsgTableEntry
*pTable
, size_t32 n
) const
941 const wxMsgTableEntry
* const ent
= pTable
+ n
;
943 // this check could fail for a corrupt message catalog
944 size_t32 ofsString
= Swap(ent
->ofsString
);
945 if ( ofsString
+ Swap(ent
->nLen
) > m_data
.GetDataLen())
950 return StringData() + ofsString
;
953 bool m_bSwapped
; // wrong endianness?
955 DECLARE_NO_COPY_CLASS(wxMsgCatalogFile
)
959 // ----------------------------------------------------------------------------
960 // wxMsgCatalog corresponds to one loaded message catalog.
962 // This is a "low-level" class and is used only by wxLocale (that's why
963 // it's designed to be stored in a linked list)
964 // ----------------------------------------------------------------------------
970 wxMsgCatalog() { m_conv
= NULL
; }
974 // load the catalog from disk (szDirPrefix corresponds to language)
975 bool Load(const wxString
& dirPrefix
, const wxString
& name
,
976 const wxString
& msgIdCharset
, bool bConvertEncoding
= false);
978 // get name of the catalog
979 wxString
GetName() const { return m_name
; }
981 // get the translated string: returns NULL if not found
982 const wxString
*GetString(const wxString
& sz
, size_t n
= size_t(-1)) const;
984 // public variable pointing to the next element in a linked list (or NULL)
985 wxMsgCatalog
*m_pNext
;
988 wxMessagesHash m_messages
; // all messages in the catalog
989 wxString m_name
; // name of the domain
992 // the conversion corresponding to this catalog charset if we installed it
997 wxPluralFormsCalculatorPtr m_pluralFormsCalculator
;
1000 // ----------------------------------------------------------------------------
1002 // ----------------------------------------------------------------------------
1004 // the list of the directories to search for message catalog files
1005 static wxArrayString gs_searchPrefixes
;
1007 // ============================================================================
1009 // ============================================================================
1011 // ----------------------------------------------------------------------------
1013 // ----------------------------------------------------------------------------
1017 // helper used by wxLanguageInfo::GetLocaleName() and elsewhere to determine
1018 // whether the locale is Unicode-only (it is if this function returns empty
1020 static wxString
wxGetANSICodePageForLocale(LCID lcid
)
1025 if ( ::GetLocaleInfo(lcid
, LOCALE_IDEFAULTANSICODEPAGE
,
1026 buffer
, WXSIZEOF(buffer
)) > 0 )
1028 if ( buffer
[0] != _T('0') || buffer
[1] != _T('\0') )
1030 //else: this locale doesn't use ANSI code page
1036 wxUint32
wxLanguageInfo::GetLCID() const
1038 return MAKELCID(MAKELANGID(WinLang
, WinSublang
), SORT_DEFAULT
);
1041 wxString
wxLanguageInfo::GetLocaleName() const
1045 const LCID lcid
= GetLCID();
1048 buffer
[0] = _T('\0');
1049 if ( !::GetLocaleInfo(lcid
, LOCALE_SENGLANGUAGE
, buffer
, WXSIZEOF(buffer
)) )
1051 wxLogLastError(_T("GetLocaleInfo(LOCALE_SENGLANGUAGE)"));
1056 if ( ::GetLocaleInfo(lcid
, LOCALE_SENGCOUNTRY
,
1057 buffer
, WXSIZEOF(buffer
)) > 0 )
1059 locale
<< _T('_') << buffer
;
1062 const wxString cp
= wxGetANSICodePageForLocale(lcid
);
1065 locale
<< _T('.') << cp
;
1073 // ----------------------------------------------------------------------------
1074 // wxMsgCatalogFile class
1075 // ----------------------------------------------------------------------------
1077 wxMsgCatalogFile::wxMsgCatalogFile()
1081 wxMsgCatalogFile::~wxMsgCatalogFile()
1085 // return the directories to search for message catalogs under the given
1086 // prefix, separated by wxPATH_SEP
1088 wxString
GetMsgCatalogSubdirs(const wxString
& prefix
, const wxString
& lang
)
1090 // Search first in Unix-standard prefix/lang/LC_MESSAGES, then in
1091 // prefix/lang and finally in just prefix.
1093 // Note that we use LC_MESSAGES on all platforms and not just Unix, because
1094 // it doesn't cost much to look into one more directory and doing it this
1095 // way has two important benefits:
1096 // a) we don't break compatibility with wx-2.6 and older by stopping to
1097 // look in a directory where the catalogs used to be and thus silently
1098 // breaking apps after they are recompiled against the latest wx
1099 // b) it makes it possible to package app's support files in the same
1100 // way on all target platforms
1101 const wxString pathPrefix
= wxFileName(prefix
, lang
).GetFullPath();
1103 wxString searchPath
;
1104 searchPath
.reserve(4*pathPrefix
.length());
1105 searchPath
<< pathPrefix
<< wxFILE_SEP_PATH
<< "LC_MESSAGES" << wxPATH_SEP
1106 << prefix
<< wxFILE_SEP_PATH
<< wxPATH_SEP
1112 // construct the search path for the given language
1113 static wxString
GetFullSearchPath(const wxString
& lang
)
1115 // first take the entries explicitly added by the program
1116 wxArrayString paths
;
1117 paths
.reserve(gs_searchPrefixes
.size() + 1);
1119 count
= gs_searchPrefixes
.size();
1120 for ( n
= 0; n
< count
; n
++ )
1122 paths
.Add(GetMsgCatalogSubdirs(gs_searchPrefixes
[n
], lang
));
1127 // then look in the standard location
1128 const wxString stdp
= wxStandardPaths::Get().
1129 GetLocalizedResourcesDir(lang
, wxStandardPaths::ResourceCat_Messages
);
1131 if ( paths
.Index(stdp
) == wxNOT_FOUND
)
1133 #endif // wxUSE_STDPATHS
1135 // last look in default locations
1137 // LC_PATH is a standard env var containing the search path for the .mo
1139 const char *pszLcPath
= wxGetenv("LC_PATH");
1142 const wxString lcp
= GetMsgCatalogSubdirs(pszLcPath
, lang
);
1143 if ( paths
.Index(lcp
) == wxNOT_FOUND
)
1147 // also add the one from where wxWin was installed:
1148 wxString wxp
= wxGetInstallPrefix();
1151 wxp
= GetMsgCatalogSubdirs(wxp
+ wxS("/share/locale"), lang
);
1152 if ( paths
.Index(wxp
) == wxNOT_FOUND
)
1158 // finally construct the full search path
1159 wxString searchPath
;
1160 searchPath
.reserve(500);
1161 count
= paths
.size();
1162 for ( n
= 0; n
< count
; n
++ )
1164 searchPath
+= paths
[n
];
1165 if ( n
!= count
- 1 )
1166 searchPath
+= wxPATH_SEP
;
1172 // open disk file and read in it's contents
1173 bool wxMsgCatalogFile::Load(const wxString
& szDirPrefix
, const wxString
& szName
,
1174 wxPluralFormsCalculatorPtr
& rPluralFormsCalculator
)
1176 wxString searchPath
;
1179 // first look for the catalog for this language and the current locale:
1180 // notice that we don't use the system name for the locale as this would
1181 // force us to install catalogs in different locations depending on the
1182 // system but always use the canonical name
1183 wxFontEncoding encSys
= wxLocale::GetSystemEncoding();
1184 if ( encSys
!= wxFONTENCODING_SYSTEM
)
1186 wxString
fullname(szDirPrefix
);
1187 fullname
<< wxS('.') << wxFontMapperBase::GetEncodingName(encSys
);
1188 searchPath
<< GetFullSearchPath(fullname
) << wxPATH_SEP
;
1190 #endif // wxUSE_FONTMAP
1193 searchPath
+= GetFullSearchPath(szDirPrefix
);
1194 size_t sublocaleIndex
= szDirPrefix
.find(wxS('_'));
1195 if ( sublocaleIndex
!= wxString::npos
)
1197 // also add just base locale name: for things like "fr_BE" (belgium
1198 // french) we should use "fr" if no belgium specific message catalogs
1200 searchPath
<< wxPATH_SEP
1201 << GetFullSearchPath(szDirPrefix
.Left(sublocaleIndex
));
1204 // don't give translation errors here because the wxstd catalog might
1205 // not yet be loaded (and it's normal)
1207 // (we're using an object because we have several return paths)
1209 NoTransErr noTransErr
;
1210 wxLogVerbose(_("looking for catalog '%s' in path '%s'."),
1211 szName
, searchPath
.c_str());
1212 wxLogTrace(TRACE_I18N
, wxS("Looking for \"%s.mo\" in \"%s\""),
1213 szName
, searchPath
.c_str());
1215 wxFileName
fn(szName
);
1216 fn
.SetExt(wxS("mo"));
1218 wxString strFullName
;
1219 #if wxUSE_FILESYSTEM
1220 wxFileSystem fileSys
;
1221 if ( !fileSys
.FindFileInPath(&strFullName
, searchPath
, fn
.GetFullPath()) )
1222 #else // !wxUSE_FILESYSTEM
1223 if ( !wxFindFileInPath(&strFullName
, searchPath
, fn
.GetFullPath()) )
1224 #endif // wxUSE_FILESYSTEM/!wxUSE_FILESYSTEM
1226 wxLogVerbose(_("catalog file for domain '%s' not found."), szName
);
1227 wxLogTrace(TRACE_I18N
, wxS("Catalog \"%s.mo\" not found"), szName
);
1231 // open file and read its data
1232 wxLogVerbose(_("using catalog '%s' from '%s'."), szName
, strFullName
.c_str());
1233 wxLogTrace(TRACE_I18N
, wxS("Using catalog \"%s\"."), strFullName
.c_str());
1235 #if wxUSE_FILESYSTEM
1236 wxFSFile
* const fileMsg
= fileSys
.OpenFile(strFullName
);
1240 wxInputStream
*fileStream
= fileMsg
->GetStream();
1241 m_data
.SetDataLen(0);
1243 static const size_t chunkSize
= 4096;
1244 while ( !fileStream
->Eof() ) {
1245 fileStream
->Read(m_data
.GetAppendBuf(chunkSize
), chunkSize
);
1246 m_data
.UngetAppendBuf(fileStream
->LastRead());
1250 #else // !wxUSE_FILESYSTEM
1251 wxFile
fileMsg(strFullName
);
1252 if ( !fileMsg
.IsOpened() )
1255 // get the file size (assume it is less than 4Gb...)
1256 wxFileOffset lenFile
= fileMsg
.Length();
1257 if ( lenFile
== wxInvalidOffset
)
1260 size_t nSize
= wx_truncate_cast(size_t, lenFile
);
1261 wxASSERT_MSG( nSize
== lenFile
+ size_t(0), wxS("message catalog bigger than 4GB?") );
1263 // read the whole file in memory
1264 if ( fileMsg
.Read(m_data
.GetWriteBuf(nSize
), nSize
) != lenFile
)
1266 #endif // wxUSE_FILESYSTEM/!wxUSE_FILESYSTEM
1270 bool bValid
= m_data
.GetDataLen() > sizeof(wxMsgCatalogHeader
);
1272 const wxMsgCatalogHeader
*pHeader
= (wxMsgCatalogHeader
*)m_data
.GetData();
1274 // we'll have to swap all the integers if it's true
1275 m_bSwapped
= pHeader
->magic
== MSGCATALOG_MAGIC_SW
;
1277 // check the magic number
1278 bValid
= m_bSwapped
|| pHeader
->magic
== MSGCATALOG_MAGIC
;
1282 // it's either too short or has incorrect magic number
1283 wxLogWarning(_("'%s' is not a valid message catalog."), strFullName
.c_str());
1289 m_numStrings
= Swap(pHeader
->numStrings
);
1290 m_pOrigTable
= (wxMsgTableEntry
*)(StringData() +
1291 Swap(pHeader
->ofsOrigTable
));
1292 m_pTransTable
= (wxMsgTableEntry
*)(StringData() +
1293 Swap(pHeader
->ofsTransTable
));
1295 // now parse catalog's header and try to extract catalog charset and
1296 // plural forms formula from it:
1298 const char* headerData
= StringAtOfs(m_pOrigTable
, 0);
1299 if (headerData
&& headerData
[0] == 0)
1301 // Extract the charset:
1302 wxString header
= wxString::FromAscii(StringAtOfs(m_pTransTable
, 0));
1303 int begin
= header
.Find(wxS("Content-Type: text/plain; charset="));
1304 if (begin
!= wxNOT_FOUND
)
1306 begin
+= 34; //strlen("Content-Type: text/plain; charset=")
1307 size_t end
= header
.find('\n', begin
);
1308 if (end
!= size_t(-1))
1310 m_charset
.assign(header
, begin
, end
- begin
);
1311 if (m_charset
== wxS("CHARSET"))
1313 // "CHARSET" is not valid charset, but lazy translator
1318 // else: incorrectly filled Content-Type header
1320 // Extract plural forms:
1321 begin
= header
.Find(wxS("Plural-Forms:"));
1322 if (begin
!= wxNOT_FOUND
)
1325 size_t end
= header
.find('\n', begin
);
1326 if (end
!= size_t(-1))
1328 wxString
pfs(header
, begin
, end
- begin
);
1329 wxPluralFormsCalculator
* pCalculator
= wxPluralFormsCalculator
1330 ::make(pfs
.ToAscii());
1331 if (pCalculator
!= 0)
1333 rPluralFormsCalculator
.reset(pCalculator
);
1337 wxLogVerbose(_("Cannot parse Plural-Forms:'%s'"), pfs
.c_str());
1341 if (rPluralFormsCalculator
.get() == NULL
)
1343 rPluralFormsCalculator
.reset(wxPluralFormsCalculator::make());
1347 // everything is fine
1351 void wxMsgCatalogFile::FillHash(wxMessagesHash
& hash
,
1352 const wxString
& msgIdCharset
,
1353 bool convertEncoding
) const
1356 // this parameter doesn't make sense, we always must convert encoding in
1358 convertEncoding
= true;
1360 if ( convertEncoding
)
1362 // determine if we need any conversion at all
1363 wxFontEncoding encCat
= wxFontMapperBase::GetEncodingFromName(m_charset
);
1364 if ( encCat
== wxLocale::GetSystemEncoding() )
1366 // no need to convert
1367 convertEncoding
= false;
1370 #endif // wxUSE_UNICODE/wxUSE_FONTMAP
1373 // conversion to use to convert catalog strings to the GUI encoding
1374 wxMBConv
*inputConv
,
1375 *inputConvPtr
= NULL
; // same as inputConv but safely deleteable
1376 if ( convertEncoding
&& !m_charset
.empty() )
1379 inputConv
= new wxCSConv(m_charset
);
1381 else // no need or not possible to convert the encoding
1384 // we must somehow convert the narrow strings in the message catalog to
1385 // wide strings, so use the default conversion if we have no charset
1386 inputConv
= wxConvCurrent
;
1387 #else // !wxUSE_UNICODE
1389 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1392 // conversion to apply to msgid strings before looking them up: we only
1393 // need it if the msgids are neither in 7 bit ASCII nor in the same
1394 // encoding as the catalog
1395 wxCSConv
*sourceConv
= msgIdCharset
.empty() || (msgIdCharset
== m_charset
)
1397 : new wxCSConv(msgIdCharset
);
1400 wxASSERT_MSG( msgIdCharset
.empty(),
1401 wxS("non-ASCII msgid languages only supported if wxUSE_WCHAR_T=1") );
1403 wxEncodingConverter converter
;
1404 if ( convertEncoding
)
1406 wxFontEncoding targetEnc
= wxFONTENCODING_SYSTEM
;
1407 wxFontEncoding enc
= wxFontMapperBase::Get()->CharsetToEncoding(m_charset
, false);
1408 if ( enc
== wxFONTENCODING_SYSTEM
)
1410 convertEncoding
= false; // unknown encoding
1414 targetEnc
= wxLocale::GetSystemEncoding();
1415 if (targetEnc
== wxFONTENCODING_SYSTEM
)
1417 wxFontEncodingArray a
= wxEncodingConverter::GetPlatformEquivalents(enc
);
1419 // no conversion needed, locale uses native encoding
1420 convertEncoding
= false;
1421 if (a
.GetCount() == 0)
1422 // we don't know common equiv. under this platform
1423 convertEncoding
= false;
1428 if ( convertEncoding
)
1430 converter
.Init(enc
, targetEnc
);
1433 #endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
1434 (void)convertEncoding
; // get rid of warnings about unused parameter
1436 for (size_t32 i
= 0; i
< m_numStrings
; i
++)
1438 const char *data
= StringAtOfs(m_pOrigTable
, i
);
1442 msgid
= wxString(data
, *inputConv
);
1445 if ( inputConv
&& sourceConv
)
1446 msgid
= wxString(inputConv
->cMB2WC(data
), *sourceConv
);
1450 #endif // wxUSE_UNICODE
1452 data
= StringAtOfs(m_pTransTable
, i
);
1453 size_t length
= Swap(m_pTransTable
[i
].nLen
);
1456 while (offset
< length
)
1458 const char * const str
= data
+ offset
;
1462 msgstr
= wxString(str
, *inputConv
);
1465 msgstr
= wxString(inputConv
->cMB2WC(str
), *wxConvUI
);
1468 #else // !wxUSE_WCHAR_T
1470 if ( bConvertEncoding
)
1471 msgstr
= wxString(converter
.Convert(str
));
1475 #endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
1477 if ( !msgstr
.empty() )
1479 hash
[index
== 0 ? msgid
: msgid
+ wxChar(index
)] = msgstr
;
1483 offset
+= strlen(str
) + 1;
1490 delete inputConvPtr
;
1491 #endif // wxUSE_WCHAR_T
1495 // ----------------------------------------------------------------------------
1496 // wxMsgCatalog class
1497 // ----------------------------------------------------------------------------
1500 wxMsgCatalog::~wxMsgCatalog()
1504 if ( wxConvUI
== m_conv
)
1506 // we only change wxConvUI if it points to wxConvLocal so we reset
1507 // it back to it too
1508 wxConvUI
= &wxConvLocal
;
1514 #endif // !wxUSE_UNICODE
1516 bool wxMsgCatalog::Load(const wxString
& dirPrefix
, const wxString
& name
,
1517 const wxString
& msgIdCharset
, bool bConvertEncoding
)
1519 wxMsgCatalogFile file
;
1523 if ( !file
.Load(dirPrefix
, name
, m_pluralFormsCalculator
) )
1526 file
.FillHash(m_messages
, msgIdCharset
, bConvertEncoding
);
1529 // we should use a conversion compatible with the message catalog encoding
1530 // in the GUI if we don't convert the strings to the current conversion but
1531 // as the encoding is global, only change it once, otherwise we could get
1532 // into trouble if we use several message catalogs with different encodings
1534 // this is, of course, a hack but it at least allows the program to use
1535 // message catalogs in any encodings without asking the user to change his
1537 if ( !bConvertEncoding
&&
1538 !file
.GetCharset().empty() &&
1539 wxConvUI
== &wxConvLocal
)
1542 m_conv
= new wxCSConv(file
.GetCharset());
1544 #endif // !wxUSE_UNICODE
1549 const wxString
*wxMsgCatalog::GetString(const wxString
& str
, size_t n
) const
1552 if (n
!= size_t(-1))
1554 index
= m_pluralFormsCalculator
->evaluate(n
);
1556 wxMessagesHash::const_iterator i
;
1559 i
= m_messages
.find(wxString(str
) + wxChar(index
)); // plural
1563 i
= m_messages
.find(str
);
1566 if ( i
!= m_messages
.end() )
1574 // ----------------------------------------------------------------------------
1576 // ----------------------------------------------------------------------------
1578 #include "wx/arrimpl.cpp"
1579 WX_DECLARE_EXPORTED_OBJARRAY(wxLanguageInfo
, wxLanguageInfoArray
);
1580 WX_DEFINE_OBJARRAY(wxLanguageInfoArray
)
1582 wxLanguageInfoArray
*wxLocale::ms_languagesDB
= NULL
;
1584 /*static*/ void wxLocale::CreateLanguagesDB()
1586 if (ms_languagesDB
== NULL
)
1588 ms_languagesDB
= new wxLanguageInfoArray
;
1593 /*static*/ void wxLocale::DestroyLanguagesDB()
1595 delete ms_languagesDB
;
1596 ms_languagesDB
= NULL
;
1600 void wxLocale::DoCommonInit()
1602 m_pszOldLocale
= NULL
;
1604 m_pOldLocale
= wxSetLocale(this);
1607 m_language
= wxLANGUAGE_UNKNOWN
;
1608 m_initialized
= false;
1611 // NB: this function has (desired) side effect of changing current locale
1612 bool wxLocale::Init(const wxString
& name
,
1613 const wxString
& shortName
,
1614 const wxString
& locale
,
1616 bool bConvertEncoding
)
1618 wxASSERT_MSG( !m_initialized
,
1619 wxS("you can't call wxLocale::Init more than once") );
1621 m_initialized
= true;
1623 m_strShort
= shortName
;
1624 m_bConvertEncoding
= bConvertEncoding
;
1625 m_language
= wxLANGUAGE_UNKNOWN
;
1627 // change current locale (default: same as long name)
1628 wxString
szLocale(locale
);
1629 if ( szLocale
.empty() )
1631 // the argument to setlocale()
1632 szLocale
= shortName
;
1634 wxCHECK_MSG( !szLocale
.empty(), false,
1635 wxS("no locale to set in wxLocale::Init()") );
1638 const char *oldLocale
= wxSetlocale(LC_ALL
, szLocale
);
1640 m_pszOldLocale
= wxStrdup(oldLocale
);
1642 m_pszOldLocale
= NULL
;
1644 if ( m_pszOldLocale
== NULL
)
1645 wxLogError(_("locale '%s' can not be set."), szLocale
);
1647 // the short name will be used to look for catalog files as well,
1648 // so we need something here
1649 if ( m_strShort
.empty() ) {
1650 // FIXME I don't know how these 2 letter abbreviations are formed,
1651 // this wild guess is surely wrong
1652 if ( !szLocale
.empty() )
1654 m_strShort
+= (wxChar
)wxTolower(szLocale
[0]);
1655 if ( szLocale
.length() > 1 )
1656 m_strShort
+= (wxChar
)wxTolower(szLocale
[1]);
1660 // load the default catalog with wxWidgets standard messages
1665 bOk
= AddCatalog(wxS("wxstd"));
1667 // there may be a catalog with toolkit specific overrides, it is not
1668 // an error if this does not exist
1671 wxString
port(wxPlatformInfo::Get().GetPortIdName());
1672 if ( !port
.empty() )
1674 AddCatalog(port
.BeforeFirst(wxS('/')).MakeLower());
1683 #if defined(__UNIX__) && wxUSE_UNICODE && !defined(__WXMAC__)
1684 static const char *wxSetlocaleTryUTF8(int c
, const wxString
& lc
)
1686 const char *l
= NULL
;
1688 // NB: We prefer to set UTF-8 locale if it's possible and only fall back to
1689 // non-UTF-8 locale if it fails
1695 buf2
= buf
+ wxS(".UTF-8");
1696 l
= wxSetlocale(c
, buf2
);
1699 buf2
= buf
+ wxS(".utf-8");
1700 l
= wxSetlocale(c
, buf2
);
1704 buf2
= buf
+ wxS(".UTF8");
1705 l
= wxSetlocale(c
, buf2
);
1709 buf2
= buf
+ wxS(".utf8");
1710 l
= wxSetlocale(c
, buf2
);
1714 // if we can't set UTF-8 locale, try non-UTF-8 one:
1716 l
= wxSetlocale(c
, lc
);
1721 #define wxSetlocaleTryUTF8(c, lc) wxSetlocale(c, lc)
1724 bool wxLocale::Init(int language
, int flags
)
1728 int lang
= language
;
1729 if (lang
== wxLANGUAGE_DEFAULT
)
1731 // auto detect the language
1732 lang
= GetSystemLanguage();
1735 // We failed to detect system language, so we will use English:
1736 if (lang
== wxLANGUAGE_UNKNOWN
)
1741 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
1743 // Unknown language:
1746 wxLogError(wxS("Unknown language %i."), lang
);
1750 wxString name
= info
->Description
;
1751 wxString canonical
= info
->CanonicalName
;
1755 #if defined(__OS2__)
1756 const char *retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
1757 #elif defined(__UNIX__) && !defined(__WXMAC__)
1758 if (language
!= wxLANGUAGE_DEFAULT
)
1759 locale
= info
->CanonicalName
;
1761 const char *retloc
= wxSetlocaleTryUTF8(LC_ALL
, locale
);
1763 const wxString langOnly
= locale
.Left(2);
1766 // Some C libraries don't like xx_YY form and require xx only
1767 retloc
= wxSetlocaleTryUTF8(LC_ALL
, langOnly
);
1771 // some systems (e.g. FreeBSD and HP-UX) don't have xx_YY aliases but
1772 // require the full xx_YY.encoding form, so try using UTF-8 because this is
1773 // the only thing we can do generically
1775 // TODO: add encodings applicable to each language to the lang DB and try
1776 // them all in turn here
1779 const wxChar
**names
=
1780 wxFontMapperBase::GetAllEncodingNames(wxFONTENCODING_UTF8
);
1783 retloc
= wxSetlocale(LC_ALL
, locale
+ wxS('.') + *names
++);
1788 #endif // wxUSE_FONTMAP
1792 // Some C libraries (namely glibc) still use old ISO 639,
1793 // so will translate the abbrev for them
1795 if ( langOnly
== wxS("he") )
1796 localeAlt
= wxS("iw") + locale
.Mid(3);
1797 else if ( langOnly
== wxS("id") )
1798 localeAlt
= wxS("in") + locale
.Mid(3);
1799 else if ( langOnly
== wxS("yi") )
1800 localeAlt
= wxS("ji") + locale
.Mid(3);
1801 else if ( langOnly
== wxS("nb") )
1802 localeAlt
= wxS("no_NO");
1803 else if ( langOnly
== wxS("nn") )
1804 localeAlt
= wxS("no_NY");
1806 if ( !localeAlt
.empty() )
1808 retloc
= wxSetlocaleTryUTF8(LC_ALL
, localeAlt
);
1810 retloc
= wxSetlocaleTryUTF8(LC_ALL
, localeAlt
.Left(2));
1818 // at least in AIX 5.2 libc is buggy and the string returned from
1819 // setlocale(LC_ALL) can't be passed back to it because it returns 6
1820 // strings (one for each locale category), i.e. for C locale we get back
1823 // this contradicts IBM own docs but this is not of much help, so just work
1824 // around it in the crudest possible manner
1825 char* p
= const_cast<char*>(wxStrchr(retloc
, ' '));
1830 #elif defined(__WIN32__)
1831 const char *retloc
= "C";
1832 if ( language
!= wxLANGUAGE_DEFAULT
)
1834 if ( info
->WinLang
== 0 )
1836 wxLogWarning(wxS("Locale '%s' not supported by OS."), name
.c_str());
1837 // retloc already set to "C"
1839 else // language supported by Windows
1841 // Windows CE doesn't have SetThreadLocale() and there doesn't seem
1842 // to be any equivalent
1844 const wxUint32 lcid
= info
->GetLCID();
1846 // change locale used by Windows functions
1847 ::SetThreadLocale(lcid
);
1850 // and also call setlocale() to change locale used by the CRT
1851 locale
= info
->GetLocaleName();
1852 if ( locale
.empty() )
1856 else // have a valid locale
1858 retloc
= wxSetlocale(LC_ALL
, locale
);
1862 else // language == wxLANGUAGE_DEFAULT
1864 retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
1867 #if wxUSE_UNICODE && (defined(__VISUALC__) || defined(__MINGW32__))
1868 // VC++ setlocale() (also used by Mingw) can't set locale to languages that
1869 // can only be written using Unicode, therefore wxSetlocale() call fails
1870 // for such languages but we don't want to report it as an error -- so that
1871 // at least message catalogs can be used.
1874 if ( wxGetANSICodePageForLocale(LOCALE_USER_DEFAULT
).empty() )
1876 // we set the locale to a Unicode-only language, don't treat the
1877 // inability of CRT to use it as an error
1881 #endif // CRT not handling Unicode-only languages
1885 #elif defined(__WXMAC__)
1886 if (lang
== wxLANGUAGE_DEFAULT
)
1887 locale
= wxEmptyString
;
1889 locale
= info
->CanonicalName
;
1891 const char *retloc
= wxSetlocale(LC_ALL
, locale
);
1895 // Some C libraries don't like xx_YY form and require xx only
1896 retloc
= wxSetlocale(LC_ALL
, locale
.Mid(0,2));
1901 #define WX_NO_LOCALE_SUPPORT
1904 #ifndef WX_NO_LOCALE_SUPPORT
1907 wxLogWarning(_("Cannot set locale to language \"%s\"."), name
.c_str());
1909 // continue nevertheless and try to load at least the translations for
1913 if ( !Init(name
, canonical
, retloc
,
1914 (flags
& wxLOCALE_LOAD_DEFAULT
) != 0,
1915 (flags
& wxLOCALE_CONV_ENCODING
) != 0) )
1920 if (IsOk()) // setlocale() succeeded
1924 #endif // !WX_NO_LOCALE_SUPPORT
1929 void wxLocale::AddCatalogLookupPathPrefix(const wxString
& prefix
)
1931 if ( gs_searchPrefixes
.Index(prefix
) == wxNOT_FOUND
)
1933 gs_searchPrefixes
.Add(prefix
);
1935 //else: already have it
1938 /*static*/ int wxLocale::GetSystemLanguage()
1940 CreateLanguagesDB();
1942 // init i to avoid compiler warning
1944 count
= ms_languagesDB
->GetCount();
1946 #if defined(__UNIX__)
1947 // first get the string identifying the language from the environment
1950 wxCFRef
<CFLocaleRef
> userLocaleRef(CFLocaleCopyCurrent());
1952 // because the locale identifier (kCFLocaleIdentifier) is formatted a little bit differently, eg
1953 // az_Cyrl_AZ@calendar=buddhist;currency=JPY we just recreate the base info as expected by wx here
1955 wxCFStringRef
str(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleLanguageCode
)));
1956 langFull
= str
.AsString()+"_";
1957 str
.reset(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleCountryCode
)));
1958 langFull
+= str
.AsString();
1960 if (!wxGetEnv(wxS("LC_ALL"), &langFull
) &&
1961 !wxGetEnv(wxS("LC_MESSAGES"), &langFull
) &&
1962 !wxGetEnv(wxS("LANG"), &langFull
))
1964 // no language specified, treat it as English
1965 return wxLANGUAGE_ENGLISH_US
;
1968 if ( langFull
== wxS("C") || langFull
== wxS("POSIX") )
1970 // default C locale is English too
1971 return wxLANGUAGE_ENGLISH_US
;
1975 // the language string has the following form
1977 // lang[_LANG][.encoding][@modifier]
1979 // (see environ(5) in the Open Unix specification)
1981 // where lang is the primary language, LANG is a sublang/territory,
1982 // encoding is the charset to use and modifier "allows the user to select
1983 // a specific instance of localization data within a single category"
1985 // for example, the following strings are valid:
1990 // de_DE.iso88591@euro
1992 // for now we don't use the encoding, although we probably should (doing
1993 // translations of the msg catalogs on the fly as required) (TODO)
1995 // we need the modified for languages like Valencian: ca_ES@valencia
1996 // though, remember it
1998 size_t posModifier
= langFull
.find_first_of(wxS("@"));
1999 if ( posModifier
!= wxString::npos
)
2000 modifier
= langFull
.Mid(posModifier
);
2002 size_t posEndLang
= langFull
.find_first_of(wxS("@."));
2003 if ( posEndLang
!= wxString::npos
)
2005 langFull
.Truncate(posEndLang
);
2008 // in addition to the format above, we also can have full language names
2009 // in LANG env var - for example, SuSE is known to use LANG="german" - so
2012 // do we have just the language (or sublang too)?
2013 bool justLang
= langFull
.length() == LEN_LANG
;
2015 (langFull
.length() == LEN_FULL
&& langFull
[LEN_LANG
] == wxS('_')) )
2017 // 0. Make sure the lang is according to latest ISO 639
2018 // (this is necessary because glibc uses iw and in instead
2019 // of he and id respectively).
2021 // the language itself (second part is the dialect/sublang)
2022 wxString langOrig
= ExtractLang(langFull
);
2025 if ( langOrig
== wxS("iw"))
2027 else if (langOrig
== wxS("in"))
2029 else if (langOrig
== wxS("ji"))
2031 else if (langOrig
== wxS("no_NO"))
2032 lang
= wxS("nb_NO");
2033 else if (langOrig
== wxS("no_NY"))
2034 lang
= wxS("nn_NO");
2035 else if (langOrig
== wxS("no"))
2036 lang
= wxS("nb_NO");
2040 // did we change it?
2041 if ( lang
!= langOrig
)
2043 langFull
= lang
+ ExtractNotLang(langFull
);
2046 // 1. Try to find the language either as is:
2047 // a) With modifier if set
2048 if ( !modifier
.empty() )
2050 wxString langFullWithModifier
= langFull
+ modifier
;
2051 for ( i
= 0; i
< count
; i
++ )
2053 if ( ms_languagesDB
->Item(i
).CanonicalName
== langFullWithModifier
)
2058 // b) Without modifier
2059 if ( modifier
.empty() || i
== count
)
2061 for ( i
= 0; i
< count
; i
++ )
2063 if ( ms_languagesDB
->Item(i
).CanonicalName
== langFull
)
2068 // 2. If langFull is of the form xx_YY, try to find xx:
2069 if ( i
== count
&& !justLang
)
2071 for ( i
= 0; i
< count
; i
++ )
2073 if ( ms_languagesDB
->Item(i
).CanonicalName
== lang
)
2080 // 3. If langFull is of the form xx, try to find any xx_YY record:
2081 if ( i
== count
&& justLang
)
2083 for ( i
= 0; i
< count
; i
++ )
2085 if ( ExtractLang(ms_languagesDB
->Item(i
).CanonicalName
)
2093 else // not standard format
2095 // try to find the name in verbose description
2096 for ( i
= 0; i
< count
; i
++ )
2098 if (ms_languagesDB
->Item(i
).Description
.CmpNoCase(langFull
) == 0)
2104 #elif defined(__WIN32__)
2105 LCID lcid
= GetUserDefaultLCID();
2108 wxUint32 lang
= PRIMARYLANGID(LANGIDFROMLCID(lcid
));
2109 wxUint32 sublang
= SUBLANGID(LANGIDFROMLCID(lcid
));
2111 for ( i
= 0; i
< count
; i
++ )
2113 if (ms_languagesDB
->Item(i
).WinLang
== lang
&&
2114 ms_languagesDB
->Item(i
).WinSublang
== sublang
)
2120 //else: leave wxlang == wxLANGUAGE_UNKNOWN
2121 #endif // Unix/Win32
2125 // we did find a matching entry, use it
2126 return ms_languagesDB
->Item(i
).Language
;
2129 // no info about this language in the database
2130 return wxLANGUAGE_UNKNOWN
;
2133 // ----------------------------------------------------------------------------
2135 // ----------------------------------------------------------------------------
2137 // this is a bit strange as under Windows we get the encoding name using its
2138 // numeric value and under Unix we do it the other way round, but this just
2139 // reflects the way different systems provide the encoding info
2142 wxString
wxLocale::GetSystemEncodingName()
2146 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
2147 // FIXME: what is the error return value for GetACP()?
2148 UINT codepage
= ::GetACP();
2149 encname
.Printf(wxS("windows-%u"), codepage
);
2150 #elif defined(__WXMAC__)
2151 // default is just empty string, this resolves to the default system
2153 #elif defined(__UNIX_LIKE__)
2155 #if defined(HAVE_LANGINFO_H) && defined(CODESET)
2156 // GNU libc provides current character set this way (this conforms
2158 char *oldLocale
= strdup(setlocale(LC_CTYPE
, NULL
));
2159 setlocale(LC_CTYPE
, "");
2160 const char *alang
= nl_langinfo(CODESET
);
2161 setlocale(LC_CTYPE
, oldLocale
);
2166 encname
= wxString::FromAscii( alang
);
2168 else // nl_langinfo() failed
2169 #endif // HAVE_LANGINFO_H
2171 // if we can't get at the character set directly, try to see if it's in
2172 // the environment variables (in most cases this won't work, but I was
2174 char *lang
= getenv( "LC_ALL");
2175 char *dot
= lang
? strchr(lang
, '.') : (char *)NULL
;
2178 lang
= getenv( "LC_CTYPE" );
2180 dot
= strchr(lang
, '.' );
2184 lang
= getenv( "LANG");
2186 dot
= strchr(lang
, '.');
2191 encname
= wxString::FromAscii( dot
+1 );
2194 #endif // Win32/Unix
2200 wxFontEncoding
wxLocale::GetSystemEncoding()
2202 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
2203 UINT codepage
= ::GetACP();
2205 // wxWidgets only knows about CP1250-1257, 874, 932, 936, 949, 950
2206 if ( codepage
>= 1250 && codepage
<= 1257 )
2208 return (wxFontEncoding
)(wxFONTENCODING_CP1250
+ codepage
- 1250);
2211 if ( codepage
== 874 )
2213 return wxFONTENCODING_CP874
;
2216 if ( codepage
== 932 )
2218 return wxFONTENCODING_CP932
;
2221 if ( codepage
== 936 )
2223 return wxFONTENCODING_CP936
;
2226 if ( codepage
== 949 )
2228 return wxFONTENCODING_CP949
;
2231 if ( codepage
== 950 )
2233 return wxFONTENCODING_CP950
;
2235 #elif defined(__WXMAC__)
2236 CFStringEncoding encoding
= 0 ;
2237 encoding
= CFStringGetSystemEncoding() ;
2238 return wxMacGetFontEncFromSystemEnc( encoding
) ;
2239 #elif defined(__UNIX_LIKE__) && wxUSE_FONTMAP
2240 const wxString encname
= GetSystemEncodingName();
2241 if ( !encname
.empty() )
2243 wxFontEncoding enc
= wxFontMapperBase::GetEncodingFromName(encname
);
2245 // on some modern Linux systems (RedHat 8) the default system locale
2246 // is UTF8 -- but it isn't supported by wxGTK1 in ANSI build at all so
2247 // don't even try to use it in this case
2248 #if !wxUSE_UNICODE && \
2249 ((defined(__WXGTK__) && !defined(__WXGTK20__)) || defined(__WXMOTIF__))
2250 if ( enc
== wxFONTENCODING_UTF8
)
2252 // the most similar supported encoding...
2253 enc
= wxFONTENCODING_ISO8859_1
;
2255 #endif // !wxUSE_UNICODE
2257 // GetEncodingFromName() returns wxFONTENCODING_DEFAULT for C locale
2258 // (a.k.a. US-ASCII) which is arguably a bug but keep it like this for
2259 // backwards compatibility and just take care to not return
2260 // wxFONTENCODING_DEFAULT from here as this surely doesn't make sense
2261 if ( enc
== wxFONTENCODING_DEFAULT
)
2263 // we don't have wxFONTENCODING_ASCII, so use the closest one
2264 return wxFONTENCODING_ISO8859_1
;
2267 if ( enc
!= wxFONTENCODING_MAX
)
2271 //else: return wxFONTENCODING_SYSTEM below
2273 #endif // Win32/Unix
2275 return wxFONTENCODING_SYSTEM
;
2279 void wxLocale::AddLanguage(const wxLanguageInfo
& info
)
2281 CreateLanguagesDB();
2282 ms_languagesDB
->Add(info
);
2286 const wxLanguageInfo
*wxLocale::GetLanguageInfo(int lang
)
2288 CreateLanguagesDB();
2290 // calling GetLanguageInfo(wxLANGUAGE_DEFAULT) is a natural thing to do, so
2292 if ( lang
== wxLANGUAGE_DEFAULT
)
2293 lang
= GetSystemLanguage();
2295 const size_t count
= ms_languagesDB
->GetCount();
2296 for ( size_t i
= 0; i
< count
; i
++ )
2298 if ( ms_languagesDB
->Item(i
).Language
== lang
)
2300 // We need to create a temporary here in order to make this work with BCC in final build mode
2301 wxLanguageInfo
*ptr
= &ms_languagesDB
->Item(i
);
2310 wxString
wxLocale::GetLanguageName(int lang
)
2312 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
2314 return wxEmptyString
;
2316 return info
->Description
;
2320 const wxLanguageInfo
*wxLocale::FindLanguageInfo(const wxString
& locale
)
2322 CreateLanguagesDB();
2324 const wxLanguageInfo
*infoRet
= NULL
;
2326 const size_t count
= ms_languagesDB
->GetCount();
2327 for ( size_t i
= 0; i
< count
; i
++ )
2329 const wxLanguageInfo
*info
= &ms_languagesDB
->Item(i
);
2331 if ( wxStricmp(locale
, info
->CanonicalName
) == 0 ||
2332 wxStricmp(locale
, info
->Description
) == 0 )
2334 // exact match, stop searching
2339 if ( wxStricmp(locale
, info
->CanonicalName
.BeforeFirst(wxS('_'))) == 0 )
2341 // a match -- but maybe we'll find an exact one later, so continue
2344 // OTOH, maybe we had already found a language match and in this
2345 // case don't overwrite it because the entry for the default
2346 // country always appears first in ms_languagesDB
2355 wxString
wxLocale::GetSysName() const
2357 return wxSetlocale(LC_ALL
, NULL
);
2361 wxLocale::~wxLocale()
2364 wxMsgCatalog
*pTmpCat
;
2365 while ( m_pMsgCat
!= NULL
) {
2366 pTmpCat
= m_pMsgCat
;
2367 m_pMsgCat
= m_pMsgCat
->m_pNext
;
2371 // restore old locale pointer
2372 wxSetLocale(m_pOldLocale
);
2374 wxSetlocale(LC_ALL
, m_pszOldLocale
);
2375 free((wxChar
*)m_pszOldLocale
); // const_cast
2378 // get the translation of given string in current locale
2379 const wxString
& wxLocale::GetString(const wxString
& origString
,
2380 const wxString
& domain
) const
2382 return GetString(origString
, origString
, size_t(-1), domain
);
2385 const wxString
& wxLocale::GetString(const wxString
& origString
,
2386 const wxString
& origString2
,
2388 const wxString
& domain
) const
2390 if ( origString
.empty() )
2391 return GetUntranslatedString(origString
);
2393 const wxString
*trans
= NULL
;
2394 wxMsgCatalog
*pMsgCat
;
2396 if ( !domain
.empty() )
2398 pMsgCat
= FindCatalog(domain
);
2400 // does the catalog exist?
2401 if ( pMsgCat
!= NULL
)
2402 trans
= pMsgCat
->GetString(origString
, n
);
2406 // search in all domains
2407 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2409 trans
= pMsgCat
->GetString(origString
, n
);
2410 if ( trans
!= NULL
) // take the first found
2415 if ( trans
== NULL
)
2418 if ( !NoTransErr::Suppress() )
2420 NoTransErr noTransErr
;
2422 wxLogTrace(TRACE_I18N
,
2423 wxS("string \"%s\"[%ld] not found in %slocale '%s'."),
2424 origString
, (long)n
,
2425 wxString::Format(wxS("domain '%s' "), domain
).c_str(),
2426 m_strLocale
.c_str());
2428 #endif // __WXDEBUG__
2430 if (n
== size_t(-1))
2431 return GetUntranslatedString(origString
);
2433 return GetUntranslatedString(n
== 1 ? origString
: origString2
);
2439 WX_DECLARE_HASH_SET(wxString
, wxStringHash
, wxStringEqual
,
2440 wxLocaleUntranslatedStrings
);
2443 const wxString
& wxLocale::GetUntranslatedString(const wxString
& str
)
2445 static wxLocaleUntranslatedStrings s_strings
;
2447 wxLocaleUntranslatedStrings::iterator i
= s_strings
.find(str
);
2448 if ( i
== s_strings
.end() )
2449 return *s_strings
.insert(str
).first
;
2454 wxString
wxLocale::GetHeaderValue(const wxString
& header
,
2455 const wxString
& domain
) const
2457 if ( header
.empty() )
2458 return wxEmptyString
;
2460 const wxString
*trans
= NULL
;
2461 wxMsgCatalog
*pMsgCat
;
2463 if ( !domain
.empty() )
2465 pMsgCat
= FindCatalog(domain
);
2467 // does the catalog exist?
2468 if ( pMsgCat
== NULL
)
2469 return wxEmptyString
;
2471 trans
= pMsgCat
->GetString(wxEmptyString
, (size_t)-1);
2475 // search in all domains
2476 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2478 trans
= pMsgCat
->GetString(wxEmptyString
, (size_t)-1);
2479 if ( trans
!= NULL
) // take the first found
2484 if ( !trans
|| trans
->empty() )
2485 return wxEmptyString
;
2487 size_t found
= trans
->find(header
);
2488 if ( found
== wxString::npos
)
2489 return wxEmptyString
;
2491 found
+= header
.length() + 2 /* ': ' */;
2493 // Every header is separated by \n
2495 size_t endLine
= trans
->find(wxS('\n'), found
);
2496 size_t len
= (endLine
== wxString::npos
) ?
2497 wxString::npos
: (endLine
- found
);
2499 return trans
->substr(found
, len
);
2503 // find catalog by name in a linked list, return NULL if !found
2504 wxMsgCatalog
*wxLocale::FindCatalog(const wxString
& domain
) const
2506 // linear search in the linked list
2507 wxMsgCatalog
*pMsgCat
;
2508 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2510 if ( pMsgCat
->GetName() == domain
)
2517 // check if the given locale is provided by OS and C run time
2519 bool wxLocale::IsAvailable(int lang
)
2521 const wxLanguageInfo
*info
= wxLocale::GetLanguageInfo(lang
);
2522 wxCHECK_MSG( info
, false, wxS("invalid language") );
2524 #if defined(__WIN32__)
2525 if ( !info
->WinLang
)
2528 if ( !::IsValidLocale(info
->GetLCID(), LCID_INSTALLED
) )
2531 #elif defined(__UNIX__)
2533 // Test if setting the locale works, then set it back.
2534 const char *oldLocale
= wxSetlocale(LC_ALL
, "");
2535 const char *tmp
= wxSetlocaleTryUTF8(LC_ALL
, info
->CanonicalName
);
2538 // Some C libraries don't like xx_YY form and require xx only
2539 tmp
= wxSetlocaleTryUTF8(LC_ALL
, info
->CanonicalName
.Left(2));
2543 // restore the original locale
2544 wxSetlocale(LC_ALL
, oldLocale
);
2550 // check if the given catalog is loaded
2551 bool wxLocale::IsLoaded(const wxString
& szDomain
) const
2553 return FindCatalog(szDomain
) != NULL
;
2556 // add a catalog to our linked list
2557 bool wxLocale::AddCatalog(const wxString
& szDomain
)
2559 return AddCatalog(szDomain
, wxLANGUAGE_ENGLISH_US
, wxEmptyString
);
2562 // add a catalog to our linked list
2563 bool wxLocale::AddCatalog(const wxString
& szDomain
,
2564 wxLanguage msgIdLanguage
,
2565 const wxString
& msgIdCharset
)
2568 wxMsgCatalog
*pMsgCat
= new wxMsgCatalog
;
2570 if ( pMsgCat
->Load(m_strShort
, szDomain
, msgIdCharset
, m_bConvertEncoding
) ) {
2571 // add it to the head of the list so that in GetString it will
2572 // be searched before the catalogs added earlier
2573 pMsgCat
->m_pNext
= m_pMsgCat
;
2574 m_pMsgCat
= pMsgCat
;
2579 // don't add it because it couldn't be loaded anyway
2582 // It is OK to not load catalog if the msgid language and m_language match,
2583 // in which case we can directly display the texts embedded in program's
2585 if (m_language
== msgIdLanguage
)
2588 // If there's no exact match, we may still get partial match where the
2589 // (basic) language is same, but the country differs. For example, it's
2590 // permitted to use en_US strings from sources even if m_language is en_GB:
2591 const wxLanguageInfo
*msgIdLangInfo
= GetLanguageInfo(msgIdLanguage
);
2592 if ( msgIdLangInfo
&&
2593 msgIdLangInfo
->CanonicalName
.Mid(0, 2) == m_strShort
.Mid(0, 2) )
2602 // ----------------------------------------------------------------------------
2603 // accessors for locale-dependent data
2604 // ----------------------------------------------------------------------------
2606 #if defined(__WXMSW__)
2609 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory
WXUNUSED(cat
))
2611 wxUint32 lcid
= LOCALE_USER_DEFAULT
;
2615 const wxLanguageInfo
*info
= GetLanguageInfo(wxGetLocale()->GetLanguage());
2617 lcid
= info
->GetLCID();
2623 buffer
[0] = wxS('\0');
2626 case wxLOCALE_DECIMAL_POINT
:
2627 count
= ::GetLocaleInfo(lcid
, LOCALE_SDECIMAL
, buffer
, 256);
2634 case wxSYS_LIST_SEPARATOR
:
2635 count
= ::GetLocaleInfo(lcid
, LOCALE_SLIST
, buffer
, 256);
2641 case wxSYS_LEADING_ZERO
: // 0 means no leading zero, 1 means leading zero
2642 count
= ::GetLocaleInfo(lcid
, LOCALE_ILZERO
, buffer
, 256);
2650 wxFAIL_MSG(wxS("Unknown System String !"));
2655 #elif defined(__DARWIN__)
2658 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory
WXUNUSED(cat
))
2660 CFLocaleRef userLocaleRefRaw
;
2661 if ( wxGetLocale() )
2663 userLocaleRefRaw
= CFLocaleCreate
2665 kCFAllocatorDefault
,
2666 wxCFStringRef(wxGetLocale()->GetCanonicalName())
2669 else // no current locale, use the default one
2671 userLocaleRefRaw
= CFLocaleCopyCurrent();
2674 wxCFRef
<CFLocaleRef
> userLocaleRef(userLocaleRefRaw
);
2676 CFStringRef cfstr
= 0;
2679 case wxLOCALE_THOUSANDS_SEP
:
2680 cfstr
= (CFStringRef
) CFLocaleGetValue(userLocaleRef
, kCFLocaleGroupingSeparator
);
2683 case wxLOCALE_DECIMAL_POINT
:
2684 cfstr
= (CFStringRef
) CFLocaleGetValue(userLocaleRef
, kCFLocaleDecimalSeparator
);
2688 wxFAIL_MSG( "Unknown locale info" );
2693 wxCFStringRef
str(wxCFRetain(cfstr
));
2694 return str
.AsString();
2697 #else // !__WXMSW__ && !__DARWIN__
2700 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory cat
)
2702 struct lconv
*locale_info
= localeconv();
2705 case wxLOCALE_CAT_NUMBER
:
2708 case wxLOCALE_THOUSANDS_SEP
:
2709 return wxString(locale_info
->thousands_sep
,
2711 case wxLOCALE_DECIMAL_POINT
:
2712 return wxString(locale_info
->decimal_point
,
2715 return wxEmptyString
;
2717 case wxLOCALE_CAT_MONEY
:
2720 case wxLOCALE_THOUSANDS_SEP
:
2721 return wxString(locale_info
->mon_thousands_sep
,
2723 case wxLOCALE_DECIMAL_POINT
:
2724 return wxString(locale_info
->mon_decimal_point
,
2727 return wxEmptyString
;
2730 return wxEmptyString
;
2736 // ----------------------------------------------------------------------------
2737 // global functions and variables
2738 // ----------------------------------------------------------------------------
2740 // retrieve/change current locale
2741 // ------------------------------
2743 // the current locale object
2744 static wxLocale
*g_pLocale
= NULL
;
2746 wxLocale
*wxGetLocale()
2751 wxLocale
*wxSetLocale(wxLocale
*pLocale
)
2753 wxLocale
*pOld
= g_pLocale
;
2754 g_pLocale
= pLocale
;
2760 // ----------------------------------------------------------------------------
2761 // wxLocale module (for lazy destruction of languagesDB)
2762 // ----------------------------------------------------------------------------
2764 class wxLocaleModule
: public wxModule
2766 DECLARE_DYNAMIC_CLASS(wxLocaleModule
)
2769 bool OnInit() { return true; }
2770 void OnExit() { wxLocale::DestroyLanguagesDB(); }
2773 IMPLEMENT_DYNAMIC_CLASS(wxLocaleModule
, wxModule
)
2777 // ----------------------------------------------------------------------------
2778 // default languages table & initialization
2779 // ----------------------------------------------------------------------------
2783 // --- --- --- generated code begins here --- --- ---
2785 // This table is generated by misc/languages/genlang.py
2786 // When making changes, please put them into misc/languages/langtabl.txt
2788 #if !defined(__WIN32__) || defined(__WXMICROWIN__)
2790 #define SETWINLANG(info,lang,sublang)
2794 #define SETWINLANG(info,lang,sublang) \
2795 info.WinLang = lang, info.WinSublang = sublang;
2797 #ifndef LANG_AFRIKAANS
2798 #define LANG_AFRIKAANS (0)
2800 #ifndef LANG_ALBANIAN
2801 #define LANG_ALBANIAN (0)
2804 #define LANG_ARABIC (0)
2806 #ifndef LANG_ARMENIAN
2807 #define LANG_ARMENIAN (0)
2809 #ifndef LANG_ASSAMESE
2810 #define LANG_ASSAMESE (0)
2813 #define LANG_AZERI (0)
2816 #define LANG_BASQUE (0)
2818 #ifndef LANG_BELARUSIAN
2819 #define LANG_BELARUSIAN (0)
2821 #ifndef LANG_BENGALI
2822 #define LANG_BENGALI (0)
2824 #ifndef LANG_BULGARIAN
2825 #define LANG_BULGARIAN (0)
2827 #ifndef LANG_CATALAN
2828 #define LANG_CATALAN (0)
2830 #ifndef LANG_CHINESE
2831 #define LANG_CHINESE (0)
2833 #ifndef LANG_CROATIAN
2834 #define LANG_CROATIAN (0)
2837 #define LANG_CZECH (0)
2840 #define LANG_DANISH (0)
2843 #define LANG_DUTCH (0)
2845 #ifndef LANG_ENGLISH
2846 #define LANG_ENGLISH (0)
2848 #ifndef LANG_ESTONIAN
2849 #define LANG_ESTONIAN (0)
2851 #ifndef LANG_FAEROESE
2852 #define LANG_FAEROESE (0)
2855 #define LANG_FARSI (0)
2857 #ifndef LANG_FINNISH
2858 #define LANG_FINNISH (0)
2861 #define LANG_FRENCH (0)
2863 #ifndef LANG_GEORGIAN
2864 #define LANG_GEORGIAN (0)
2867 #define LANG_GERMAN (0)
2870 #define LANG_GREEK (0)
2872 #ifndef LANG_GUJARATI
2873 #define LANG_GUJARATI (0)
2876 #define LANG_HEBREW (0)
2879 #define LANG_HINDI (0)
2881 #ifndef LANG_HUNGARIAN
2882 #define LANG_HUNGARIAN (0)
2884 #ifndef LANG_ICELANDIC
2885 #define LANG_ICELANDIC (0)
2887 #ifndef LANG_INDONESIAN
2888 #define LANG_INDONESIAN (0)
2890 #ifndef LANG_ITALIAN
2891 #define LANG_ITALIAN (0)
2893 #ifndef LANG_JAPANESE
2894 #define LANG_JAPANESE (0)
2896 #ifndef LANG_KANNADA
2897 #define LANG_KANNADA (0)
2899 #ifndef LANG_KASHMIRI
2900 #define LANG_KASHMIRI (0)
2903 #define LANG_KAZAK (0)
2905 #ifndef LANG_KONKANI
2906 #define LANG_KONKANI (0)
2909 #define LANG_KOREAN (0)
2911 #ifndef LANG_LATVIAN
2912 #define LANG_LATVIAN (0)
2914 #ifndef LANG_LITHUANIAN
2915 #define LANG_LITHUANIAN (0)
2917 #ifndef LANG_MACEDONIAN
2918 #define LANG_MACEDONIAN (0)
2921 #define LANG_MALAY (0)
2923 #ifndef LANG_MALAYALAM
2924 #define LANG_MALAYALAM (0)
2926 #ifndef LANG_MANIPURI
2927 #define LANG_MANIPURI (0)
2929 #ifndef LANG_MARATHI
2930 #define LANG_MARATHI (0)
2933 #define LANG_NEPALI (0)
2935 #ifndef LANG_NORWEGIAN
2936 #define LANG_NORWEGIAN (0)
2939 #define LANG_ORIYA (0)
2942 #define LANG_POLISH (0)
2944 #ifndef LANG_PORTUGUESE
2945 #define LANG_PORTUGUESE (0)
2947 #ifndef LANG_PUNJABI
2948 #define LANG_PUNJABI (0)
2950 #ifndef LANG_ROMANIAN
2951 #define LANG_ROMANIAN (0)
2953 #ifndef LANG_RUSSIAN
2954 #define LANG_RUSSIAN (0)
2956 #ifndef LANG_SANSKRIT
2957 #define LANG_SANSKRIT (0)
2959 #ifndef LANG_SERBIAN
2960 #define LANG_SERBIAN (0)
2963 #define LANG_SINDHI (0)
2966 #define LANG_SLOVAK (0)
2968 #ifndef LANG_SLOVENIAN
2969 #define LANG_SLOVENIAN (0)
2971 #ifndef LANG_SPANISH
2972 #define LANG_SPANISH (0)
2974 #ifndef LANG_SWAHILI
2975 #define LANG_SWAHILI (0)
2977 #ifndef LANG_SWEDISH
2978 #define LANG_SWEDISH (0)
2981 #define LANG_TAMIL (0)
2984 #define LANG_TATAR (0)
2987 #define LANG_TELUGU (0)
2990 #define LANG_THAI (0)
2992 #ifndef LANG_TURKISH
2993 #define LANG_TURKISH (0)
2995 #ifndef LANG_UKRAINIAN
2996 #define LANG_UKRAINIAN (0)
2999 #define LANG_URDU (0)
3002 #define LANG_UZBEK (0)
3004 #ifndef LANG_VIETNAMESE
3005 #define LANG_VIETNAMESE (0)
3007 #ifndef SUBLANG_ARABIC_ALGERIA
3008 #define SUBLANG_ARABIC_ALGERIA SUBLANG_DEFAULT
3010 #ifndef SUBLANG_ARABIC_BAHRAIN
3011 #define SUBLANG_ARABIC_BAHRAIN SUBLANG_DEFAULT
3013 #ifndef SUBLANG_ARABIC_EGYPT
3014 #define SUBLANG_ARABIC_EGYPT SUBLANG_DEFAULT
3016 #ifndef SUBLANG_ARABIC_IRAQ
3017 #define SUBLANG_ARABIC_IRAQ SUBLANG_DEFAULT
3019 #ifndef SUBLANG_ARABIC_JORDAN
3020 #define SUBLANG_ARABIC_JORDAN SUBLANG_DEFAULT
3022 #ifndef SUBLANG_ARABIC_KUWAIT
3023 #define SUBLANG_ARABIC_KUWAIT SUBLANG_DEFAULT
3025 #ifndef SUBLANG_ARABIC_LEBANON
3026 #define SUBLANG_ARABIC_LEBANON SUBLANG_DEFAULT
3028 #ifndef SUBLANG_ARABIC_LIBYA
3029 #define SUBLANG_ARABIC_LIBYA SUBLANG_DEFAULT
3031 #ifndef SUBLANG_ARABIC_MOROCCO
3032 #define SUBLANG_ARABIC_MOROCCO SUBLANG_DEFAULT
3034 #ifndef SUBLANG_ARABIC_OMAN
3035 #define SUBLANG_ARABIC_OMAN SUBLANG_DEFAULT
3037 #ifndef SUBLANG_ARABIC_QATAR
3038 #define SUBLANG_ARABIC_QATAR SUBLANG_DEFAULT
3040 #ifndef SUBLANG_ARABIC_SAUDI_ARABIA
3041 #define SUBLANG_ARABIC_SAUDI_ARABIA SUBLANG_DEFAULT
3043 #ifndef SUBLANG_ARABIC_SYRIA
3044 #define SUBLANG_ARABIC_SYRIA SUBLANG_DEFAULT
3046 #ifndef SUBLANG_ARABIC_TUNISIA
3047 #define SUBLANG_ARABIC_TUNISIA SUBLANG_DEFAULT
3049 #ifndef SUBLANG_ARABIC_UAE
3050 #define SUBLANG_ARABIC_UAE SUBLANG_DEFAULT
3052 #ifndef SUBLANG_ARABIC_YEMEN
3053 #define SUBLANG_ARABIC_YEMEN SUBLANG_DEFAULT
3055 #ifndef SUBLANG_AZERI_CYRILLIC
3056 #define SUBLANG_AZERI_CYRILLIC SUBLANG_DEFAULT
3058 #ifndef SUBLANG_AZERI_LATIN
3059 #define SUBLANG_AZERI_LATIN SUBLANG_DEFAULT
3061 #ifndef SUBLANG_CHINESE_SIMPLIFIED
3062 #define SUBLANG_CHINESE_SIMPLIFIED SUBLANG_DEFAULT
3064 #ifndef SUBLANG_CHINESE_TRADITIONAL
3065 #define SUBLANG_CHINESE_TRADITIONAL SUBLANG_DEFAULT
3067 #ifndef SUBLANG_CHINESE_HONGKONG
3068 #define SUBLANG_CHINESE_HONGKONG SUBLANG_DEFAULT
3070 #ifndef SUBLANG_CHINESE_MACAU
3071 #define SUBLANG_CHINESE_MACAU SUBLANG_DEFAULT
3073 #ifndef SUBLANG_CHINESE_SINGAPORE
3074 #define SUBLANG_CHINESE_SINGAPORE SUBLANG_DEFAULT
3076 #ifndef SUBLANG_DUTCH
3077 #define SUBLANG_DUTCH SUBLANG_DEFAULT
3079 #ifndef SUBLANG_DUTCH_BELGIAN
3080 #define SUBLANG_DUTCH_BELGIAN SUBLANG_DEFAULT
3082 #ifndef SUBLANG_ENGLISH_UK
3083 #define SUBLANG_ENGLISH_UK SUBLANG_DEFAULT
3085 #ifndef SUBLANG_ENGLISH_US
3086 #define SUBLANG_ENGLISH_US SUBLANG_DEFAULT
3088 #ifndef SUBLANG_ENGLISH_AUS
3089 #define SUBLANG_ENGLISH_AUS SUBLANG_DEFAULT
3091 #ifndef SUBLANG_ENGLISH_BELIZE
3092 #define SUBLANG_ENGLISH_BELIZE SUBLANG_DEFAULT
3094 #ifndef SUBLANG_ENGLISH_CAN
3095 #define SUBLANG_ENGLISH_CAN SUBLANG_DEFAULT
3097 #ifndef SUBLANG_ENGLISH_CARIBBEAN
3098 #define SUBLANG_ENGLISH_CARIBBEAN SUBLANG_DEFAULT
3100 #ifndef SUBLANG_ENGLISH_EIRE
3101 #define SUBLANG_ENGLISH_EIRE SUBLANG_DEFAULT
3103 #ifndef SUBLANG_ENGLISH_JAMAICA
3104 #define SUBLANG_ENGLISH_JAMAICA SUBLANG_DEFAULT
3106 #ifndef SUBLANG_ENGLISH_NZ
3107 #define SUBLANG_ENGLISH_NZ SUBLANG_DEFAULT
3109 #ifndef SUBLANG_ENGLISH_PHILIPPINES
3110 #define SUBLANG_ENGLISH_PHILIPPINES SUBLANG_DEFAULT
3112 #ifndef SUBLANG_ENGLISH_SOUTH_AFRICA
3113 #define SUBLANG_ENGLISH_SOUTH_AFRICA SUBLANG_DEFAULT
3115 #ifndef SUBLANG_ENGLISH_TRINIDAD
3116 #define SUBLANG_ENGLISH_TRINIDAD SUBLANG_DEFAULT
3118 #ifndef SUBLANG_ENGLISH_ZIMBABWE
3119 #define SUBLANG_ENGLISH_ZIMBABWE SUBLANG_DEFAULT
3121 #ifndef SUBLANG_FRENCH
3122 #define SUBLANG_FRENCH SUBLANG_DEFAULT
3124 #ifndef SUBLANG_FRENCH_BELGIAN
3125 #define SUBLANG_FRENCH_BELGIAN SUBLANG_DEFAULT
3127 #ifndef SUBLANG_FRENCH_CANADIAN
3128 #define SUBLANG_FRENCH_CANADIAN SUBLANG_DEFAULT
3130 #ifndef SUBLANG_FRENCH_LUXEMBOURG
3131 #define SUBLANG_FRENCH_LUXEMBOURG SUBLANG_DEFAULT
3133 #ifndef SUBLANG_FRENCH_MONACO
3134 #define SUBLANG_FRENCH_MONACO SUBLANG_DEFAULT
3136 #ifndef SUBLANG_FRENCH_SWISS
3137 #define SUBLANG_FRENCH_SWISS SUBLANG_DEFAULT
3139 #ifndef SUBLANG_GERMAN
3140 #define SUBLANG_GERMAN SUBLANG_DEFAULT
3142 #ifndef SUBLANG_GERMAN_AUSTRIAN
3143 #define SUBLANG_GERMAN_AUSTRIAN SUBLANG_DEFAULT
3145 #ifndef SUBLANG_GERMAN_LIECHTENSTEIN
3146 #define SUBLANG_GERMAN_LIECHTENSTEIN SUBLANG_DEFAULT
3148 #ifndef SUBLANG_GERMAN_LUXEMBOURG
3149 #define SUBLANG_GERMAN_LUXEMBOURG SUBLANG_DEFAULT
3151 #ifndef SUBLANG_GERMAN_SWISS
3152 #define SUBLANG_GERMAN_SWISS SUBLANG_DEFAULT
3154 #ifndef SUBLANG_ITALIAN
3155 #define SUBLANG_ITALIAN SUBLANG_DEFAULT
3157 #ifndef SUBLANG_ITALIAN_SWISS
3158 #define SUBLANG_ITALIAN_SWISS SUBLANG_DEFAULT
3160 #ifndef SUBLANG_KASHMIRI_INDIA
3161 #define SUBLANG_KASHMIRI_INDIA SUBLANG_DEFAULT
3163 #ifndef SUBLANG_KOREAN
3164 #define SUBLANG_KOREAN SUBLANG_DEFAULT
3166 #ifndef SUBLANG_LITHUANIAN
3167 #define SUBLANG_LITHUANIAN SUBLANG_DEFAULT
3169 #ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM
3170 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM SUBLANG_DEFAULT
3172 #ifndef SUBLANG_MALAY_MALAYSIA
3173 #define SUBLANG_MALAY_MALAYSIA SUBLANG_DEFAULT
3175 #ifndef SUBLANG_NEPALI_INDIA
3176 #define SUBLANG_NEPALI_INDIA SUBLANG_DEFAULT
3178 #ifndef SUBLANG_NORWEGIAN_BOKMAL
3179 #define SUBLANG_NORWEGIAN_BOKMAL SUBLANG_DEFAULT
3181 #ifndef SUBLANG_NORWEGIAN_NYNORSK
3182 #define SUBLANG_NORWEGIAN_NYNORSK SUBLANG_DEFAULT
3184 #ifndef SUBLANG_PORTUGUESE
3185 #define SUBLANG_PORTUGUESE SUBLANG_DEFAULT
3187 #ifndef SUBLANG_PORTUGUESE_BRAZILIAN
3188 #define SUBLANG_PORTUGUESE_BRAZILIAN SUBLANG_DEFAULT
3190 #ifndef SUBLANG_SERBIAN_CYRILLIC
3191 #define SUBLANG_SERBIAN_CYRILLIC SUBLANG_DEFAULT
3193 #ifndef SUBLANG_SERBIAN_LATIN
3194 #define SUBLANG_SERBIAN_LATIN SUBLANG_DEFAULT
3196 #ifndef SUBLANG_SPANISH
3197 #define SUBLANG_SPANISH SUBLANG_DEFAULT
3199 #ifndef SUBLANG_SPANISH_ARGENTINA
3200 #define SUBLANG_SPANISH_ARGENTINA SUBLANG_DEFAULT
3202 #ifndef SUBLANG_SPANISH_BOLIVIA
3203 #define SUBLANG_SPANISH_BOLIVIA SUBLANG_DEFAULT
3205 #ifndef SUBLANG_SPANISH_CHILE
3206 #define SUBLANG_SPANISH_CHILE SUBLANG_DEFAULT
3208 #ifndef SUBLANG_SPANISH_COLOMBIA
3209 #define SUBLANG_SPANISH_COLOMBIA SUBLANG_DEFAULT
3211 #ifndef SUBLANG_SPANISH_COSTA_RICA
3212 #define SUBLANG_SPANISH_COSTA_RICA SUBLANG_DEFAULT
3214 #ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC
3215 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC SUBLANG_DEFAULT
3217 #ifndef SUBLANG_SPANISH_ECUADOR
3218 #define SUBLANG_SPANISH_ECUADOR SUBLANG_DEFAULT
3220 #ifndef SUBLANG_SPANISH_EL_SALVADOR
3221 #define SUBLANG_SPANISH_EL_SALVADOR SUBLANG_DEFAULT
3223 #ifndef SUBLANG_SPANISH_GUATEMALA
3224 #define SUBLANG_SPANISH_GUATEMALA SUBLANG_DEFAULT
3226 #ifndef SUBLANG_SPANISH_HONDURAS
3227 #define SUBLANG_SPANISH_HONDURAS SUBLANG_DEFAULT
3229 #ifndef SUBLANG_SPANISH_MEXICAN
3230 #define SUBLANG_SPANISH_MEXICAN SUBLANG_DEFAULT
3232 #ifndef SUBLANG_SPANISH_MODERN
3233 #define SUBLANG_SPANISH_MODERN SUBLANG_DEFAULT
3235 #ifndef SUBLANG_SPANISH_NICARAGUA
3236 #define SUBLANG_SPANISH_NICARAGUA SUBLANG_DEFAULT
3238 #ifndef SUBLANG_SPANISH_PANAMA
3239 #define SUBLANG_SPANISH_PANAMA SUBLANG_DEFAULT
3241 #ifndef SUBLANG_SPANISH_PARAGUAY
3242 #define SUBLANG_SPANISH_PARAGUAY SUBLANG_DEFAULT
3244 #ifndef SUBLANG_SPANISH_PERU
3245 #define SUBLANG_SPANISH_PERU SUBLANG_DEFAULT
3247 #ifndef SUBLANG_SPANISH_PUERTO_RICO
3248 #define SUBLANG_SPANISH_PUERTO_RICO SUBLANG_DEFAULT
3250 #ifndef SUBLANG_SPANISH_URUGUAY
3251 #define SUBLANG_SPANISH_URUGUAY SUBLANG_DEFAULT
3253 #ifndef SUBLANG_SPANISH_VENEZUELA
3254 #define SUBLANG_SPANISH_VENEZUELA SUBLANG_DEFAULT
3256 #ifndef SUBLANG_SWEDISH
3257 #define SUBLANG_SWEDISH SUBLANG_DEFAULT
3259 #ifndef SUBLANG_SWEDISH_FINLAND
3260 #define SUBLANG_SWEDISH_FINLAND SUBLANG_DEFAULT
3262 #ifndef SUBLANG_URDU_INDIA
3263 #define SUBLANG_URDU_INDIA SUBLANG_DEFAULT
3265 #ifndef SUBLANG_URDU_PAKISTAN
3266 #define SUBLANG_URDU_PAKISTAN SUBLANG_DEFAULT
3268 #ifndef SUBLANG_UZBEK_CYRILLIC
3269 #define SUBLANG_UZBEK_CYRILLIC SUBLANG_DEFAULT
3271 #ifndef SUBLANG_UZBEK_LATIN
3272 #define SUBLANG_UZBEK_LATIN SUBLANG_DEFAULT
3278 #define LNG(wxlang, canonical, winlang, winsublang, layout, desc) \
3279 info.Language = wxlang; \
3280 info.CanonicalName = wxS(canonical); \
3281 info.LayoutDirection = layout; \
3282 info.Description = wxS(desc); \
3283 SETWINLANG(info, winlang, winsublang) \
3286 void wxLocale::InitLanguagesDB()
3288 wxLanguageInfo info
;
3289 wxStringTokenizer tkn
;
3291 LNG(wxLANGUAGE_ABKHAZIAN
, "ab" , 0 , 0 , wxLayout_LeftToRight
, "Abkhazian")
3292 LNG(wxLANGUAGE_AFAR
, "aa" , 0 , 0 , wxLayout_LeftToRight
, "Afar")
3293 LNG(wxLANGUAGE_AFRIKAANS
, "af_ZA", LANG_AFRIKAANS
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Afrikaans")
3294 LNG(wxLANGUAGE_ALBANIAN
, "sq_AL", LANG_ALBANIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Albanian")
3295 LNG(wxLANGUAGE_AMHARIC
, "am" , 0 , 0 , wxLayout_LeftToRight
, "Amharic")
3296 LNG(wxLANGUAGE_ARABIC
, "ar" , LANG_ARABIC
, SUBLANG_DEFAULT
, wxLayout_RightToLeft
, "Arabic")
3297 LNG(wxLANGUAGE_ARABIC_ALGERIA
, "ar_DZ", LANG_ARABIC
, SUBLANG_ARABIC_ALGERIA
, wxLayout_RightToLeft
, "Arabic (Algeria)")
3298 LNG(wxLANGUAGE_ARABIC_BAHRAIN
, "ar_BH", LANG_ARABIC
, SUBLANG_ARABIC_BAHRAIN
, wxLayout_RightToLeft
, "Arabic (Bahrain)")
3299 LNG(wxLANGUAGE_ARABIC_EGYPT
, "ar_EG", LANG_ARABIC
, SUBLANG_ARABIC_EGYPT
, wxLayout_RightToLeft
, "Arabic (Egypt)")
3300 LNG(wxLANGUAGE_ARABIC_IRAQ
, "ar_IQ", LANG_ARABIC
, SUBLANG_ARABIC_IRAQ
, wxLayout_RightToLeft
, "Arabic (Iraq)")
3301 LNG(wxLANGUAGE_ARABIC_JORDAN
, "ar_JO", LANG_ARABIC
, SUBLANG_ARABIC_JORDAN
, wxLayout_RightToLeft
, "Arabic (Jordan)")
3302 LNG(wxLANGUAGE_ARABIC_KUWAIT
, "ar_KW", LANG_ARABIC
, SUBLANG_ARABIC_KUWAIT
, wxLayout_RightToLeft
, "Arabic (Kuwait)")
3303 LNG(wxLANGUAGE_ARABIC_LEBANON
, "ar_LB", LANG_ARABIC
, SUBLANG_ARABIC_LEBANON
, wxLayout_RightToLeft
, "Arabic (Lebanon)")
3304 LNG(wxLANGUAGE_ARABIC_LIBYA
, "ar_LY", LANG_ARABIC
, SUBLANG_ARABIC_LIBYA
, wxLayout_RightToLeft
, "Arabic (Libya)")
3305 LNG(wxLANGUAGE_ARABIC_MOROCCO
, "ar_MA", LANG_ARABIC
, SUBLANG_ARABIC_MOROCCO
, wxLayout_RightToLeft
, "Arabic (Morocco)")
3306 LNG(wxLANGUAGE_ARABIC_OMAN
, "ar_OM", LANG_ARABIC
, SUBLANG_ARABIC_OMAN
, wxLayout_RightToLeft
, "Arabic (Oman)")
3307 LNG(wxLANGUAGE_ARABIC_QATAR
, "ar_QA", LANG_ARABIC
, SUBLANG_ARABIC_QATAR
, wxLayout_RightToLeft
, "Arabic (Qatar)")
3308 LNG(wxLANGUAGE_ARABIC_SAUDI_ARABIA
, "ar_SA", LANG_ARABIC
, SUBLANG_ARABIC_SAUDI_ARABIA
, wxLayout_RightToLeft
, "Arabic (Saudi Arabia)")
3309 LNG(wxLANGUAGE_ARABIC_SUDAN
, "ar_SD", 0 , 0 , wxLayout_RightToLeft
, "Arabic (Sudan)")
3310 LNG(wxLANGUAGE_ARABIC_SYRIA
, "ar_SY", LANG_ARABIC
, SUBLANG_ARABIC_SYRIA
, wxLayout_RightToLeft
, "Arabic (Syria)")
3311 LNG(wxLANGUAGE_ARABIC_TUNISIA
, "ar_TN", LANG_ARABIC
, SUBLANG_ARABIC_TUNISIA
, wxLayout_RightToLeft
, "Arabic (Tunisia)")
3312 LNG(wxLANGUAGE_ARABIC_UAE
, "ar_AE", LANG_ARABIC
, SUBLANG_ARABIC_UAE
, wxLayout_RightToLeft
, "Arabic (Uae)")
3313 LNG(wxLANGUAGE_ARABIC_YEMEN
, "ar_YE", LANG_ARABIC
, SUBLANG_ARABIC_YEMEN
, wxLayout_RightToLeft
, "Arabic (Yemen)")
3314 LNG(wxLANGUAGE_ARMENIAN
, "hy" , LANG_ARMENIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Armenian")
3315 LNG(wxLANGUAGE_ASSAMESE
, "as" , LANG_ASSAMESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Assamese")
3316 LNG(wxLANGUAGE_AYMARA
, "ay" , 0 , 0 , wxLayout_LeftToRight
, "Aymara")
3317 LNG(wxLANGUAGE_AZERI
, "az" , LANG_AZERI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Azeri")
3318 LNG(wxLANGUAGE_AZERI_CYRILLIC
, "az" , LANG_AZERI
, SUBLANG_AZERI_CYRILLIC
, wxLayout_LeftToRight
, "Azeri (Cyrillic)")
3319 LNG(wxLANGUAGE_AZERI_LATIN
, "az" , LANG_AZERI
, SUBLANG_AZERI_LATIN
, wxLayout_LeftToRight
, "Azeri (Latin)")
3320 LNG(wxLANGUAGE_BASHKIR
, "ba" , 0 , 0 , wxLayout_LeftToRight
, "Bashkir")
3321 LNG(wxLANGUAGE_BASQUE
, "eu_ES", LANG_BASQUE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Basque")
3322 LNG(wxLANGUAGE_BELARUSIAN
, "be_BY", LANG_BELARUSIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Belarusian")
3323 LNG(wxLANGUAGE_BENGALI
, "bn" , LANG_BENGALI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Bengali")
3324 LNG(wxLANGUAGE_BHUTANI
, "dz" , 0 , 0 , wxLayout_LeftToRight
, "Bhutani")
3325 LNG(wxLANGUAGE_BIHARI
, "bh" , 0 , 0 , wxLayout_LeftToRight
, "Bihari")
3326 LNG(wxLANGUAGE_BISLAMA
, "bi" , 0 , 0 , wxLayout_LeftToRight
, "Bislama")
3327 LNG(wxLANGUAGE_BRETON
, "br" , 0 , 0 , wxLayout_LeftToRight
, "Breton")
3328 LNG(wxLANGUAGE_BULGARIAN
, "bg_BG", LANG_BULGARIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Bulgarian")
3329 LNG(wxLANGUAGE_BURMESE
, "my" , 0 , 0 , wxLayout_LeftToRight
, "Burmese")
3330 LNG(wxLANGUAGE_CAMBODIAN
, "km" , 0 , 0 , wxLayout_LeftToRight
, "Cambodian")
3331 LNG(wxLANGUAGE_CATALAN
, "ca_ES", LANG_CATALAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Catalan")
3332 LNG(wxLANGUAGE_CHINESE
, "zh_TW", LANG_CHINESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Chinese")
3333 LNG(wxLANGUAGE_CHINESE_SIMPLIFIED
, "zh_CN", LANG_CHINESE
, SUBLANG_CHINESE_SIMPLIFIED
, wxLayout_LeftToRight
, "Chinese (Simplified)")
3334 LNG(wxLANGUAGE_CHINESE_TRADITIONAL
, "zh_TW", LANG_CHINESE
, SUBLANG_CHINESE_TRADITIONAL
, wxLayout_LeftToRight
, "Chinese (Traditional)")
3335 LNG(wxLANGUAGE_CHINESE_HONGKONG
, "zh_HK", LANG_CHINESE
, SUBLANG_CHINESE_HONGKONG
, wxLayout_LeftToRight
, "Chinese (Hongkong)")
3336 LNG(wxLANGUAGE_CHINESE_MACAU
, "zh_MO", LANG_CHINESE
, SUBLANG_CHINESE_MACAU
, wxLayout_LeftToRight
, "Chinese (Macau)")
3337 LNG(wxLANGUAGE_CHINESE_SINGAPORE
, "zh_SG", LANG_CHINESE
, SUBLANG_CHINESE_SINGAPORE
, wxLayout_LeftToRight
, "Chinese (Singapore)")
3338 LNG(wxLANGUAGE_CHINESE_TAIWAN
, "zh_TW", LANG_CHINESE
, SUBLANG_CHINESE_TRADITIONAL
, wxLayout_LeftToRight
, "Chinese (Taiwan)")
3339 LNG(wxLANGUAGE_CORSICAN
, "co" , 0 , 0 , wxLayout_LeftToRight
, "Corsican")
3340 LNG(wxLANGUAGE_CROATIAN
, "hr_HR", LANG_CROATIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Croatian")
3341 LNG(wxLANGUAGE_CZECH
, "cs_CZ", LANG_CZECH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Czech")
3342 LNG(wxLANGUAGE_DANISH
, "da_DK", LANG_DANISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Danish")
3343 LNG(wxLANGUAGE_DUTCH
, "nl_NL", LANG_DUTCH
, SUBLANG_DUTCH
, wxLayout_LeftToRight
, "Dutch")
3344 LNG(wxLANGUAGE_DUTCH_BELGIAN
, "nl_BE", LANG_DUTCH
, SUBLANG_DUTCH_BELGIAN
, wxLayout_LeftToRight
, "Dutch (Belgian)")
3345 LNG(wxLANGUAGE_ENGLISH
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, wxLayout_LeftToRight
, "English")
3346 LNG(wxLANGUAGE_ENGLISH_UK
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, wxLayout_LeftToRight
, "English (U.K.)")
3347 LNG(wxLANGUAGE_ENGLISH_US
, "en_US", LANG_ENGLISH
, SUBLANG_ENGLISH_US
, wxLayout_LeftToRight
, "English (U.S.)")
3348 LNG(wxLANGUAGE_ENGLISH_AUSTRALIA
, "en_AU", LANG_ENGLISH
, SUBLANG_ENGLISH_AUS
, wxLayout_LeftToRight
, "English (Australia)")
3349 LNG(wxLANGUAGE_ENGLISH_BELIZE
, "en_BZ", LANG_ENGLISH
, SUBLANG_ENGLISH_BELIZE
, wxLayout_LeftToRight
, "English (Belize)")
3350 LNG(wxLANGUAGE_ENGLISH_BOTSWANA
, "en_BW", 0 , 0 , wxLayout_LeftToRight
, "English (Botswana)")
3351 LNG(wxLANGUAGE_ENGLISH_CANADA
, "en_CA", LANG_ENGLISH
, SUBLANG_ENGLISH_CAN
, wxLayout_LeftToRight
, "English (Canada)")
3352 LNG(wxLANGUAGE_ENGLISH_CARIBBEAN
, "en_CB", LANG_ENGLISH
, SUBLANG_ENGLISH_CARIBBEAN
, wxLayout_LeftToRight
, "English (Caribbean)")
3353 LNG(wxLANGUAGE_ENGLISH_DENMARK
, "en_DK", 0 , 0 , wxLayout_LeftToRight
, "English (Denmark)")
3354 LNG(wxLANGUAGE_ENGLISH_EIRE
, "en_IE", LANG_ENGLISH
, SUBLANG_ENGLISH_EIRE
, wxLayout_LeftToRight
, "English (Eire)")
3355 LNG(wxLANGUAGE_ENGLISH_JAMAICA
, "en_JM", LANG_ENGLISH
, SUBLANG_ENGLISH_JAMAICA
, wxLayout_LeftToRight
, "English (Jamaica)")
3356 LNG(wxLANGUAGE_ENGLISH_NEW_ZEALAND
, "en_NZ", LANG_ENGLISH
, SUBLANG_ENGLISH_NZ
, wxLayout_LeftToRight
, "English (New Zealand)")
3357 LNG(wxLANGUAGE_ENGLISH_PHILIPPINES
, "en_PH", LANG_ENGLISH
, SUBLANG_ENGLISH_PHILIPPINES
, wxLayout_LeftToRight
, "English (Philippines)")
3358 LNG(wxLANGUAGE_ENGLISH_SOUTH_AFRICA
, "en_ZA", LANG_ENGLISH
, SUBLANG_ENGLISH_SOUTH_AFRICA
, wxLayout_LeftToRight
, "English (South Africa)")
3359 LNG(wxLANGUAGE_ENGLISH_TRINIDAD
, "en_TT", LANG_ENGLISH
, SUBLANG_ENGLISH_TRINIDAD
, wxLayout_LeftToRight
, "English (Trinidad)")
3360 LNG(wxLANGUAGE_ENGLISH_ZIMBABWE
, "en_ZW", LANG_ENGLISH
, SUBLANG_ENGLISH_ZIMBABWE
, wxLayout_LeftToRight
, "English (Zimbabwe)")
3361 LNG(wxLANGUAGE_ESPERANTO
, "eo" , 0 , 0 , wxLayout_LeftToRight
, "Esperanto")
3362 LNG(wxLANGUAGE_ESTONIAN
, "et_EE", LANG_ESTONIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Estonian")
3363 LNG(wxLANGUAGE_FAEROESE
, "fo_FO", LANG_FAEROESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Faeroese")
3364 LNG(wxLANGUAGE_FARSI
, "fa_IR", LANG_FARSI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Farsi")
3365 LNG(wxLANGUAGE_FIJI
, "fj" , 0 , 0 , wxLayout_LeftToRight
, "Fiji")
3366 LNG(wxLANGUAGE_FINNISH
, "fi_FI", LANG_FINNISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Finnish")
3367 LNG(wxLANGUAGE_FRENCH
, "fr_FR", LANG_FRENCH
, SUBLANG_FRENCH
, wxLayout_LeftToRight
, "French")
3368 LNG(wxLANGUAGE_FRENCH_BELGIAN
, "fr_BE", LANG_FRENCH
, SUBLANG_FRENCH_BELGIAN
, wxLayout_LeftToRight
, "French (Belgian)")
3369 LNG(wxLANGUAGE_FRENCH_CANADIAN
, "fr_CA", LANG_FRENCH
, SUBLANG_FRENCH_CANADIAN
, wxLayout_LeftToRight
, "French (Canadian)")
3370 LNG(wxLANGUAGE_FRENCH_LUXEMBOURG
, "fr_LU", LANG_FRENCH
, SUBLANG_FRENCH_LUXEMBOURG
, wxLayout_LeftToRight
, "French (Luxembourg)")
3371 LNG(wxLANGUAGE_FRENCH_MONACO
, "fr_MC", LANG_FRENCH
, SUBLANG_FRENCH_MONACO
, wxLayout_LeftToRight
, "French (Monaco)")
3372 LNG(wxLANGUAGE_FRENCH_SWISS
, "fr_CH", LANG_FRENCH
, SUBLANG_FRENCH_SWISS
, wxLayout_LeftToRight
, "French (Swiss)")
3373 LNG(wxLANGUAGE_FRISIAN
, "fy" , 0 , 0 , wxLayout_LeftToRight
, "Frisian")
3374 LNG(wxLANGUAGE_GALICIAN
, "gl_ES", 0 , 0 , wxLayout_LeftToRight
, "Galician")
3375 LNG(wxLANGUAGE_GEORGIAN
, "ka_GE", LANG_GEORGIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Georgian")
3376 LNG(wxLANGUAGE_GERMAN
, "de_DE", LANG_GERMAN
, SUBLANG_GERMAN
, wxLayout_LeftToRight
, "German")
3377 LNG(wxLANGUAGE_GERMAN_AUSTRIAN
, "de_AT", LANG_GERMAN
, SUBLANG_GERMAN_AUSTRIAN
, wxLayout_LeftToRight
, "German (Austrian)")
3378 LNG(wxLANGUAGE_GERMAN_BELGIUM
, "de_BE", 0 , 0 , wxLayout_LeftToRight
, "German (Belgium)")
3379 LNG(wxLANGUAGE_GERMAN_LIECHTENSTEIN
, "de_LI", LANG_GERMAN
, SUBLANG_GERMAN_LIECHTENSTEIN
, wxLayout_LeftToRight
, "German (Liechtenstein)")
3380 LNG(wxLANGUAGE_GERMAN_LUXEMBOURG
, "de_LU", LANG_GERMAN
, SUBLANG_GERMAN_LUXEMBOURG
, wxLayout_LeftToRight
, "German (Luxembourg)")
3381 LNG(wxLANGUAGE_GERMAN_SWISS
, "de_CH", LANG_GERMAN
, SUBLANG_GERMAN_SWISS
, wxLayout_LeftToRight
, "German (Swiss)")
3382 LNG(wxLANGUAGE_GREEK
, "el_GR", LANG_GREEK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Greek")
3383 LNG(wxLANGUAGE_GREENLANDIC
, "kl_GL", 0 , 0 , wxLayout_LeftToRight
, "Greenlandic")
3384 LNG(wxLANGUAGE_GUARANI
, "gn" , 0 , 0 , wxLayout_LeftToRight
, "Guarani")
3385 LNG(wxLANGUAGE_GUJARATI
, "gu" , LANG_GUJARATI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Gujarati")
3386 LNG(wxLANGUAGE_HAUSA
, "ha" , 0 , 0 , wxLayout_LeftToRight
, "Hausa")
3387 LNG(wxLANGUAGE_HEBREW
, "he_IL", LANG_HEBREW
, SUBLANG_DEFAULT
, wxLayout_RightToLeft
, "Hebrew")
3388 LNG(wxLANGUAGE_HINDI
, "hi_IN", LANG_HINDI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Hindi")
3389 LNG(wxLANGUAGE_HUNGARIAN
, "hu_HU", LANG_HUNGARIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Hungarian")
3390 LNG(wxLANGUAGE_ICELANDIC
, "is_IS", LANG_ICELANDIC
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Icelandic")
3391 LNG(wxLANGUAGE_INDONESIAN
, "id_ID", LANG_INDONESIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Indonesian")
3392 LNG(wxLANGUAGE_INTERLINGUA
, "ia" , 0 , 0 , wxLayout_LeftToRight
, "Interlingua")
3393 LNG(wxLANGUAGE_INTERLINGUE
, "ie" , 0 , 0 , wxLayout_LeftToRight
, "Interlingue")
3394 LNG(wxLANGUAGE_INUKTITUT
, "iu" , 0 , 0 , wxLayout_LeftToRight
, "Inuktitut")
3395 LNG(wxLANGUAGE_INUPIAK
, "ik" , 0 , 0 , wxLayout_LeftToRight
, "Inupiak")
3396 LNG(wxLANGUAGE_IRISH
, "ga_IE", 0 , 0 , wxLayout_LeftToRight
, "Irish")
3397 LNG(wxLANGUAGE_ITALIAN
, "it_IT", LANG_ITALIAN
, SUBLANG_ITALIAN
, wxLayout_LeftToRight
, "Italian")
3398 LNG(wxLANGUAGE_ITALIAN_SWISS
, "it_CH", LANG_ITALIAN
, SUBLANG_ITALIAN_SWISS
, wxLayout_LeftToRight
, "Italian (Swiss)")
3399 LNG(wxLANGUAGE_JAPANESE
, "ja_JP", LANG_JAPANESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Japanese")
3400 LNG(wxLANGUAGE_JAVANESE
, "jw" , 0 , 0 , wxLayout_LeftToRight
, "Javanese")
3401 LNG(wxLANGUAGE_KANNADA
, "kn" , LANG_KANNADA
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Kannada")
3402 LNG(wxLANGUAGE_KASHMIRI
, "ks" , LANG_KASHMIRI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Kashmiri")
3403 LNG(wxLANGUAGE_KASHMIRI_INDIA
, "ks_IN", LANG_KASHMIRI
, SUBLANG_KASHMIRI_INDIA
, wxLayout_LeftToRight
, "Kashmiri (India)")
3404 LNG(wxLANGUAGE_KAZAKH
, "kk" , LANG_KAZAK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Kazakh")
3405 LNG(wxLANGUAGE_KERNEWEK
, "kw_GB", 0 , 0 , wxLayout_LeftToRight
, "Kernewek")
3406 LNG(wxLANGUAGE_KINYARWANDA
, "rw" , 0 , 0 , wxLayout_LeftToRight
, "Kinyarwanda")
3407 LNG(wxLANGUAGE_KIRGHIZ
, "ky" , 0 , 0 , wxLayout_LeftToRight
, "Kirghiz")
3408 LNG(wxLANGUAGE_KIRUNDI
, "rn" , 0 , 0 , wxLayout_LeftToRight
, "Kirundi")
3409 LNG(wxLANGUAGE_KONKANI
, "" , LANG_KONKANI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Konkani")
3410 LNG(wxLANGUAGE_KOREAN
, "ko_KR", LANG_KOREAN
, SUBLANG_KOREAN
, wxLayout_LeftToRight
, "Korean")
3411 LNG(wxLANGUAGE_KURDISH
, "ku_TR", 0 , 0 , wxLayout_LeftToRight
, "Kurdish")
3412 LNG(wxLANGUAGE_LAOTHIAN
, "lo" , 0 , 0 , wxLayout_LeftToRight
, "Laothian")
3413 LNG(wxLANGUAGE_LATIN
, "la" , 0 , 0 , wxLayout_LeftToRight
, "Latin")
3414 LNG(wxLANGUAGE_LATVIAN
, "lv_LV", LANG_LATVIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Latvian")
3415 LNG(wxLANGUAGE_LINGALA
, "ln" , 0 , 0 , wxLayout_LeftToRight
, "Lingala")
3416 LNG(wxLANGUAGE_LITHUANIAN
, "lt_LT", LANG_LITHUANIAN
, SUBLANG_LITHUANIAN
, wxLayout_LeftToRight
, "Lithuanian")
3417 LNG(wxLANGUAGE_MACEDONIAN
, "mk_MK", LANG_MACEDONIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Macedonian")
3418 LNG(wxLANGUAGE_MALAGASY
, "mg" , 0 , 0 , wxLayout_LeftToRight
, "Malagasy")
3419 LNG(wxLANGUAGE_MALAY
, "ms_MY", LANG_MALAY
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Malay")
3420 LNG(wxLANGUAGE_MALAYALAM
, "ml" , LANG_MALAYALAM
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Malayalam")
3421 LNG(wxLANGUAGE_MALAY_BRUNEI_DARUSSALAM
, "ms_BN", LANG_MALAY
, SUBLANG_MALAY_BRUNEI_DARUSSALAM
, wxLayout_LeftToRight
, "Malay (Brunei Darussalam)")
3422 LNG(wxLANGUAGE_MALAY_MALAYSIA
, "ms_MY", LANG_MALAY
, SUBLANG_MALAY_MALAYSIA
, wxLayout_LeftToRight
, "Malay (Malaysia)")
3423 LNG(wxLANGUAGE_MALTESE
, "mt_MT", 0 , 0 , wxLayout_LeftToRight
, "Maltese")
3424 LNG(wxLANGUAGE_MANIPURI
, "" , LANG_MANIPURI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Manipuri")
3425 LNG(wxLANGUAGE_MAORI
, "mi" , 0 , 0 , wxLayout_LeftToRight
, "Maori")
3426 LNG(wxLANGUAGE_MARATHI
, "mr_IN", LANG_MARATHI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Marathi")
3427 LNG(wxLANGUAGE_MOLDAVIAN
, "mo" , 0 , 0 , wxLayout_LeftToRight
, "Moldavian")
3428 LNG(wxLANGUAGE_MONGOLIAN
, "mn" , 0 , 0 , wxLayout_LeftToRight
, "Mongolian")
3429 LNG(wxLANGUAGE_NAURU
, "na" , 0 , 0 , wxLayout_LeftToRight
, "Nauru")
3430 LNG(wxLANGUAGE_NEPALI
, "ne_NP", LANG_NEPALI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Nepali")
3431 LNG(wxLANGUAGE_NEPALI_INDIA
, "ne_IN", LANG_NEPALI
, SUBLANG_NEPALI_INDIA
, wxLayout_LeftToRight
, "Nepali (India)")
3432 LNG(wxLANGUAGE_NORWEGIAN_BOKMAL
, "nb_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_BOKMAL
, wxLayout_LeftToRight
, "Norwegian (Bokmal)")
3433 LNG(wxLANGUAGE_NORWEGIAN_NYNORSK
, "nn_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_NYNORSK
, wxLayout_LeftToRight
, "Norwegian (Nynorsk)")
3434 LNG(wxLANGUAGE_OCCITAN
, "oc" , 0 , 0 , wxLayout_LeftToRight
, "Occitan")
3435 LNG(wxLANGUAGE_ORIYA
, "or" , LANG_ORIYA
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Oriya")
3436 LNG(wxLANGUAGE_OROMO
, "om" , 0 , 0 , wxLayout_LeftToRight
, "(Afan) Oromo")
3437 LNG(wxLANGUAGE_PASHTO
, "ps" , 0 , 0 , wxLayout_LeftToRight
, "Pashto, Pushto")
3438 LNG(wxLANGUAGE_POLISH
, "pl_PL", LANG_POLISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Polish")
3439 LNG(wxLANGUAGE_PORTUGUESE
, "pt_PT", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE
, wxLayout_LeftToRight
, "Portuguese")
3440 LNG(wxLANGUAGE_PORTUGUESE_BRAZILIAN
, "pt_BR", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE_BRAZILIAN
, wxLayout_LeftToRight
, "Portuguese (Brazilian)")
3441 LNG(wxLANGUAGE_PUNJABI
, "pa" , LANG_PUNJABI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Punjabi")
3442 LNG(wxLANGUAGE_QUECHUA
, "qu" , 0 , 0 , wxLayout_LeftToRight
, "Quechua")
3443 LNG(wxLANGUAGE_RHAETO_ROMANCE
, "rm" , 0 , 0 , wxLayout_LeftToRight
, "Rhaeto-Romance")
3444 LNG(wxLANGUAGE_ROMANIAN
, "ro_RO", LANG_ROMANIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Romanian")
3445 LNG(wxLANGUAGE_RUSSIAN
, "ru_RU", LANG_RUSSIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Russian")
3446 LNG(wxLANGUAGE_RUSSIAN_UKRAINE
, "ru_UA", 0 , 0 , wxLayout_LeftToRight
, "Russian (Ukraine)")
3447 LNG(wxLANGUAGE_SAMOAN
, "sm" , 0 , 0 , wxLayout_LeftToRight
, "Samoan")
3448 LNG(wxLANGUAGE_SANGHO
, "sg" , 0 , 0 , wxLayout_LeftToRight
, "Sangho")
3449 LNG(wxLANGUAGE_SANSKRIT
, "sa" , LANG_SANSKRIT
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Sanskrit")
3450 LNG(wxLANGUAGE_SCOTS_GAELIC
, "gd" , 0 , 0 , wxLayout_LeftToRight
, "Scots Gaelic")
3451 LNG(wxLANGUAGE_SERBIAN
, "sr_SR", LANG_SERBIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Serbian")
3452 LNG(wxLANGUAGE_SERBIAN_CYRILLIC
, "sr_SR", LANG_SERBIAN
, SUBLANG_SERBIAN_CYRILLIC
, wxLayout_LeftToRight
, "Serbian (Cyrillic)")
3453 LNG(wxLANGUAGE_SERBIAN_LATIN
, "sr_SR@latin", LANG_SERBIAN
, SUBLANG_SERBIAN_LATIN
, wxLayout_LeftToRight
, "Serbian (Latin)")
3454 LNG(wxLANGUAGE_SERBIAN_CYRILLIC
, "sr_YU", LANG_SERBIAN
, SUBLANG_SERBIAN_CYRILLIC
, wxLayout_LeftToRight
, "Serbian (Cyrillic)")
3455 LNG(wxLANGUAGE_SERBIAN_LATIN
, "sr_YU@latin", LANG_SERBIAN
, SUBLANG_SERBIAN_LATIN
, wxLayout_LeftToRight
, "Serbian (Latin)")
3456 LNG(wxLANGUAGE_SERBO_CROATIAN
, "sh" , 0 , 0 , wxLayout_LeftToRight
, "Serbo-Croatian")
3457 LNG(wxLANGUAGE_SESOTHO
, "st" , 0 , 0 , wxLayout_LeftToRight
, "Sesotho")
3458 LNG(wxLANGUAGE_SETSWANA
, "tn" , 0 , 0 , wxLayout_LeftToRight
, "Setswana")
3459 LNG(wxLANGUAGE_SHONA
, "sn" , 0 , 0 , wxLayout_LeftToRight
, "Shona")
3460 LNG(wxLANGUAGE_SINDHI
, "sd" , LANG_SINDHI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Sindhi")
3461 LNG(wxLANGUAGE_SINHALESE
, "si" , 0 , 0 , wxLayout_LeftToRight
, "Sinhalese")
3462 LNG(wxLANGUAGE_SISWATI
, "ss" , 0 , 0 , wxLayout_LeftToRight
, "Siswati")
3463 LNG(wxLANGUAGE_SLOVAK
, "sk_SK", LANG_SLOVAK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Slovak")
3464 LNG(wxLANGUAGE_SLOVENIAN
, "sl_SI", LANG_SLOVENIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Slovenian")
3465 LNG(wxLANGUAGE_SOMALI
, "so" , 0 , 0 , wxLayout_LeftToRight
, "Somali")
3466 LNG(wxLANGUAGE_SPANISH
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH
, wxLayout_LeftToRight
, "Spanish")
3467 LNG(wxLANGUAGE_SPANISH_ARGENTINA
, "es_AR", LANG_SPANISH
, SUBLANG_SPANISH_ARGENTINA
, wxLayout_LeftToRight
, "Spanish (Argentina)")
3468 LNG(wxLANGUAGE_SPANISH_BOLIVIA
, "es_BO", LANG_SPANISH
, SUBLANG_SPANISH_BOLIVIA
, wxLayout_LeftToRight
, "Spanish (Bolivia)")
3469 LNG(wxLANGUAGE_SPANISH_CHILE
, "es_CL", LANG_SPANISH
, SUBLANG_SPANISH_CHILE
, wxLayout_LeftToRight
, "Spanish (Chile)")
3470 LNG(wxLANGUAGE_SPANISH_COLOMBIA
, "es_CO", LANG_SPANISH
, SUBLANG_SPANISH_COLOMBIA
, wxLayout_LeftToRight
, "Spanish (Colombia)")
3471 LNG(wxLANGUAGE_SPANISH_COSTA_RICA
, "es_CR", LANG_SPANISH
, SUBLANG_SPANISH_COSTA_RICA
, wxLayout_LeftToRight
, "Spanish (Costa Rica)")
3472 LNG(wxLANGUAGE_SPANISH_DOMINICAN_REPUBLIC
, "es_DO", LANG_SPANISH
, SUBLANG_SPANISH_DOMINICAN_REPUBLIC
, wxLayout_LeftToRight
, "Spanish (Dominican republic)")
3473 LNG(wxLANGUAGE_SPANISH_ECUADOR
, "es_EC", LANG_SPANISH
, SUBLANG_SPANISH_ECUADOR
, wxLayout_LeftToRight
, "Spanish (Ecuador)")
3474 LNG(wxLANGUAGE_SPANISH_EL_SALVADOR
, "es_SV", LANG_SPANISH
, SUBLANG_SPANISH_EL_SALVADOR
, wxLayout_LeftToRight
, "Spanish (El Salvador)")
3475 LNG(wxLANGUAGE_SPANISH_GUATEMALA
, "es_GT", LANG_SPANISH
, SUBLANG_SPANISH_GUATEMALA
, wxLayout_LeftToRight
, "Spanish (Guatemala)")
3476 LNG(wxLANGUAGE_SPANISH_HONDURAS
, "es_HN", LANG_SPANISH
, SUBLANG_SPANISH_HONDURAS
, wxLayout_LeftToRight
, "Spanish (Honduras)")
3477 LNG(wxLANGUAGE_SPANISH_MEXICAN
, "es_MX", LANG_SPANISH
, SUBLANG_SPANISH_MEXICAN
, wxLayout_LeftToRight
, "Spanish (Mexican)")
3478 LNG(wxLANGUAGE_SPANISH_MODERN
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH_MODERN
, wxLayout_LeftToRight
, "Spanish (Modern)")
3479 LNG(wxLANGUAGE_SPANISH_NICARAGUA
, "es_NI", LANG_SPANISH
, SUBLANG_SPANISH_NICARAGUA
, wxLayout_LeftToRight
, "Spanish (Nicaragua)")
3480 LNG(wxLANGUAGE_SPANISH_PANAMA
, "es_PA", LANG_SPANISH
, SUBLANG_SPANISH_PANAMA
, wxLayout_LeftToRight
, "Spanish (Panama)")
3481 LNG(wxLANGUAGE_SPANISH_PARAGUAY
, "es_PY", LANG_SPANISH
, SUBLANG_SPANISH_PARAGUAY
, wxLayout_LeftToRight
, "Spanish (Paraguay)")
3482 LNG(wxLANGUAGE_SPANISH_PERU
, "es_PE", LANG_SPANISH
, SUBLANG_SPANISH_PERU
, wxLayout_LeftToRight
, "Spanish (Peru)")
3483 LNG(wxLANGUAGE_SPANISH_PUERTO_RICO
, "es_PR", LANG_SPANISH
, SUBLANG_SPANISH_PUERTO_RICO
, wxLayout_LeftToRight
, "Spanish (Puerto Rico)")
3484 LNG(wxLANGUAGE_SPANISH_URUGUAY
, "es_UY", LANG_SPANISH
, SUBLANG_SPANISH_URUGUAY
, wxLayout_LeftToRight
, "Spanish (Uruguay)")
3485 LNG(wxLANGUAGE_SPANISH_US
, "es_US", 0 , 0 , wxLayout_LeftToRight
, "Spanish (U.S.)")
3486 LNG(wxLANGUAGE_SPANISH_VENEZUELA
, "es_VE", LANG_SPANISH
, SUBLANG_SPANISH_VENEZUELA
, wxLayout_LeftToRight
, "Spanish (Venezuela)")
3487 LNG(wxLANGUAGE_SUNDANESE
, "su" , 0 , 0 , wxLayout_LeftToRight
, "Sundanese")
3488 LNG(wxLANGUAGE_SWAHILI
, "sw_KE", LANG_SWAHILI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Swahili")
3489 LNG(wxLANGUAGE_SWEDISH
, "sv_SE", LANG_SWEDISH
, SUBLANG_SWEDISH
, wxLayout_LeftToRight
, "Swedish")
3490 LNG(wxLANGUAGE_SWEDISH_FINLAND
, "sv_FI", LANG_SWEDISH
, SUBLANG_SWEDISH_FINLAND
, wxLayout_LeftToRight
, "Swedish (Finland)")
3491 LNG(wxLANGUAGE_TAGALOG
, "tl_PH", 0 , 0 , wxLayout_LeftToRight
, "Tagalog")
3492 LNG(wxLANGUAGE_TAJIK
, "tg" , 0 , 0 , wxLayout_LeftToRight
, "Tajik")
3493 LNG(wxLANGUAGE_TAMIL
, "ta" , LANG_TAMIL
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Tamil")
3494 LNG(wxLANGUAGE_TATAR
, "tt" , LANG_TATAR
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Tatar")
3495 LNG(wxLANGUAGE_TELUGU
, "te" , LANG_TELUGU
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Telugu")
3496 LNG(wxLANGUAGE_THAI
, "th_TH", LANG_THAI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Thai")
3497 LNG(wxLANGUAGE_TIBETAN
, "bo" , 0 , 0 , wxLayout_LeftToRight
, "Tibetan")
3498 LNG(wxLANGUAGE_TIGRINYA
, "ti" , 0 , 0 , wxLayout_LeftToRight
, "Tigrinya")
3499 LNG(wxLANGUAGE_TONGA
, "to" , 0 , 0 , wxLayout_LeftToRight
, "Tonga")
3500 LNG(wxLANGUAGE_TSONGA
, "ts" , 0 , 0 , wxLayout_LeftToRight
, "Tsonga")
3501 LNG(wxLANGUAGE_TURKISH
, "tr_TR", LANG_TURKISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Turkish")
3502 LNG(wxLANGUAGE_TURKMEN
, "tk" , 0 , 0 , wxLayout_LeftToRight
, "Turkmen")
3503 LNG(wxLANGUAGE_TWI
, "tw" , 0 , 0 , wxLayout_LeftToRight
, "Twi")
3504 LNG(wxLANGUAGE_UIGHUR
, "ug" , 0 , 0 , wxLayout_LeftToRight
, "Uighur")
3505 LNG(wxLANGUAGE_UKRAINIAN
, "uk_UA", LANG_UKRAINIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Ukrainian")
3506 LNG(wxLANGUAGE_URDU
, "ur" , LANG_URDU
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Urdu")
3507 LNG(wxLANGUAGE_URDU_INDIA
, "ur_IN", LANG_URDU
, SUBLANG_URDU_INDIA
, wxLayout_LeftToRight
, "Urdu (India)")
3508 LNG(wxLANGUAGE_URDU_PAKISTAN
, "ur_PK", LANG_URDU
, SUBLANG_URDU_PAKISTAN
, wxLayout_LeftToRight
, "Urdu (Pakistan)")
3509 LNG(wxLANGUAGE_UZBEK
, "uz" , LANG_UZBEK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Uzbek")
3510 LNG(wxLANGUAGE_UZBEK_CYRILLIC
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_CYRILLIC
, wxLayout_LeftToRight
, "Uzbek (Cyrillic)")
3511 LNG(wxLANGUAGE_UZBEK_LATIN
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_LATIN
, wxLayout_LeftToRight
, "Uzbek (Latin)")
3512 LNG(wxLANGUAGE_VALENCIAN
, "ca_ES@valencia", 0 , 0 , wxLayout_LeftToRight
, "Valencian")
3513 LNG(wxLANGUAGE_VIETNAMESE
, "vi_VN", LANG_VIETNAMESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Vietnamese")
3514 LNG(wxLANGUAGE_VOLAPUK
, "vo" , 0 , 0 , wxLayout_LeftToRight
, "Volapuk")
3515 LNG(wxLANGUAGE_WELSH
, "cy" , 0 , 0 , wxLayout_LeftToRight
, "Welsh")
3516 LNG(wxLANGUAGE_WOLOF
, "wo" , 0 , 0 , wxLayout_LeftToRight
, "Wolof")
3517 LNG(wxLANGUAGE_XHOSA
, "xh" , 0 , 0 , wxLayout_LeftToRight
, "Xhosa")
3518 LNG(wxLANGUAGE_YIDDISH
, "yi" , 0 , 0 , wxLayout_LeftToRight
, "Yiddish")
3519 LNG(wxLANGUAGE_YORUBA
, "yo" , 0 , 0 , wxLayout_LeftToRight
, "Yoruba")
3520 LNG(wxLANGUAGE_ZHUANG
, "za" , 0 , 0 , wxLayout_LeftToRight
, "Zhuang")
3521 LNG(wxLANGUAGE_ZULU
, "zu" , 0 , 0 , wxLayout_LeftToRight
, "Zulu")
3525 // --- --- --- generated code ends here --- --- ---
3527 #endif // wxUSE_INTL