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 #if defined(__BORLAND__) && !defined(__WXDEBUG__)
22 // There's a bug in Borland's compiler that breaks wxLocale with -O2,
23 // so make sure that flag is not used for this file:
28 // The following define is needed by Innotek's libc to
29 // make the definition of struct localeconv available.
30 #define __INTERNAL_DEFS
33 // For compilers that support precompilation, includes "wx.h".
34 #include "wx/wxprec.h"
43 #include "wx/dynarray.h"
44 #include "wx/string.h"
49 #include "wx/hashmap.h"
59 #ifdef HAVE_LANGINFO_H
64 #include "wx/msw/private.h"
65 #elif defined(__UNIX_LIKE__)
66 #include "wx/fontmap.h" // for CharsetToEncoding()
70 #include "wx/filename.h"
71 #include "wx/tokenzr.h"
72 #include "wx/module.h"
73 #include "wx/fontmap.h"
74 #include "wx/encconv.h"
75 #include "wx/ptr_scpd.h"
76 #include "wx/apptrait.h"
77 #include "wx/stdpaths.h"
79 #if defined(__WXMAC__)
80 #include "wx/mac/private.h" // includes mac headers
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
87 // this should *not* be wxChar, this type must have exactly 8 bits!
88 typedef wxUint8 size_t8
;
89 typedef wxUint32 size_t32
;
91 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
95 // magic number identifying the .mo format file
96 const size_t32 MSGCATALOG_MAGIC
= 0x950412de;
97 const size_t32 MSGCATALOG_MAGIC_SW
= 0xde120495;
99 // the constants describing the format of lang_LANG locale string
100 static const size_t LEN_LANG
= 2;
101 static const size_t LEN_SUBLANG
= 2;
102 static const size_t LEN_FULL
= LEN_LANG
+ 1 + LEN_SUBLANG
; // 1 for '_'
104 #define TRACE_I18N _T("i18n")
106 // ----------------------------------------------------------------------------
108 // ----------------------------------------------------------------------------
112 // small class to suppress the translation erros until exit from current scope
116 NoTransErr() { ms_suppressCount
++; }
117 ~NoTransErr() { ms_suppressCount
--; }
119 static bool Suppress() { return ms_suppressCount
> 0; }
122 static size_t ms_suppressCount
;
125 size_t NoTransErr::ms_suppressCount
= 0;
136 #endif // Debug/!Debug
138 static wxLocale
*wxSetLocale(wxLocale
*pLocale
);
140 // helper functions of GetSystemLanguage()
143 // get just the language part
144 static inline wxString
ExtractLang(const wxString
& langFull
)
146 return langFull
.Left(LEN_LANG
);
149 // get everything else (including the leading '_')
150 static inline wxString
ExtractNotLang(const wxString
& langFull
)
152 return langFull
.Mid(LEN_LANG
);
158 // ----------------------------------------------------------------------------
159 // Plural forms parser
160 // ----------------------------------------------------------------------------
166 LogicalOrExpression '?' Expression ':' Expression
170 LogicalAndExpression "||" LogicalOrExpression // to (a || b) || c
173 LogicalAndExpression:
174 EqualityExpression "&&" LogicalAndExpression // to (a && b) && c
178 RelationalExpression "==" RelationalExperession
179 RelationalExpression "!=" RelationalExperession
182 RelationalExpression:
183 MultiplicativeExpression '>' MultiplicativeExpression
184 MultiplicativeExpression '<' MultiplicativeExpression
185 MultiplicativeExpression ">=" MultiplicativeExpression
186 MultiplicativeExpression "<=" MultiplicativeExpression
187 MultiplicativeExpression
189 MultiplicativeExpression:
190 PmExpression '%' PmExpression
199 class wxPluralFormsToken
204 T_ERROR
, T_EOF
, T_NUMBER
, T_N
, T_PLURAL
, T_NPLURALS
, T_EQUAL
, T_ASSIGN
,
205 T_GREATER
, T_GREATER_OR_EQUAL
, T_LESS
, T_LESS_OR_EQUAL
,
206 T_REMINDER
, T_NOT_EQUAL
,
207 T_LOGICAL_AND
, T_LOGICAL_OR
, T_QUESTION
, T_COLON
, T_SEMICOLON
,
208 T_LEFT_BRACKET
, T_RIGHT_BRACKET
210 Type
type() const { return m_type
; }
211 void setType(Type type
) { m_type
= type
; }
214 Number
number() const { return m_number
; }
215 void setNumber(Number num
) { m_number
= num
; }
222 class wxPluralFormsScanner
225 wxPluralFormsScanner(const char* s
);
226 const wxPluralFormsToken
& token() const { return m_token
; }
227 bool nextToken(); // returns false if error
230 wxPluralFormsToken m_token
;
233 wxPluralFormsScanner::wxPluralFormsScanner(const char* s
) : m_s(s
)
238 bool wxPluralFormsScanner::nextToken()
240 wxPluralFormsToken::Type type
= wxPluralFormsToken::T_ERROR
;
241 while (isspace(*m_s
))
247 type
= wxPluralFormsToken::T_EOF
;
249 else if (isdigit(*m_s
))
251 wxPluralFormsToken::Number number
= *m_s
++ - '0';
252 while (isdigit(*m_s
))
254 number
= number
* 10 + (*m_s
++ - '0');
256 m_token
.setNumber(number
);
257 type
= wxPluralFormsToken::T_NUMBER
;
259 else if (isalpha(*m_s
))
261 const char* begin
= m_s
++;
262 while (isalnum(*m_s
))
266 size_t size
= m_s
- begin
;
267 if (size
== 1 && memcmp(begin
, "n", size
) == 0)
269 type
= wxPluralFormsToken::T_N
;
271 else if (size
== 6 && memcmp(begin
, "plural", size
) == 0)
273 type
= wxPluralFormsToken::T_PLURAL
;
275 else if (size
== 8 && memcmp(begin
, "nplurals", size
) == 0)
277 type
= wxPluralFormsToken::T_NPLURALS
;
280 else if (*m_s
== '=')
286 type
= wxPluralFormsToken::T_EQUAL
;
290 type
= wxPluralFormsToken::T_ASSIGN
;
293 else if (*m_s
== '>')
299 type
= wxPluralFormsToken::T_GREATER_OR_EQUAL
;
303 type
= wxPluralFormsToken::T_GREATER
;
306 else if (*m_s
== '<')
312 type
= wxPluralFormsToken::T_LESS_OR_EQUAL
;
316 type
= wxPluralFormsToken::T_LESS
;
319 else if (*m_s
== '%')
322 type
= wxPluralFormsToken::T_REMINDER
;
324 else if (*m_s
== '!' && m_s
[1] == '=')
327 type
= wxPluralFormsToken::T_NOT_EQUAL
;
329 else if (*m_s
== '&' && m_s
[1] == '&')
332 type
= wxPluralFormsToken::T_LOGICAL_AND
;
334 else if (*m_s
== '|' && m_s
[1] == '|')
337 type
= wxPluralFormsToken::T_LOGICAL_OR
;
339 else if (*m_s
== '?')
342 type
= wxPluralFormsToken::T_QUESTION
;
344 else if (*m_s
== ':')
347 type
= wxPluralFormsToken::T_COLON
;
348 } else if (*m_s
== ';') {
350 type
= wxPluralFormsToken::T_SEMICOLON
;
352 else if (*m_s
== '(')
355 type
= wxPluralFormsToken::T_LEFT_BRACKET
;
357 else if (*m_s
== ')')
360 type
= wxPluralFormsToken::T_RIGHT_BRACKET
;
362 m_token
.setType(type
);
363 return type
!= wxPluralFormsToken::T_ERROR
;
366 class wxPluralFormsNode
;
368 // NB: Can't use wxDEFINE_SCOPED_PTR_TYPE because wxPluralFormsNode is not
369 // fully defined yet:
370 class wxPluralFormsNodePtr
373 wxPluralFormsNodePtr(wxPluralFormsNode
*p
= NULL
) : m_p(p
) {}
374 ~wxPluralFormsNodePtr();
375 wxPluralFormsNode
& operator*() const { return *m_p
; }
376 wxPluralFormsNode
* operator->() const { return m_p
; }
377 wxPluralFormsNode
* get() const { return m_p
; }
378 wxPluralFormsNode
* release();
379 void reset(wxPluralFormsNode
*p
);
382 wxPluralFormsNode
*m_p
;
385 class wxPluralFormsNode
388 wxPluralFormsNode(const wxPluralFormsToken
& token
) : m_token(token
) {}
389 const wxPluralFormsToken
& token() const { return m_token
; }
390 const wxPluralFormsNode
* node(size_t i
) const
391 { return m_nodes
[i
].get(); }
392 void setNode(size_t i
, wxPluralFormsNode
* n
);
393 wxPluralFormsNode
* releaseNode(size_t i
);
394 wxPluralFormsToken::Number
evaluate(wxPluralFormsToken::Number n
) const;
397 wxPluralFormsToken m_token
;
398 wxPluralFormsNodePtr m_nodes
[3];
401 wxPluralFormsNodePtr::~wxPluralFormsNodePtr()
405 wxPluralFormsNode
* wxPluralFormsNodePtr::release()
407 wxPluralFormsNode
*p
= m_p
;
411 void wxPluralFormsNodePtr::reset(wxPluralFormsNode
*p
)
421 void wxPluralFormsNode::setNode(size_t i
, wxPluralFormsNode
* n
)
426 wxPluralFormsNode
* wxPluralFormsNode::releaseNode(size_t i
)
428 return m_nodes
[i
].release();
431 wxPluralFormsToken::Number
432 wxPluralFormsNode::evaluate(wxPluralFormsToken::Number n
) const
434 switch (token().type())
437 case wxPluralFormsToken::T_NUMBER
:
438 return token().number();
439 case wxPluralFormsToken::T_N
:
442 case wxPluralFormsToken::T_EQUAL
:
443 return node(0)->evaluate(n
) == node(1)->evaluate(n
);
444 case wxPluralFormsToken::T_NOT_EQUAL
:
445 return node(0)->evaluate(n
) != node(1)->evaluate(n
);
446 case wxPluralFormsToken::T_GREATER
:
447 return node(0)->evaluate(n
) > node(1)->evaluate(n
);
448 case wxPluralFormsToken::T_GREATER_OR_EQUAL
:
449 return node(0)->evaluate(n
) >= node(1)->evaluate(n
);
450 case wxPluralFormsToken::T_LESS
:
451 return node(0)->evaluate(n
) < node(1)->evaluate(n
);
452 case wxPluralFormsToken::T_LESS_OR_EQUAL
:
453 return node(0)->evaluate(n
) <= node(1)->evaluate(n
);
454 case wxPluralFormsToken::T_REMINDER
:
456 wxPluralFormsToken::Number number
= node(1)->evaluate(n
);
459 return node(0)->evaluate(n
) % number
;
466 case wxPluralFormsToken::T_LOGICAL_AND
:
467 return node(0)->evaluate(n
) && node(1)->evaluate(n
);
468 case wxPluralFormsToken::T_LOGICAL_OR
:
469 return node(0)->evaluate(n
) || node(1)->evaluate(n
);
471 case wxPluralFormsToken::T_QUESTION
:
472 return node(0)->evaluate(n
)
473 ? node(1)->evaluate(n
)
474 : node(2)->evaluate(n
);
481 class wxPluralFormsCalculator
484 wxPluralFormsCalculator() : m_nplurals(0), m_plural(0) {}
486 // input: number, returns msgstr index
487 int evaluate(int n
) const;
489 // input: text after "Plural-Forms:" (e.g. "nplurals=2; plural=(n != 1);"),
490 // if s == 0, creates default handler
491 // returns 0 if error
492 static wxPluralFormsCalculator
* make(const char* s
= 0);
494 ~wxPluralFormsCalculator() {}
496 void init(wxPluralFormsToken::Number nplurals
, wxPluralFormsNode
* plural
);
499 wxPluralFormsToken::Number m_nplurals
;
500 wxPluralFormsNodePtr m_plural
;
503 wxDEFINE_SCOPED_PTR_TYPE(wxPluralFormsCalculator
)
505 void wxPluralFormsCalculator::init(wxPluralFormsToken::Number nplurals
,
506 wxPluralFormsNode
* plural
)
508 m_nplurals
= nplurals
;
509 m_plural
.reset(plural
);
512 int wxPluralFormsCalculator::evaluate(int n
) const
514 if (m_plural
.get() == 0)
518 wxPluralFormsToken::Number number
= m_plural
->evaluate(n
);
519 if (number
< 0 || number
> m_nplurals
)
527 class wxPluralFormsParser
530 wxPluralFormsParser(wxPluralFormsScanner
& scanner
) : m_scanner(scanner
) {}
531 bool parse(wxPluralFormsCalculator
& rCalculator
);
534 wxPluralFormsNode
* parsePlural();
535 // stops at T_SEMICOLON, returns 0 if error
536 wxPluralFormsScanner
& m_scanner
;
537 const wxPluralFormsToken
& token() const;
540 wxPluralFormsNode
* expression();
541 wxPluralFormsNode
* logicalOrExpression();
542 wxPluralFormsNode
* logicalAndExpression();
543 wxPluralFormsNode
* equalityExpression();
544 wxPluralFormsNode
* multiplicativeExpression();
545 wxPluralFormsNode
* relationalExpression();
546 wxPluralFormsNode
* pmExpression();
549 bool wxPluralFormsParser::parse(wxPluralFormsCalculator
& rCalculator
)
551 if (token().type() != wxPluralFormsToken::T_NPLURALS
)
555 if (token().type() != wxPluralFormsToken::T_ASSIGN
)
559 if (token().type() != wxPluralFormsToken::T_NUMBER
)
561 wxPluralFormsToken::Number nplurals
= token().number();
564 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
568 if (token().type() != wxPluralFormsToken::T_PLURAL
)
572 if (token().type() != wxPluralFormsToken::T_ASSIGN
)
576 wxPluralFormsNode
* plural
= parsePlural();
579 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
583 if (token().type() != wxPluralFormsToken::T_EOF
)
585 rCalculator
.init(nplurals
, plural
);
589 wxPluralFormsNode
* wxPluralFormsParser::parsePlural()
591 wxPluralFormsNode
* p
= expression();
596 wxPluralFormsNodePtr
n(p
);
597 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
604 const wxPluralFormsToken
& wxPluralFormsParser::token() const
606 return m_scanner
.token();
609 bool wxPluralFormsParser::nextToken()
611 if (!m_scanner
.nextToken())
616 wxPluralFormsNode
* wxPluralFormsParser::expression()
618 wxPluralFormsNode
* p
= logicalOrExpression();
621 wxPluralFormsNodePtr
n(p
);
622 if (token().type() == wxPluralFormsToken::T_QUESTION
)
624 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
635 if (token().type() != wxPluralFormsToken::T_COLON
)
649 qn
->setNode(0, n
.release());
655 wxPluralFormsNode
*wxPluralFormsParser::logicalOrExpression()
657 wxPluralFormsNode
* p
= logicalAndExpression();
660 wxPluralFormsNodePtr
ln(p
);
661 if (token().type() == wxPluralFormsToken::T_LOGICAL_OR
)
663 wxPluralFormsNodePtr
un(new wxPluralFormsNode(token()));
668 p
= logicalOrExpression();
673 wxPluralFormsNodePtr
rn(p
); // right
674 if (rn
->token().type() == wxPluralFormsToken::T_LOGICAL_OR
)
676 // see logicalAndExpression comment
677 un
->setNode(0, ln
.release());
678 un
->setNode(1, rn
->releaseNode(0));
679 rn
->setNode(0, un
.release());
684 un
->setNode(0, ln
.release());
685 un
->setNode(1, rn
.release());
691 wxPluralFormsNode
* wxPluralFormsParser::logicalAndExpression()
693 wxPluralFormsNode
* p
= equalityExpression();
696 wxPluralFormsNodePtr
ln(p
); // left
697 if (token().type() == wxPluralFormsToken::T_LOGICAL_AND
)
699 wxPluralFormsNodePtr
un(new wxPluralFormsNode(token())); // up
704 p
= logicalAndExpression();
709 wxPluralFormsNodePtr
rn(p
); // right
710 if (rn
->token().type() == wxPluralFormsToken::T_LOGICAL_AND
)
712 // transform 1 && (2 && 3) -> (1 && 2) && 3
716 un
->setNode(0, ln
.release());
717 un
->setNode(1, rn
->releaseNode(0));
718 rn
->setNode(0, un
.release());
722 un
->setNode(0, ln
.release());
723 un
->setNode(1, rn
.release());
729 wxPluralFormsNode
* wxPluralFormsParser::equalityExpression()
731 wxPluralFormsNode
* p
= relationalExpression();
734 wxPluralFormsNodePtr
n(p
);
735 if (token().type() == wxPluralFormsToken::T_EQUAL
736 || token().type() == wxPluralFormsToken::T_NOT_EQUAL
)
738 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
743 p
= relationalExpression();
749 qn
->setNode(0, n
.release());
755 wxPluralFormsNode
* wxPluralFormsParser::relationalExpression()
757 wxPluralFormsNode
* p
= multiplicativeExpression();
760 wxPluralFormsNodePtr
n(p
);
761 if (token().type() == wxPluralFormsToken::T_GREATER
762 || token().type() == wxPluralFormsToken::T_LESS
763 || token().type() == wxPluralFormsToken::T_GREATER_OR_EQUAL
764 || token().type() == wxPluralFormsToken::T_LESS_OR_EQUAL
)
766 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
771 p
= multiplicativeExpression();
777 qn
->setNode(0, n
.release());
783 wxPluralFormsNode
* wxPluralFormsParser::multiplicativeExpression()
785 wxPluralFormsNode
* p
= pmExpression();
788 wxPluralFormsNodePtr
n(p
);
789 if (token().type() == wxPluralFormsToken::T_REMINDER
)
791 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
802 qn
->setNode(0, n
.release());
808 wxPluralFormsNode
* wxPluralFormsParser::pmExpression()
810 wxPluralFormsNodePtr n
;
811 if (token().type() == wxPluralFormsToken::T_N
812 || token().type() == wxPluralFormsToken::T_NUMBER
)
814 n
.reset(new wxPluralFormsNode(token()));
820 else if (token().type() == wxPluralFormsToken::T_LEFT_BRACKET
) {
825 wxPluralFormsNode
* p
= expression();
831 if (token().type() != wxPluralFormsToken::T_RIGHT_BRACKET
)
847 wxPluralFormsCalculator
* wxPluralFormsCalculator::make(const char* s
)
849 wxPluralFormsCalculatorPtr
calculator(new wxPluralFormsCalculator
);
852 wxPluralFormsScanner
scanner(s
);
853 wxPluralFormsParser
p(scanner
);
854 if (!p
.parse(*calculator
))
859 return calculator
.release();
865 // ----------------------------------------------------------------------------
866 // wxMsgCatalogFile corresponds to one disk-file message catalog.
868 // This is a "low-level" class and is used only by wxMsgCatalog
869 // ----------------------------------------------------------------------------
871 WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxString
, wxMessagesHash
);
873 class wxMsgCatalogFile
880 // load the catalog from disk (szDirPrefix corresponds to language)
881 bool Load(const wxChar
*szDirPrefix
, const wxChar
*szName
,
882 wxPluralFormsCalculatorPtr
& rPluralFormsCalculator
);
884 // fills the hash with string-translation pairs
885 void FillHash(wxMessagesHash
& hash
,
886 const wxString
& msgIdCharset
,
887 bool convertEncoding
) const;
889 // return the charset of the strings in this catalog or empty string if
891 wxString
GetCharset() const { return m_charset
; }
894 // this implementation is binary compatible with GNU gettext() version 0.10
896 // an entry in the string table
897 struct wxMsgTableEntry
899 size_t32 nLen
; // length of the string
900 size_t32 ofsString
; // pointer to the string
903 // header of a .mo file
904 struct wxMsgCatalogHeader
906 size_t32 magic
, // offset +00: magic id
907 revision
, // +04: revision
908 numStrings
; // +08: number of strings in the file
909 size_t32 ofsOrigTable
, // +0C: start of original string table
910 ofsTransTable
; // +10: start of translated string table
911 size_t32 nHashSize
, // +14: hash table size
912 ofsHashTable
; // +18: offset of hash table start
915 // all data is stored here, NULL if no data loaded
918 // amount of memory pointed to by m_pData.
922 size_t32 m_numStrings
; // number of strings in this domain
923 wxMsgTableEntry
*m_pOrigTable
, // pointer to original strings
924 *m_pTransTable
; // translated
926 wxString m_charset
; // from the message catalog header
929 // swap the 2 halves of 32 bit integer if needed
930 size_t32
Swap(size_t32 ui
) const
932 return m_bSwapped
? (ui
<< 24) | ((ui
& 0xff00) << 8) |
933 ((ui
>> 8) & 0xff00) | (ui
>> 24)
937 const char *StringAtOfs(wxMsgTableEntry
*pTable
, size_t32 n
) const
939 const wxMsgTableEntry
* const ent
= pTable
+ n
;
941 // this check could fail for a corrupt message catalog
942 size_t32 ofsString
= Swap(ent
->ofsString
);
943 if ( ofsString
+ Swap(ent
->nLen
) > m_nSize
)
948 return (const char *)(m_pData
+ ofsString
);
951 bool m_bSwapped
; // wrong endianness?
953 DECLARE_NO_COPY_CLASS(wxMsgCatalogFile
)
957 // ----------------------------------------------------------------------------
958 // wxMsgCatalog corresponds to one loaded message catalog.
960 // This is a "low-level" class and is used only by wxLocale (that's why
961 // it's designed to be stored in a linked list)
962 // ----------------------------------------------------------------------------
967 wxMsgCatalog() { m_conv
= NULL
; }
970 // load the catalog from disk (szDirPrefix corresponds to language)
971 bool Load(const wxChar
*szDirPrefix
, const wxChar
*szName
,
972 const wxChar
*msgIdCharset
= NULL
, bool bConvertEncoding
= false);
974 // get name of the catalog
975 wxString
GetName() const { return m_name
; }
977 // get the translated string: returns NULL if not found
978 const wxChar
*GetString(const wxChar
*sz
, size_t n
= size_t(-1)) const;
980 // public variable pointing to the next element in a linked list (or NULL)
981 wxMsgCatalog
*m_pNext
;
984 wxMessagesHash m_messages
; // all messages in the catalog
985 wxString m_name
; // name of the domain
987 // the conversion corresponding to this catalog charset if we installed it
991 wxPluralFormsCalculatorPtr m_pluralFormsCalculator
;
994 // ----------------------------------------------------------------------------
996 // ----------------------------------------------------------------------------
998 // the list of the directories to search for message catalog files
999 static wxArrayString gs_searchPrefixes
;
1001 // ============================================================================
1003 // ============================================================================
1005 // ----------------------------------------------------------------------------
1006 // wxMsgCatalogFile class
1007 // ----------------------------------------------------------------------------
1009 wxMsgCatalogFile::wxMsgCatalogFile()
1015 wxMsgCatalogFile::~wxMsgCatalogFile()
1020 // return the directory to search for message catalogs under the given prefix
1022 wxString
GetMsgCatalogSubdir(const wxChar
*prefix
, const wxChar
*lang
)
1024 wxString searchPath
;
1025 searchPath
<< prefix
<< wxFILE_SEP_PATH
<< lang
;
1027 // under Unix, the message catalogs are supposed to go into LC_MESSAGES
1028 // subdirectory so look there too
1030 const wxString
searchPathOrig(searchPath
);
1031 searchPath
<< wxFILE_SEP_PATH
<< wxT("LC_MESSAGES")
1032 << wxPATH_SEP
<< searchPathOrig
;
1038 // construct the search path for the given language
1039 static wxString
GetFullSearchPath(const wxChar
*lang
)
1041 // first take the entries explicitly added by the program
1042 wxArrayString paths
;
1043 paths
.reserve(gs_searchPrefixes
.size() + 1);
1045 count
= gs_searchPrefixes
.size();
1046 for ( n
= 0; n
< count
; n
++ )
1048 paths
.Add(GetMsgCatalogSubdir(gs_searchPrefixes
[n
], lang
));
1053 // then look in the standard location
1054 const wxString stdp
= wxStandardPaths::Get().
1055 GetLocalizedResourcesDir(lang
, wxStandardPaths::ResourceCat_Messages
);
1057 if ( paths
.Index(stdp
) == wxNOT_FOUND
)
1059 #endif // wxUSE_STDPATHS
1061 // last look in default locations
1063 // LC_PATH is a standard env var containing the search path for the .mo
1065 const wxChar
*pszLcPath
= wxGetenv(wxT("LC_PATH"));
1068 const wxString lcp
= GetMsgCatalogSubdir(pszLcPath
, lang
);
1069 if ( paths
.Index(lcp
) == wxNOT_FOUND
)
1073 // also add the one from where wxWin was installed:
1074 wxString wxp
= wxGetInstallPrefix();
1077 wxp
= GetMsgCatalogSubdir(wxp
+ _T("/share/locale"), lang
);
1078 if ( paths
.Index(wxp
) == wxNOT_FOUND
)
1084 // finally construct the full search path
1085 wxString searchPath
;
1086 searchPath
.reserve(500);
1087 count
= paths
.size();
1088 for ( n
= 0; n
< count
; n
++ )
1090 searchPath
+= paths
[n
];
1091 if ( n
!= count
- 1 )
1092 searchPath
+= wxPATH_SEP
;
1098 // open disk file and read in it's contents
1099 bool wxMsgCatalogFile::Load(const wxChar
*szDirPrefix
, const wxChar
*szName
,
1100 wxPluralFormsCalculatorPtr
& rPluralFormsCalculator
)
1102 wxString searchPath
;
1105 // first look for the catalog for this language and the current locale:
1106 // notice that we don't use the system name for the locale as this would
1107 // force us to install catalogs in different locations depending on the
1108 // system but always use the canonical name
1109 wxFontEncoding encSys
= wxLocale::GetSystemEncoding();
1110 if ( encSys
!= wxFONTENCODING_SYSTEM
)
1112 wxString
fullname(szDirPrefix
);
1113 fullname
<< _T('.') << wxFontMapperBase::GetEncodingName(encSys
);
1114 searchPath
<< GetFullSearchPath(fullname
) << wxPATH_SEP
;
1116 #endif // wxUSE_FONTMAP
1119 searchPath
+= GetFullSearchPath(szDirPrefix
);
1120 const wxChar
*sublocale
= wxStrchr(szDirPrefix
, wxT('_'));
1123 // also add just base locale name: for things like "fr_BE" (belgium
1124 // french) we should use "fr" if no belgium specific message catalogs
1126 searchPath
<< wxPATH_SEP
1127 << GetFullSearchPath(wxString(szDirPrefix
).
1128 Left((size_t)(sublocale
- szDirPrefix
)));
1131 // don't give translation errors here because the wxstd catalog might
1132 // not yet be loaded (and it's normal)
1134 // (we're using an object because we have several return paths)
1136 NoTransErr noTransErr
;
1137 wxLogVerbose(_("looking for catalog '%s' in path '%s'."),
1138 szName
, searchPath
.c_str());
1139 wxLogTrace(TRACE_I18N
, _T("Looking for \"%s.mo\" in \"%s\""),
1140 szName
, searchPath
.c_str());
1142 wxFileName
fn(szName
);
1143 fn
.SetExt(_T("mo"));
1144 wxString strFullName
;
1145 if ( !wxFindFileInPath(&strFullName
, searchPath
, fn
.GetFullPath()) ) {
1146 wxLogVerbose(_("catalog file for domain '%s' not found."), szName
);
1147 wxLogTrace(TRACE_I18N
, _T("Catalog \"%s.mo\" not found"), szName
);
1152 wxLogVerbose(_("using catalog '%s' from '%s'."), szName
, strFullName
.c_str());
1153 wxLogTrace(TRACE_I18N
, _T("Using catalog \"%s\"."), strFullName
.c_str());
1155 wxFile
fileMsg(strFullName
);
1156 if ( !fileMsg
.IsOpened() )
1159 // get the file size (assume it is less than 4Gb...)
1160 wxFileOffset lenFile
= fileMsg
.Length();
1161 if ( lenFile
== wxInvalidOffset
)
1164 size_t nSize
= wx_truncate_cast(size_t, lenFile
);
1165 wxASSERT_MSG( nSize
== lenFile
+ size_t(0), _T("message catalog bigger than 4GB?") );
1167 // read the whole file in memory
1168 m_pData
= new size_t8
[nSize
];
1169 if ( fileMsg
.Read(m_pData
, nSize
) != lenFile
) {
1175 bool bValid
= nSize
+ (size_t)0 > sizeof(wxMsgCatalogHeader
);
1177 wxMsgCatalogHeader
*pHeader
= (wxMsgCatalogHeader
*)m_pData
;
1179 // we'll have to swap all the integers if it's true
1180 m_bSwapped
= pHeader
->magic
== MSGCATALOG_MAGIC_SW
;
1182 // check the magic number
1183 bValid
= m_bSwapped
|| pHeader
->magic
== MSGCATALOG_MAGIC
;
1187 // it's either too short or has incorrect magic number
1188 wxLogWarning(_("'%s' is not a valid message catalog."), strFullName
.c_str());
1195 m_numStrings
= Swap(pHeader
->numStrings
);
1196 m_pOrigTable
= (wxMsgTableEntry
*)(m_pData
+
1197 Swap(pHeader
->ofsOrigTable
));
1198 m_pTransTable
= (wxMsgTableEntry
*)(m_pData
+
1199 Swap(pHeader
->ofsTransTable
));
1200 m_nSize
= (size_t32
)nSize
;
1202 // now parse catalog's header and try to extract catalog charset and
1203 // plural forms formula from it:
1205 const char* headerData
= StringAtOfs(m_pOrigTable
, 0);
1206 if (headerData
&& headerData
[0] == 0)
1208 // Extract the charset:
1209 wxString header
= wxString::FromAscii(StringAtOfs(m_pTransTable
, 0));
1210 int begin
= header
.Find(wxT("Content-Type: text/plain; charset="));
1211 if (begin
!= wxNOT_FOUND
)
1213 begin
+= 34; //strlen("Content-Type: text/plain; charset=")
1214 size_t end
= header
.find('\n', begin
);
1215 if (end
!= size_t(-1))
1217 m_charset
.assign(header
, begin
, end
- begin
);
1218 if (m_charset
== wxT("CHARSET"))
1220 // "CHARSET" is not valid charset, but lazy translator
1225 // else: incorrectly filled Content-Type header
1227 // Extract plural forms:
1228 begin
= header
.Find(wxT("Plural-Forms:"));
1229 if (begin
!= wxNOT_FOUND
)
1232 size_t end
= header
.find('\n', begin
);
1233 if (end
!= size_t(-1))
1235 wxString
pfs(header
, begin
, end
- begin
);
1236 wxPluralFormsCalculator
* pCalculator
= wxPluralFormsCalculator
1237 ::make(pfs
.ToAscii());
1238 if (pCalculator
!= 0)
1240 rPluralFormsCalculator
.reset(pCalculator
);
1244 wxLogVerbose(_("Cannot parse Plural-Forms:'%s'"), pfs
.c_str());
1248 if (rPluralFormsCalculator
.get() == NULL
)
1250 rPluralFormsCalculator
.reset(wxPluralFormsCalculator::make());
1254 // everything is fine
1258 void wxMsgCatalogFile::FillHash(wxMessagesHash
& hash
,
1259 const wxString
& msgIdCharset
,
1260 bool convertEncoding
) const
1263 // this parameter doesn't make sense, we always must convert encoding in
1265 convertEncoding
= true;
1267 if ( convertEncoding
)
1269 // determine if we need any conversion at all
1270 wxFontEncoding encCat
= wxFontMapperBase::GetEncodingFromName(m_charset
);
1271 if ( encCat
== wxLocale::GetSystemEncoding() )
1273 // no need to convert
1274 convertEncoding
= false;
1277 #endif // wxUSE_UNICODE/wxUSE_FONTMAP
1280 // conversion to use to convert catalog strings to the GUI encoding
1281 wxMBConv
*inputConv
,
1282 *inputConvPtr
= NULL
; // same as inputConv but safely deleteable
1283 if ( convertEncoding
&& !m_charset
.empty() )
1286 inputConv
= new wxCSConv(m_charset
);
1288 else // no need or not possible to convert the encoding
1291 // we must somehow convert the narrow strings in the message catalog to
1292 // wide strings, so use the default conversion if we have no charset
1293 inputConv
= wxConvCurrent
;
1294 #else // !wxUSE_UNICODE
1296 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1299 // conversion to apply to msgid strings before looking them up: we only
1300 // need it if the msgids are neither in 7 bit ASCII nor in the same
1301 // encoding as the catalog
1302 wxCSConv
*sourceConv
= msgIdCharset
.empty() || (msgIdCharset
== m_charset
)
1304 : new wxCSConv(msgIdCharset
);
1307 wxASSERT_MSG( msgIdCharset
== NULL
,
1308 _T("non-ASCII msgid languages only supported if wxUSE_WCHAR_T=1") );
1310 wxEncodingConverter converter
;
1311 if ( convertEncoding
)
1313 wxFontEncoding targetEnc
= wxFONTENCODING_SYSTEM
;
1314 wxFontEncoding enc
= wxFontMapperBase::Get()->CharsetToEncoding(m_charset
, false);
1315 if ( enc
== wxFONTENCODING_SYSTEM
)
1317 convertEncoding
= false; // unknown encoding
1321 targetEnc
= wxLocale::GetSystemEncoding();
1322 if (targetEnc
== wxFONTENCODING_SYSTEM
)
1324 wxFontEncodingArray a
= wxEncodingConverter::GetPlatformEquivalents(enc
);
1326 // no conversion needed, locale uses native encoding
1327 convertEncoding
= false;
1328 if (a
.GetCount() == 0)
1329 // we don't know common equiv. under this platform
1330 convertEncoding
= false;
1335 if ( convertEncoding
)
1337 converter
.Init(enc
, targetEnc
);
1340 #endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
1341 (void)convertEncoding
; // get rid of warnings about unused parameter
1343 for (size_t32 i
= 0; i
< m_numStrings
; i
++)
1345 const char *data
= StringAtOfs(m_pOrigTable
, i
);
1349 msgid
= wxString(data
, *inputConv
);
1352 if ( inputConv
&& sourceConv
)
1353 msgid
= wxString(inputConv
->cMB2WC(data
), *sourceConv
);
1357 #endif // wxUSE_UNICODE
1359 data
= StringAtOfs(m_pTransTable
, i
);
1360 size_t length
= Swap(m_pTransTable
[i
].nLen
);
1363 while (offset
< length
)
1365 const char * const str
= data
+ offset
;
1369 msgstr
= wxString(str
, *inputConv
);
1372 msgstr
= wxString(inputConv
->cMB2WC(str
), *wxConvUI
);
1375 #else // !wxUSE_WCHAR_T
1377 if ( convertEncoding
)
1378 msgstr
= wxString(converter
.Convert(str
));
1382 #endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
1384 if ( !msgstr
.empty() )
1386 hash
[index
== 0 ? msgid
: msgid
+ wxChar(index
)] = msgstr
;
1390 offset
+= strlen(str
) + 1;
1397 delete inputConvPtr
;
1398 #endif // wxUSE_WCHAR_T
1402 // ----------------------------------------------------------------------------
1403 // wxMsgCatalog class
1404 // ----------------------------------------------------------------------------
1406 wxMsgCatalog::~wxMsgCatalog()
1410 if ( wxConvUI
== m_conv
)
1412 // we only change wxConvUI if it points to wxConvLocal so we reset
1413 // it back to it too
1414 wxConvUI
= &wxConvLocal
;
1421 bool wxMsgCatalog::Load(const wxChar
*szDirPrefix
, const wxChar
*szName
,
1422 const wxChar
*msgIdCharset
, bool bConvertEncoding
)
1424 wxMsgCatalogFile file
;
1428 if ( !file
.Load(szDirPrefix
, szName
, m_pluralFormsCalculator
) )
1431 file
.FillHash(m_messages
, msgIdCharset
, bConvertEncoding
);
1433 // we should use a conversion compatible with the message catalog encoding
1434 // in the GUI if we don't convert the strings to the current conversion but
1435 // as the encoding is global, only change it once, otherwise we could get
1436 // into trouble if we use several message catalogs with different encodings
1438 // this is, of course, a hack but it at least allows the program to use
1439 // message catalogs in any encodings without asking the user to change his
1441 if ( !bConvertEncoding
&&
1442 !file
.GetCharset().empty() &&
1443 wxConvUI
== &wxConvLocal
)
1446 m_conv
= new wxCSConv(file
.GetCharset());
1452 const wxChar
*wxMsgCatalog::GetString(const wxChar
*sz
, size_t n
) const
1455 if (n
!= size_t(-1))
1457 index
= m_pluralFormsCalculator
->evaluate(n
);
1459 wxMessagesHash::const_iterator i
;
1462 i
= m_messages
.find(wxString(sz
) + wxChar(index
)); // plural
1466 i
= m_messages
.find(sz
);
1469 if ( i
!= m_messages
.end() )
1471 return i
->second
.c_str();
1477 // ----------------------------------------------------------------------------
1479 // ----------------------------------------------------------------------------
1481 #include "wx/arrimpl.cpp"
1482 WX_DECLARE_EXPORTED_OBJARRAY(wxLanguageInfo
, wxLanguageInfoArray
);
1483 WX_DEFINE_OBJARRAY(wxLanguageInfoArray
)
1485 wxLanguageInfoArray
*wxLocale::ms_languagesDB
= NULL
;
1487 /*static*/ void wxLocale::CreateLanguagesDB()
1489 if (ms_languagesDB
== NULL
)
1491 ms_languagesDB
= new wxLanguageInfoArray
;
1496 /*static*/ void wxLocale::DestroyLanguagesDB()
1498 delete ms_languagesDB
;
1499 ms_languagesDB
= NULL
;
1503 void wxLocale::DoCommonInit()
1505 m_pszOldLocale
= NULL
;
1507 m_pOldLocale
= wxSetLocale(this);
1510 m_language
= wxLANGUAGE_UNKNOWN
;
1511 m_initialized
= false;
1514 // NB: this function has (desired) side effect of changing current locale
1515 bool wxLocale::Init(const wxChar
*szName
,
1516 const wxChar
*szShort
,
1517 const wxChar
*szLocale
,
1519 bool bConvertEncoding
)
1521 wxASSERT_MSG( !m_initialized
,
1522 _T("you can't call wxLocale::Init more than once") );
1524 m_initialized
= true;
1525 m_strLocale
= szName
;
1526 m_strShort
= szShort
;
1527 m_bConvertEncoding
= bConvertEncoding
;
1528 m_language
= wxLANGUAGE_UNKNOWN
;
1530 // change current locale (default: same as long name)
1531 if ( szLocale
== NULL
)
1533 // the argument to setlocale()
1536 wxCHECK_MSG( szLocale
, false, _T("no locale to set in wxLocale::Init()") );
1540 // FIXME: I'm guessing here
1541 wxChar localeName
[256];
1542 int ret
= GetLocaleInfo(LOCALE_USER_DEFAULT
, LOCALE_SLANGUAGE
, localeName
,
1546 m_pszOldLocale
= wxStrdup(localeName
);
1549 m_pszOldLocale
= NULL
;
1551 // TODO: how to find languageId
1552 // SetLocaleInfo(languageId, SORT_DEFAULT, localeName);
1554 wxMB2WXbuf oldLocale
= wxSetlocale(LC_ALL
, szLocale
);
1556 m_pszOldLocale
= wxStrdup(oldLocale
);
1558 m_pszOldLocale
= NULL
;
1561 if ( m_pszOldLocale
== NULL
)
1562 wxLogError(_("locale '%s' can not be set."), szLocale
);
1564 // the short name will be used to look for catalog files as well,
1565 // so we need something here
1566 if ( m_strShort
.empty() ) {
1567 // FIXME I don't know how these 2 letter abbreviations are formed,
1568 // this wild guess is surely wrong
1569 if ( szLocale
&& szLocale
[0] )
1571 m_strShort
+= (wxChar
)wxTolower(szLocale
[0]);
1573 m_strShort
+= (wxChar
)wxTolower(szLocale
[1]);
1577 // load the default catalog with wxWidgets standard messages
1582 bOk
= AddCatalog(wxT("wxstd"));
1584 // there may be a catalog with toolkit specific overrides, it is not
1585 // an error if this does not exist
1588 wxString
port(wxPlatformInfo().GetPortIdName());
1589 if ( !port
.empty() )
1591 AddCatalog(port
.BeforeFirst(wxT('/')).MakeLower());
1600 #if defined(__UNIX__) && wxUSE_UNICODE && !defined(__WXMAC__)
1601 static wxWCharBuffer
wxSetlocaleTryUTF(int c
, const wxChar
*lc
)
1603 wxMB2WXbuf l
= wxSetlocale(c
, lc
);
1604 if ( !l
&& lc
&& lc
[0] != 0 )
1608 buf2
= buf
+ wxT(".UTF-8");
1609 l
= wxSetlocale(c
, buf2
.c_str());
1612 buf2
= buf
+ wxT(".utf-8");
1613 l
= wxSetlocale(c
, buf2
.c_str());
1617 buf2
= buf
+ wxT(".UTF8");
1618 l
= wxSetlocale(c
, buf2
.c_str());
1622 buf2
= buf
+ wxT(".utf8");
1623 l
= wxSetlocale(c
, buf2
.c_str());
1629 #define wxSetlocaleTryUTF(c, lc) wxSetlocale(c, lc)
1632 bool wxLocale::Init(int language
, int flags
)
1634 int lang
= language
;
1635 if (lang
== wxLANGUAGE_DEFAULT
)
1637 // auto detect the language
1638 lang
= GetSystemLanguage();
1641 // We failed to detect system language, so we will use English:
1642 if (lang
== wxLANGUAGE_UNKNOWN
)
1647 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
1649 // Unknown language:
1652 wxLogError(wxT("Unknown language %i."), lang
);
1656 wxString name
= info
->Description
;
1657 wxString canonical
= info
->CanonicalName
;
1661 #if defined(__OS2__)
1662 wxMB2WXbuf retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
1663 #elif defined(__UNIX__) && !defined(__WXMAC__)
1664 if (language
!= wxLANGUAGE_DEFAULT
)
1665 locale
= info
->CanonicalName
;
1667 wxMB2WXbuf retloc
= wxSetlocaleTryUTF(LC_ALL
, locale
);
1669 const wxString langOnly
= locale
.Left(2);
1672 // Some C libraries don't like xx_YY form and require xx only
1673 retloc
= wxSetlocaleTryUTF(LC_ALL
, langOnly
);
1677 // some systems (e.g. FreeBSD and HP-UX) don't have xx_YY aliases but
1678 // require the full xx_YY.encoding form, so try using UTF-8 because this is
1679 // the only thing we can do generically
1681 // TODO: add encodings applicable to each language to the lang DB and try
1682 // them all in turn here
1685 const wxChar
**names
=
1686 wxFontMapperBase::GetAllEncodingNames(wxFONTENCODING_UTF8
);
1689 retloc
= wxSetlocale(LC_ALL
, locale
+ _T('.') + *names
++);
1694 #endif // wxUSE_FONTMAP
1698 // Some C libraries (namely glibc) still use old ISO 639,
1699 // so will translate the abbrev for them
1701 if ( langOnly
== wxT("he") )
1702 localeAlt
= wxT("iw") + locale
.Mid(3);
1703 else if ( langOnly
== wxT("id") )
1704 localeAlt
= wxT("in") + locale
.Mid(3);
1705 else if ( langOnly
== wxT("yi") )
1706 localeAlt
= wxT("ji") + locale
.Mid(3);
1707 else if ( langOnly
== wxT("nb") )
1708 localeAlt
= wxT("no_NO");
1709 else if ( langOnly
== wxT("nn") )
1710 localeAlt
= wxT("no_NY");
1712 if ( !localeAlt
.empty() )
1714 retloc
= wxSetlocaleTryUTF(LC_ALL
, localeAlt
);
1716 retloc
= wxSetlocaleTryUTF(LC_ALL
, locale
.Left(2));
1722 wxLogError(wxT("Cannot set locale to '%s'."), locale
.c_str());
1727 // at least in AIX 5.2 libc is buggy and the string returned from setlocale(LC_ALL)
1728 // can't be passed back to it because it returns 6 strings (one for each locale
1729 // category), i.e. for C locale we get back "C C C C C C"
1731 // this contradicts IBM own docs but this is not of much help, so just work around
1732 // it in the crudest possible manner
1733 wxChar
*p
= wxStrchr((wxChar
*)retloc
, _T(' '));
1738 #elif defined(__WIN32__)
1740 #if wxUSE_UNICODE && (defined(__VISUALC__) || defined(__MINGW32__))
1741 // NB: setlocale() from msvcrt.dll (used by VC++ and Mingw)
1742 // can't set locale to language that can only be written using
1743 // Unicode. Therefore wxSetlocale call failed, but we don't want
1744 // to report it as an error -- so that at least message catalogs
1745 // can be used. Watch for code marked with
1746 // #ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS bellow.
1747 #define SETLOCALE_FAILS_ON_UNICODE_LANGS
1753 wxMB2WXbuf retloc
= wxT("C");
1754 if (language
!= wxLANGUAGE_DEFAULT
)
1756 if (info
->WinLang
== 0)
1758 wxLogWarning(wxT("Locale '%s' not supported by OS."), name
.c_str());
1759 // retloc already set to "C"
1764 #ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS
1768 wxUint32 lcid
= MAKELCID(MAKELANGID(info
->WinLang
, info
->WinSublang
),
1772 SetThreadLocale(lcid
);
1774 // NB: we must translate LCID to CRT's setlocale string ourselves,
1775 // because SetThreadLocale does not modify change the
1776 // interpretation of setlocale(LC_ALL, "") call:
1778 buffer
[0] = wxT('\0');
1779 GetLocaleInfo(lcid
, LOCALE_SENGLANGUAGE
, buffer
, 256);
1781 if (GetLocaleInfo(lcid
, LOCALE_SENGCOUNTRY
, buffer
, 256) > 0)
1782 locale
<< wxT("_") << buffer
;
1783 if (GetLocaleInfo(lcid
, LOCALE_IDEFAULTANSICODEPAGE
, buffer
, 256) > 0)
1785 codepage
= wxAtoi(buffer
);
1787 locale
<< wxT(".") << buffer
;
1791 wxLogLastError(wxT("SetThreadLocale"));
1792 wxLogError(wxT("Cannot set locale to language %s."), name
.c_str());
1799 retloc
= wxSetlocale(LC_ALL
, locale
);
1801 #ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS
1802 if (codepage
== 0 && (const wxChar
*)retloc
== NULL
)
1814 retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
1818 #ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS
1819 if ((const wxChar
*)retloc
== NULL
)
1822 if (GetLocaleInfo(LOCALE_USER_DEFAULT
,
1823 LOCALE_IDEFAULTANSICODEPAGE
, buffer
, 16) > 0 &&
1824 wxStrcmp(buffer
, wxT("0")) == 0)
1834 wxLogError(wxT("Cannot set locale to language %s."), name
.c_str());
1837 #elif defined(__WXMAC__)
1838 if (lang
== wxLANGUAGE_DEFAULT
)
1839 locale
= wxEmptyString
;
1841 locale
= info
->CanonicalName
;
1843 wxMB2WXbuf retloc
= wxSetlocale(LC_ALL
, locale
);
1847 // Some C libraries don't like xx_YY form and require xx only
1848 retloc
= wxSetlocale(LC_ALL
, locale
.Mid(0,2));
1852 wxLogError(wxT("Cannot set locale to '%s'."), locale
.c_str());
1858 #define WX_NO_LOCALE_SUPPORT
1861 #ifndef WX_NO_LOCALE_SUPPORT
1862 wxChar
*szLocale
= retloc
? wxStrdup(retloc
) : NULL
;
1863 bool ret
= Init(name
, canonical
, szLocale
,
1864 (flags
& wxLOCALE_LOAD_DEFAULT
) != 0,
1865 (flags
& wxLOCALE_CONV_ENCODING
) != 0);
1868 if (IsOk()) // setlocale() succeeded
1872 #endif // !WX_NO_LOCALE_SUPPORT
1877 void wxLocale::AddCatalogLookupPathPrefix(const wxString
& prefix
)
1879 if ( gs_searchPrefixes
.Index(prefix
) == wxNOT_FOUND
)
1881 gs_searchPrefixes
.Add(prefix
);
1883 //else: already have it
1886 /*static*/ int wxLocale::GetSystemLanguage()
1888 CreateLanguagesDB();
1890 // init i to avoid compiler warning
1892 count
= ms_languagesDB
->GetCount();
1894 #if defined(__UNIX__) && !defined(__WXMAC__)
1895 // first get the string identifying the language from the environment
1897 if (!wxGetEnv(wxT("LC_ALL"), &langFull
) &&
1898 !wxGetEnv(wxT("LC_MESSAGES"), &langFull
) &&
1899 !wxGetEnv(wxT("LANG"), &langFull
))
1901 // no language specified, threat it as English
1902 return wxLANGUAGE_ENGLISH
;
1905 if ( langFull
== _T("C") || langFull
== _T("POSIX") )
1908 return wxLANGUAGE_ENGLISH
;
1911 // the language string has the following form
1913 // lang[_LANG][.encoding][@modifier]
1915 // (see environ(5) in the Open Unix specification)
1917 // where lang is the primary language, LANG is a sublang/territory,
1918 // encoding is the charset to use and modifier "allows the user to select
1919 // a specific instance of localization data within a single category"
1921 // for example, the following strings are valid:
1926 // de_DE.iso88591@euro
1928 // for now we don't use the encoding, although we probably should (doing
1929 // translations of the msg catalogs on the fly as required) (TODO)
1931 // we don't use the modifiers neither but we probably should translate
1932 // "euro" into iso885915
1933 size_t posEndLang
= langFull
.find_first_of(_T("@."));
1934 if ( posEndLang
!= wxString::npos
)
1936 langFull
.Truncate(posEndLang
);
1939 // in addition to the format above, we also can have full language names
1940 // in LANG env var - for example, SuSE is known to use LANG="german" - so
1943 // do we have just the language (or sublang too)?
1944 bool justLang
= langFull
.length() == LEN_LANG
;
1946 (langFull
.length() == LEN_FULL
&& langFull
[LEN_LANG
] == wxT('_')) )
1948 // 0. Make sure the lang is according to latest ISO 639
1949 // (this is necessary because glibc uses iw and in instead
1950 // of he and id respectively).
1952 // the language itself (second part is the dialect/sublang)
1953 wxString langOrig
= ExtractLang(langFull
);
1956 if ( langOrig
== wxT("iw"))
1958 else if (langOrig
== wxT("in"))
1960 else if (langOrig
== wxT("ji"))
1962 else if (langOrig
== wxT("no_NO"))
1963 lang
= wxT("nb_NO");
1964 else if (langOrig
== wxT("no_NY"))
1965 lang
= wxT("nn_NO");
1966 else if (langOrig
== wxT("no"))
1967 lang
= wxT("nb_NO");
1971 // did we change it?
1972 if ( lang
!= langOrig
)
1974 langFull
= lang
+ ExtractNotLang(langFull
);
1977 // 1. Try to find the language either as is:
1978 for ( i
= 0; i
< count
; i
++ )
1980 if ( ms_languagesDB
->Item(i
).CanonicalName
== langFull
)
1986 // 2. If langFull is of the form xx_YY, try to find xx:
1987 if ( i
== count
&& !justLang
)
1989 for ( i
= 0; i
< count
; i
++ )
1991 if ( ms_languagesDB
->Item(i
).CanonicalName
== lang
)
1998 // 3. If langFull is of the form xx, try to find any xx_YY record:
1999 if ( i
== count
&& justLang
)
2001 for ( i
= 0; i
< count
; i
++ )
2003 if ( ExtractLang(ms_languagesDB
->Item(i
).CanonicalName
)
2011 else // not standard format
2013 // try to find the name in verbose description
2014 for ( i
= 0; i
< count
; i
++ )
2016 if (ms_languagesDB
->Item(i
).Description
.CmpNoCase(langFull
) == 0)
2022 #elif defined(__WXMAC__)
2023 const wxChar
* lc
= NULL
;
2024 long lang
= GetScriptVariable( smSystemScript
, smScriptLang
) ;
2025 switch( GetScriptManagerVariable( smRegionCode
) ) {
2041 case verNetherlands
:
2096 // _CY is not part of wx, so we have to translate according to the system language
2097 if ( lang
== langGreek
) {
2100 else if ( lang
== langTurkish
) {
2107 case verYugoCroatian
:
2113 case verPakistanUrdu
:
2116 case verTurkishModified
:
2119 case verItalianSwiss
:
2122 case verInternational
:
2183 case verByeloRussian
:
2205 lc
= wxT("pt_BR ") ;
2213 case verScottishGaelic
:
2228 case verIrishGaelicScript
:
2243 case verSpLatinAmerica
:
2249 case verFrenchUniversal
:
2300 for ( i
= 0; i
< count
; i
++ )
2302 if ( ms_languagesDB
->Item(i
).CanonicalName
== lc
)
2308 #elif defined(__WIN32__)
2309 LCID lcid
= GetUserDefaultLCID();
2312 wxUint32 lang
= PRIMARYLANGID(LANGIDFROMLCID(lcid
));
2313 wxUint32 sublang
= SUBLANGID(LANGIDFROMLCID(lcid
));
2315 for ( i
= 0; i
< count
; i
++ )
2317 if (ms_languagesDB
->Item(i
).WinLang
== lang
&&
2318 ms_languagesDB
->Item(i
).WinSublang
== sublang
)
2324 //else: leave wxlang == wxLANGUAGE_UNKNOWN
2325 #endif // Unix/Win32
2329 // we did find a matching entry, use it
2330 return ms_languagesDB
->Item(i
).Language
;
2333 // no info about this language in the database
2334 return wxLANGUAGE_UNKNOWN
;
2337 // ----------------------------------------------------------------------------
2339 // ----------------------------------------------------------------------------
2341 // this is a bit strange as under Windows we get the encoding name using its
2342 // numeric value and under Unix we do it the other way round, but this just
2343 // reflects the way different systems provide the encoding info
2346 wxString
wxLocale::GetSystemEncodingName()
2350 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
2351 // FIXME: what is the error return value for GetACP()?
2352 UINT codepage
= ::GetACP();
2353 encname
.Printf(_T("windows-%u"), codepage
);
2354 #elif defined(__WXMAC__)
2355 // default is just empty string, this resolves to the default system
2357 #elif defined(__UNIX_LIKE__)
2359 #if defined(HAVE_LANGINFO_H) && defined(CODESET)
2360 // GNU libc provides current character set this way (this conforms
2362 char *oldLocale
= strdup(setlocale(LC_CTYPE
, NULL
));
2363 setlocale(LC_CTYPE
, "");
2364 const char *alang
= nl_langinfo(CODESET
);
2365 setlocale(LC_CTYPE
, oldLocale
);
2370 encname
= wxString::FromAscii( alang
);
2372 else // nl_langinfo() failed
2373 #endif // HAVE_LANGINFO_H
2375 // if we can't get at the character set directly, try to see if it's in
2376 // the environment variables (in most cases this won't work, but I was
2378 char *lang
= getenv( "LC_ALL");
2379 char *dot
= lang
? strchr(lang
, '.') : (char *)NULL
;
2382 lang
= getenv( "LC_CTYPE" );
2384 dot
= strchr(lang
, '.' );
2388 lang
= getenv( "LANG");
2390 dot
= strchr(lang
, '.');
2395 encname
= wxString::FromAscii( dot
+1 );
2398 #endif // Win32/Unix
2404 wxFontEncoding
wxLocale::GetSystemEncoding()
2406 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
2407 UINT codepage
= ::GetACP();
2409 // wxWidgets only knows about CP1250-1257, 874, 932, 936, 949, 950
2410 if ( codepage
>= 1250 && codepage
<= 1257 )
2412 return (wxFontEncoding
)(wxFONTENCODING_CP1250
+ codepage
- 1250);
2415 if ( codepage
== 874 )
2417 return wxFONTENCODING_CP874
;
2420 if ( codepage
== 932 )
2422 return wxFONTENCODING_CP932
;
2425 if ( codepage
== 936 )
2427 return wxFONTENCODING_CP936
;
2430 if ( codepage
== 949 )
2432 return wxFONTENCODING_CP949
;
2435 if ( codepage
== 950 )
2437 return wxFONTENCODING_CP950
;
2439 #elif defined(__WXMAC__)
2440 TextEncoding encoding
= 0 ;
2442 encoding
= CFStringGetSystemEncoding() ;
2444 UpgradeScriptInfoToTextEncoding ( smSystemScript
, kTextLanguageDontCare
, kTextRegionDontCare
, NULL
, &encoding
) ;
2446 return wxMacGetFontEncFromSystemEnc( encoding
) ;
2447 #elif defined(__UNIX_LIKE__) && wxUSE_FONTMAP
2448 const wxString encname
= GetSystemEncodingName();
2449 if ( !encname
.empty() )
2451 wxFontEncoding enc
= wxFontMapperBase::GetEncodingFromName(encname
);
2453 // on some modern Linux systems (RedHat 8) the default system locale
2454 // is UTF8 -- but it isn't supported by wxGTK1 in ANSI build at all so
2455 // don't even try to use it in this case
2456 #if !wxUSE_UNICODE && \
2457 ((defined(__WXGTK__) && !defined(__WXGTK20__)) || defined(__WXMOTIF__))
2458 if ( enc
== wxFONTENCODING_UTF8
)
2460 // the most similar supported encoding...
2461 enc
= wxFONTENCODING_ISO8859_1
;
2463 #endif // !wxUSE_UNICODE
2465 // GetEncodingFromName() returns wxFONTENCODING_DEFAULT for C locale
2466 // (a.k.a. US-ASCII) which is arguably a bug but keep it like this for
2467 // backwards compatibility and just take care to not return
2468 // wxFONTENCODING_DEFAULT from here as this surely doesn't make sense
2469 if ( enc
!= wxFONTENCODING_MAX
&& enc
!= wxFONTENCODING_DEFAULT
)
2473 //else: return wxFONTENCODING_SYSTEM below
2475 #endif // Win32/Unix
2477 return wxFONTENCODING_SYSTEM
;
2481 void wxLocale::AddLanguage(const wxLanguageInfo
& info
)
2483 CreateLanguagesDB();
2484 ms_languagesDB
->Add(info
);
2488 const wxLanguageInfo
*wxLocale::GetLanguageInfo(int lang
)
2490 CreateLanguagesDB();
2492 // calling GetLanguageInfo(wxLANGUAGE_DEFAULT) is a natural thing to do, so
2494 if ( lang
== wxLANGUAGE_DEFAULT
)
2495 lang
= GetSystemLanguage();
2497 const size_t count
= ms_languagesDB
->GetCount();
2498 for ( size_t i
= 0; i
< count
; i
++ )
2500 if ( ms_languagesDB
->Item(i
).Language
== lang
)
2502 return &ms_languagesDB
->Item(i
);
2510 wxString
wxLocale::GetLanguageName(int lang
)
2512 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
2514 return wxEmptyString
;
2516 return info
->Description
;
2520 const wxLanguageInfo
*wxLocale::FindLanguageInfo(const wxString
& locale
)
2522 CreateLanguagesDB();
2524 const wxLanguageInfo
*infoRet
= NULL
;
2526 const size_t count
= ms_languagesDB
->GetCount();
2527 for ( size_t i
= 0; i
< count
; i
++ )
2529 const wxLanguageInfo
*info
= &ms_languagesDB
->Item(i
);
2531 if ( wxStricmp(locale
, info
->CanonicalName
) == 0 ||
2532 wxStricmp(locale
, info
->Description
) == 0 )
2534 // exact match, stop searching
2539 if ( wxStricmp(locale
, info
->CanonicalName
.BeforeFirst(_T('_'))) == 0 )
2541 // a match -- but maybe we'll find an exact one later, so continue
2544 // OTOH, maybe we had already found a language match and in this
2545 // case don't overwrite it becauce the entry for the default
2546 // country always appears first in ms_languagesDB
2555 wxString
wxLocale::GetSysName() const
2559 return wxSetlocale(LC_ALL
, NULL
);
2561 return wxEmptyString
;
2566 wxLocale::~wxLocale()
2569 wxMsgCatalog
*pTmpCat
;
2570 while ( m_pMsgCat
!= NULL
) {
2571 pTmpCat
= m_pMsgCat
;
2572 m_pMsgCat
= m_pMsgCat
->m_pNext
;
2576 // restore old locale pointer
2577 wxSetLocale(m_pOldLocale
);
2581 wxSetlocale(LC_ALL
, m_pszOldLocale
);
2583 free((wxChar
*)m_pszOldLocale
); // const_cast
2586 // get the translation of given string in current locale
2587 const wxChar
*wxLocale::GetString(const wxChar
*szOrigString
,
2588 const wxChar
*szDomain
) const
2590 return GetString(szOrigString
, szOrigString
, size_t(-1), szDomain
);
2593 const wxChar
*wxLocale::GetString(const wxChar
*szOrigString
,
2594 const wxChar
*szOrigString2
,
2596 const wxChar
*szDomain
) const
2598 if ( wxIsEmpty(szOrigString
) )
2599 return wxEmptyString
;
2601 const wxChar
*pszTrans
= NULL
;
2602 wxMsgCatalog
*pMsgCat
;
2604 if ( szDomain
!= NULL
)
2606 pMsgCat
= FindCatalog(szDomain
);
2608 // does the catalog exist?
2609 if ( pMsgCat
!= NULL
)
2610 pszTrans
= pMsgCat
->GetString(szOrigString
, n
);
2614 // search in all domains
2615 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2617 pszTrans
= pMsgCat
->GetString(szOrigString
, n
);
2618 if ( pszTrans
!= NULL
) // take the first found
2623 if ( pszTrans
== NULL
)
2626 if ( !NoTransErr::Suppress() )
2628 NoTransErr noTransErr
;
2630 wxLogTrace(TRACE_I18N
,
2631 _T("string \"%s\"[%ld] not found in %slocale '%s'."),
2632 szOrigString
, (long)n
,
2633 szDomain
? wxString::Format(_T("domain '%s' "), szDomain
).c_str()
2635 m_strLocale
.c_str());
2637 #endif // __WXDEBUG__
2639 if (n
== size_t(-1))
2640 return szOrigString
;
2642 return n
== 1 ? szOrigString
: szOrigString2
;
2648 wxString
wxLocale::GetHeaderValue( const wxChar
* szHeader
,
2649 const wxChar
* szDomain
) const
2651 if ( wxIsEmpty(szHeader
) )
2652 return wxEmptyString
;
2654 wxChar
const * pszTrans
= NULL
;
2655 wxMsgCatalog
*pMsgCat
;
2657 if ( szDomain
!= NULL
)
2659 pMsgCat
= FindCatalog(szDomain
);
2661 // does the catalog exist?
2662 if ( pMsgCat
== NULL
)
2663 return wxEmptyString
;
2665 pszTrans
= pMsgCat
->GetString(wxEmptyString
, (size_t)-1);
2669 // search in all domains
2670 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2672 pszTrans
= pMsgCat
->GetString(wxEmptyString
, (size_t)-1);
2673 if ( pszTrans
!= NULL
) // take the first found
2678 if ( wxIsEmpty(pszTrans
) )
2679 return wxEmptyString
;
2681 wxChar
const * pszFound
= wxStrstr(pszTrans
, szHeader
);
2682 if ( pszFound
== NULL
)
2683 return wxEmptyString
;
2685 pszFound
+= wxStrlen(szHeader
) + 2 /* ': ' */;
2687 // Every header is separated by \n
2689 wxChar
const * pszEndLine
= wxStrchr(pszFound
, wxT('\n'));
2690 if ( pszEndLine
== NULL
) pszEndLine
= pszFound
+ wxStrlen(pszFound
);
2693 // wxString( wxChar*, length);
2694 wxString
retVal( pszFound
, pszEndLine
- pszFound
);
2700 // find catalog by name in a linked list, return NULL if !found
2701 wxMsgCatalog
*wxLocale::FindCatalog(const wxChar
*szDomain
) const
2703 // linear search in the linked list
2704 wxMsgCatalog
*pMsgCat
;
2705 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2707 if ( wxStricmp(pMsgCat
->GetName(), szDomain
) == 0 )
2714 // check if the given catalog is loaded
2715 bool wxLocale::IsLoaded(const wxChar
*szDomain
) const
2717 return FindCatalog(szDomain
) != NULL
;
2720 // add a catalog to our linked list
2721 bool wxLocale::AddCatalog(const wxChar
*szDomain
)
2723 return AddCatalog(szDomain
, wxLANGUAGE_ENGLISH
, NULL
);
2726 // add a catalog to our linked list
2727 bool wxLocale::AddCatalog(const wxChar
*szDomain
,
2728 wxLanguage msgIdLanguage
,
2729 const wxChar
*msgIdCharset
)
2732 wxMsgCatalog
*pMsgCat
= new wxMsgCatalog
;
2734 if ( pMsgCat
->Load(m_strShort
, szDomain
, msgIdCharset
, m_bConvertEncoding
) ) {
2735 // add it to the head of the list so that in GetString it will
2736 // be searched before the catalogs added earlier
2737 pMsgCat
->m_pNext
= m_pMsgCat
;
2738 m_pMsgCat
= pMsgCat
;
2743 // don't add it because it couldn't be loaded anyway
2746 // It is OK to not load catalog if the msgid language and m_language match,
2747 // in which case we can directly display the texts embedded in program's
2749 if (m_language
== msgIdLanguage
)
2752 // If there's no exact match, we may still get partial match where the
2753 // (basic) language is same, but the country differs. For example, it's
2754 // permitted to use en_US strings from sources even if m_language is en_GB:
2755 const wxLanguageInfo
*msgIdLangInfo
= GetLanguageInfo(msgIdLanguage
);
2756 if ( msgIdLangInfo
&&
2757 msgIdLangInfo
->CanonicalName
.Mid(0, 2) == m_strShort
.Mid(0, 2) )
2766 // ----------------------------------------------------------------------------
2767 // accessors for locale-dependent data
2768 // ----------------------------------------------------------------------------
2773 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory
WXUNUSED(cat
))
2778 buffer
[0] = wxT('\0');
2781 case wxLOCALE_DECIMAL_POINT
:
2782 count
= ::GetLocaleInfo(LOCALE_USER_DEFAULT
, LOCALE_SDECIMAL
, buffer
, 256);
2789 case wxSYS_LIST_SEPARATOR
:
2790 count
= ::GetLocaleInfo(LOCALE_USER_DEFAULT
, LOCALE_SLIST
, buffer
, 256);
2796 case wxSYS_LEADING_ZERO
: // 0 means no leading zero, 1 means leading zero
2797 count
= ::GetLocaleInfo(LOCALE_USER_DEFAULT
, LOCALE_ILZERO
, buffer
, 256);
2805 wxFAIL_MSG(wxT("Unknown System String !"));
2813 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory cat
)
2815 struct lconv
*locale_info
= localeconv();
2818 case wxLOCALE_CAT_NUMBER
:
2821 case wxLOCALE_THOUSANDS_SEP
:
2822 return wxString(locale_info
->thousands_sep
,
2824 case wxLOCALE_DECIMAL_POINT
:
2825 return wxString(locale_info
->decimal_point
,
2828 return wxEmptyString
;
2830 case wxLOCALE_CAT_MONEY
:
2833 case wxLOCALE_THOUSANDS_SEP
:
2834 return wxString(locale_info
->mon_thousands_sep
,
2836 case wxLOCALE_DECIMAL_POINT
:
2837 return wxString(locale_info
->mon_decimal_point
,
2840 return wxEmptyString
;
2843 return wxEmptyString
;
2847 #endif // __WXMSW__/!__WXMSW__
2849 // ----------------------------------------------------------------------------
2850 // global functions and variables
2851 // ----------------------------------------------------------------------------
2853 // retrieve/change current locale
2854 // ------------------------------
2856 // the current locale object
2857 static wxLocale
*g_pLocale
= NULL
;
2859 wxLocale
*wxGetLocale()
2864 wxLocale
*wxSetLocale(wxLocale
*pLocale
)
2866 wxLocale
*pOld
= g_pLocale
;
2867 g_pLocale
= pLocale
;
2873 // ----------------------------------------------------------------------------
2874 // wxLocale module (for lazy destruction of languagesDB)
2875 // ----------------------------------------------------------------------------
2877 class wxLocaleModule
: public wxModule
2879 DECLARE_DYNAMIC_CLASS(wxLocaleModule
)
2882 bool OnInit() { return true; }
2883 void OnExit() { wxLocale::DestroyLanguagesDB(); }
2886 IMPLEMENT_DYNAMIC_CLASS(wxLocaleModule
, wxModule
)
2890 // ----------------------------------------------------------------------------
2891 // default languages table & initialization
2892 // ----------------------------------------------------------------------------
2896 // --- --- --- generated code begins here --- --- ---
2898 // This table is generated by misc/languages/genlang.py
2899 // When making changes, please put them into misc/languages/langtabl.txt
2901 #if !defined(__WIN32__) || defined(__WXMICROWIN__)
2903 #define SETWINLANG(info,lang,sublang)
2907 #define SETWINLANG(info,lang,sublang) \
2908 info.WinLang = lang, info.WinSublang = sublang;
2910 #ifndef LANG_AFRIKAANS
2911 #define LANG_AFRIKAANS (0)
2913 #ifndef LANG_ALBANIAN
2914 #define LANG_ALBANIAN (0)
2917 #define LANG_ARABIC (0)
2919 #ifndef LANG_ARMENIAN
2920 #define LANG_ARMENIAN (0)
2922 #ifndef LANG_ASSAMESE
2923 #define LANG_ASSAMESE (0)
2926 #define LANG_AZERI (0)
2929 #define LANG_BASQUE (0)
2931 #ifndef LANG_BELARUSIAN
2932 #define LANG_BELARUSIAN (0)
2934 #ifndef LANG_BENGALI
2935 #define LANG_BENGALI (0)
2937 #ifndef LANG_BULGARIAN
2938 #define LANG_BULGARIAN (0)
2940 #ifndef LANG_CATALAN
2941 #define LANG_CATALAN (0)
2943 #ifndef LANG_CHINESE
2944 #define LANG_CHINESE (0)
2946 #ifndef LANG_CROATIAN
2947 #define LANG_CROATIAN (0)
2950 #define LANG_CZECH (0)
2953 #define LANG_DANISH (0)
2956 #define LANG_DUTCH (0)
2958 #ifndef LANG_ENGLISH
2959 #define LANG_ENGLISH (0)
2961 #ifndef LANG_ESTONIAN
2962 #define LANG_ESTONIAN (0)
2964 #ifndef LANG_FAEROESE
2965 #define LANG_FAEROESE (0)
2968 #define LANG_FARSI (0)
2970 #ifndef LANG_FINNISH
2971 #define LANG_FINNISH (0)
2974 #define LANG_FRENCH (0)
2976 #ifndef LANG_GEORGIAN
2977 #define LANG_GEORGIAN (0)
2980 #define LANG_GERMAN (0)
2983 #define LANG_GREEK (0)
2985 #ifndef LANG_GUJARATI
2986 #define LANG_GUJARATI (0)
2989 #define LANG_HEBREW (0)
2992 #define LANG_HINDI (0)
2994 #ifndef LANG_HUNGARIAN
2995 #define LANG_HUNGARIAN (0)
2997 #ifndef LANG_ICELANDIC
2998 #define LANG_ICELANDIC (0)
3000 #ifndef LANG_INDONESIAN
3001 #define LANG_INDONESIAN (0)
3003 #ifndef LANG_ITALIAN
3004 #define LANG_ITALIAN (0)
3006 #ifndef LANG_JAPANESE
3007 #define LANG_JAPANESE (0)
3009 #ifndef LANG_KANNADA
3010 #define LANG_KANNADA (0)
3012 #ifndef LANG_KASHMIRI
3013 #define LANG_KASHMIRI (0)
3016 #define LANG_KAZAK (0)
3018 #ifndef LANG_KONKANI
3019 #define LANG_KONKANI (0)
3022 #define LANG_KOREAN (0)
3024 #ifndef LANG_LATVIAN
3025 #define LANG_LATVIAN (0)
3027 #ifndef LANG_LITHUANIAN
3028 #define LANG_LITHUANIAN (0)
3030 #ifndef LANG_MACEDONIAN
3031 #define LANG_MACEDONIAN (0)
3034 #define LANG_MALAY (0)
3036 #ifndef LANG_MALAYALAM
3037 #define LANG_MALAYALAM (0)
3039 #ifndef LANG_MANIPURI
3040 #define LANG_MANIPURI (0)
3042 #ifndef LANG_MARATHI
3043 #define LANG_MARATHI (0)
3046 #define LANG_NEPALI (0)
3048 #ifndef LANG_NORWEGIAN
3049 #define LANG_NORWEGIAN (0)
3052 #define LANG_ORIYA (0)
3055 #define LANG_POLISH (0)
3057 #ifndef LANG_PORTUGUESE
3058 #define LANG_PORTUGUESE (0)
3060 #ifndef LANG_PUNJABI
3061 #define LANG_PUNJABI (0)
3063 #ifndef LANG_ROMANIAN
3064 #define LANG_ROMANIAN (0)
3066 #ifndef LANG_RUSSIAN
3067 #define LANG_RUSSIAN (0)
3069 #ifndef LANG_SANSKRIT
3070 #define LANG_SANSKRIT (0)
3072 #ifndef LANG_SERBIAN
3073 #define LANG_SERBIAN (0)
3076 #define LANG_SINDHI (0)
3079 #define LANG_SLOVAK (0)
3081 #ifndef LANG_SLOVENIAN
3082 #define LANG_SLOVENIAN (0)
3084 #ifndef LANG_SPANISH
3085 #define LANG_SPANISH (0)
3087 #ifndef LANG_SWAHILI
3088 #define LANG_SWAHILI (0)
3090 #ifndef LANG_SWEDISH
3091 #define LANG_SWEDISH (0)
3094 #define LANG_TAMIL (0)
3097 #define LANG_TATAR (0)
3100 #define LANG_TELUGU (0)
3103 #define LANG_THAI (0)
3105 #ifndef LANG_TURKISH
3106 #define LANG_TURKISH (0)
3108 #ifndef LANG_UKRAINIAN
3109 #define LANG_UKRAINIAN (0)
3112 #define LANG_URDU (0)
3115 #define LANG_UZBEK (0)
3117 #ifndef LANG_VIETNAMESE
3118 #define LANG_VIETNAMESE (0)
3120 #ifndef SUBLANG_ARABIC_ALGERIA
3121 #define SUBLANG_ARABIC_ALGERIA SUBLANG_DEFAULT
3123 #ifndef SUBLANG_ARABIC_BAHRAIN
3124 #define SUBLANG_ARABIC_BAHRAIN SUBLANG_DEFAULT
3126 #ifndef SUBLANG_ARABIC_EGYPT
3127 #define SUBLANG_ARABIC_EGYPT SUBLANG_DEFAULT
3129 #ifndef SUBLANG_ARABIC_IRAQ
3130 #define SUBLANG_ARABIC_IRAQ SUBLANG_DEFAULT
3132 #ifndef SUBLANG_ARABIC_JORDAN
3133 #define SUBLANG_ARABIC_JORDAN SUBLANG_DEFAULT
3135 #ifndef SUBLANG_ARABIC_KUWAIT
3136 #define SUBLANG_ARABIC_KUWAIT SUBLANG_DEFAULT
3138 #ifndef SUBLANG_ARABIC_LEBANON
3139 #define SUBLANG_ARABIC_LEBANON SUBLANG_DEFAULT
3141 #ifndef SUBLANG_ARABIC_LIBYA
3142 #define SUBLANG_ARABIC_LIBYA SUBLANG_DEFAULT
3144 #ifndef SUBLANG_ARABIC_MOROCCO
3145 #define SUBLANG_ARABIC_MOROCCO SUBLANG_DEFAULT
3147 #ifndef SUBLANG_ARABIC_OMAN
3148 #define SUBLANG_ARABIC_OMAN SUBLANG_DEFAULT
3150 #ifndef SUBLANG_ARABIC_QATAR
3151 #define SUBLANG_ARABIC_QATAR SUBLANG_DEFAULT
3153 #ifndef SUBLANG_ARABIC_SAUDI_ARABIA
3154 #define SUBLANG_ARABIC_SAUDI_ARABIA SUBLANG_DEFAULT
3156 #ifndef SUBLANG_ARABIC_SYRIA
3157 #define SUBLANG_ARABIC_SYRIA SUBLANG_DEFAULT
3159 #ifndef SUBLANG_ARABIC_TUNISIA
3160 #define SUBLANG_ARABIC_TUNISIA SUBLANG_DEFAULT
3162 #ifndef SUBLANG_ARABIC_UAE
3163 #define SUBLANG_ARABIC_UAE SUBLANG_DEFAULT
3165 #ifndef SUBLANG_ARABIC_YEMEN
3166 #define SUBLANG_ARABIC_YEMEN SUBLANG_DEFAULT
3168 #ifndef SUBLANG_AZERI_CYRILLIC
3169 #define SUBLANG_AZERI_CYRILLIC SUBLANG_DEFAULT
3171 #ifndef SUBLANG_AZERI_LATIN
3172 #define SUBLANG_AZERI_LATIN SUBLANG_DEFAULT
3174 #ifndef SUBLANG_CHINESE_SIMPLIFIED
3175 #define SUBLANG_CHINESE_SIMPLIFIED SUBLANG_DEFAULT
3177 #ifndef SUBLANG_CHINESE_TRADITIONAL
3178 #define SUBLANG_CHINESE_TRADITIONAL SUBLANG_DEFAULT
3180 #ifndef SUBLANG_CHINESE_HONGKONG
3181 #define SUBLANG_CHINESE_HONGKONG SUBLANG_DEFAULT
3183 #ifndef SUBLANG_CHINESE_MACAU
3184 #define SUBLANG_CHINESE_MACAU SUBLANG_DEFAULT
3186 #ifndef SUBLANG_CHINESE_SINGAPORE
3187 #define SUBLANG_CHINESE_SINGAPORE SUBLANG_DEFAULT
3189 #ifndef SUBLANG_DUTCH
3190 #define SUBLANG_DUTCH SUBLANG_DEFAULT
3192 #ifndef SUBLANG_DUTCH_BELGIAN
3193 #define SUBLANG_DUTCH_BELGIAN SUBLANG_DEFAULT
3195 #ifndef SUBLANG_ENGLISH_UK
3196 #define SUBLANG_ENGLISH_UK SUBLANG_DEFAULT
3198 #ifndef SUBLANG_ENGLISH_US
3199 #define SUBLANG_ENGLISH_US SUBLANG_DEFAULT
3201 #ifndef SUBLANG_ENGLISH_AUS
3202 #define SUBLANG_ENGLISH_AUS SUBLANG_DEFAULT
3204 #ifndef SUBLANG_ENGLISH_BELIZE
3205 #define SUBLANG_ENGLISH_BELIZE SUBLANG_DEFAULT
3207 #ifndef SUBLANG_ENGLISH_CAN
3208 #define SUBLANG_ENGLISH_CAN SUBLANG_DEFAULT
3210 #ifndef SUBLANG_ENGLISH_CARIBBEAN
3211 #define SUBLANG_ENGLISH_CARIBBEAN SUBLANG_DEFAULT
3213 #ifndef SUBLANG_ENGLISH_EIRE
3214 #define SUBLANG_ENGLISH_EIRE SUBLANG_DEFAULT
3216 #ifndef SUBLANG_ENGLISH_JAMAICA
3217 #define SUBLANG_ENGLISH_JAMAICA SUBLANG_DEFAULT
3219 #ifndef SUBLANG_ENGLISH_NZ
3220 #define SUBLANG_ENGLISH_NZ SUBLANG_DEFAULT
3222 #ifndef SUBLANG_ENGLISH_PHILIPPINES
3223 #define SUBLANG_ENGLISH_PHILIPPINES SUBLANG_DEFAULT
3225 #ifndef SUBLANG_ENGLISH_SOUTH_AFRICA
3226 #define SUBLANG_ENGLISH_SOUTH_AFRICA SUBLANG_DEFAULT
3228 #ifndef SUBLANG_ENGLISH_TRINIDAD
3229 #define SUBLANG_ENGLISH_TRINIDAD SUBLANG_DEFAULT
3231 #ifndef SUBLANG_ENGLISH_ZIMBABWE
3232 #define SUBLANG_ENGLISH_ZIMBABWE SUBLANG_DEFAULT
3234 #ifndef SUBLANG_FRENCH
3235 #define SUBLANG_FRENCH SUBLANG_DEFAULT
3237 #ifndef SUBLANG_FRENCH_BELGIAN
3238 #define SUBLANG_FRENCH_BELGIAN SUBLANG_DEFAULT
3240 #ifndef SUBLANG_FRENCH_CANADIAN
3241 #define SUBLANG_FRENCH_CANADIAN SUBLANG_DEFAULT
3243 #ifndef SUBLANG_FRENCH_LUXEMBOURG
3244 #define SUBLANG_FRENCH_LUXEMBOURG SUBLANG_DEFAULT
3246 #ifndef SUBLANG_FRENCH_MONACO
3247 #define SUBLANG_FRENCH_MONACO SUBLANG_DEFAULT
3249 #ifndef SUBLANG_FRENCH_SWISS
3250 #define SUBLANG_FRENCH_SWISS SUBLANG_DEFAULT
3252 #ifndef SUBLANG_GERMAN
3253 #define SUBLANG_GERMAN SUBLANG_DEFAULT
3255 #ifndef SUBLANG_GERMAN_AUSTRIAN
3256 #define SUBLANG_GERMAN_AUSTRIAN SUBLANG_DEFAULT
3258 #ifndef SUBLANG_GERMAN_LIECHTENSTEIN
3259 #define SUBLANG_GERMAN_LIECHTENSTEIN SUBLANG_DEFAULT
3261 #ifndef SUBLANG_GERMAN_LUXEMBOURG
3262 #define SUBLANG_GERMAN_LUXEMBOURG SUBLANG_DEFAULT
3264 #ifndef SUBLANG_GERMAN_SWISS
3265 #define SUBLANG_GERMAN_SWISS SUBLANG_DEFAULT
3267 #ifndef SUBLANG_ITALIAN
3268 #define SUBLANG_ITALIAN SUBLANG_DEFAULT
3270 #ifndef SUBLANG_ITALIAN_SWISS
3271 #define SUBLANG_ITALIAN_SWISS SUBLANG_DEFAULT
3273 #ifndef SUBLANG_KASHMIRI_INDIA
3274 #define SUBLANG_KASHMIRI_INDIA SUBLANG_DEFAULT
3276 #ifndef SUBLANG_KOREAN
3277 #define SUBLANG_KOREAN SUBLANG_DEFAULT
3279 #ifndef SUBLANG_LITHUANIAN
3280 #define SUBLANG_LITHUANIAN SUBLANG_DEFAULT
3282 #ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM
3283 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM SUBLANG_DEFAULT
3285 #ifndef SUBLANG_MALAY_MALAYSIA
3286 #define SUBLANG_MALAY_MALAYSIA SUBLANG_DEFAULT
3288 #ifndef SUBLANG_NEPALI_INDIA
3289 #define SUBLANG_NEPALI_INDIA SUBLANG_DEFAULT
3291 #ifndef SUBLANG_NORWEGIAN_BOKMAL
3292 #define SUBLANG_NORWEGIAN_BOKMAL SUBLANG_DEFAULT
3294 #ifndef SUBLANG_NORWEGIAN_NYNORSK
3295 #define SUBLANG_NORWEGIAN_NYNORSK SUBLANG_DEFAULT
3297 #ifndef SUBLANG_PORTUGUESE
3298 #define SUBLANG_PORTUGUESE SUBLANG_DEFAULT
3300 #ifndef SUBLANG_PORTUGUESE_BRAZILIAN
3301 #define SUBLANG_PORTUGUESE_BRAZILIAN SUBLANG_DEFAULT
3303 #ifndef SUBLANG_SERBIAN_CYRILLIC
3304 #define SUBLANG_SERBIAN_CYRILLIC SUBLANG_DEFAULT
3306 #ifndef SUBLANG_SERBIAN_LATIN
3307 #define SUBLANG_SERBIAN_LATIN SUBLANG_DEFAULT
3309 #ifndef SUBLANG_SPANISH
3310 #define SUBLANG_SPANISH SUBLANG_DEFAULT
3312 #ifndef SUBLANG_SPANISH_ARGENTINA
3313 #define SUBLANG_SPANISH_ARGENTINA SUBLANG_DEFAULT
3315 #ifndef SUBLANG_SPANISH_BOLIVIA
3316 #define SUBLANG_SPANISH_BOLIVIA SUBLANG_DEFAULT
3318 #ifndef SUBLANG_SPANISH_CHILE
3319 #define SUBLANG_SPANISH_CHILE SUBLANG_DEFAULT
3321 #ifndef SUBLANG_SPANISH_COLOMBIA
3322 #define SUBLANG_SPANISH_COLOMBIA SUBLANG_DEFAULT
3324 #ifndef SUBLANG_SPANISH_COSTA_RICA
3325 #define SUBLANG_SPANISH_COSTA_RICA SUBLANG_DEFAULT
3327 #ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC
3328 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC SUBLANG_DEFAULT
3330 #ifndef SUBLANG_SPANISH_ECUADOR
3331 #define SUBLANG_SPANISH_ECUADOR SUBLANG_DEFAULT
3333 #ifndef SUBLANG_SPANISH_EL_SALVADOR
3334 #define SUBLANG_SPANISH_EL_SALVADOR SUBLANG_DEFAULT
3336 #ifndef SUBLANG_SPANISH_GUATEMALA
3337 #define SUBLANG_SPANISH_GUATEMALA SUBLANG_DEFAULT
3339 #ifndef SUBLANG_SPANISH_HONDURAS
3340 #define SUBLANG_SPANISH_HONDURAS SUBLANG_DEFAULT
3342 #ifndef SUBLANG_SPANISH_MEXICAN
3343 #define SUBLANG_SPANISH_MEXICAN SUBLANG_DEFAULT
3345 #ifndef SUBLANG_SPANISH_MODERN
3346 #define SUBLANG_SPANISH_MODERN SUBLANG_DEFAULT
3348 #ifndef SUBLANG_SPANISH_NICARAGUA
3349 #define SUBLANG_SPANISH_NICARAGUA SUBLANG_DEFAULT
3351 #ifndef SUBLANG_SPANISH_PANAMA
3352 #define SUBLANG_SPANISH_PANAMA SUBLANG_DEFAULT
3354 #ifndef SUBLANG_SPANISH_PARAGUAY
3355 #define SUBLANG_SPANISH_PARAGUAY SUBLANG_DEFAULT
3357 #ifndef SUBLANG_SPANISH_PERU
3358 #define SUBLANG_SPANISH_PERU SUBLANG_DEFAULT
3360 #ifndef SUBLANG_SPANISH_PUERTO_RICO
3361 #define SUBLANG_SPANISH_PUERTO_RICO SUBLANG_DEFAULT
3363 #ifndef SUBLANG_SPANISH_URUGUAY
3364 #define SUBLANG_SPANISH_URUGUAY SUBLANG_DEFAULT
3366 #ifndef SUBLANG_SPANISH_VENEZUELA
3367 #define SUBLANG_SPANISH_VENEZUELA SUBLANG_DEFAULT
3369 #ifndef SUBLANG_SWEDISH
3370 #define SUBLANG_SWEDISH SUBLANG_DEFAULT
3372 #ifndef SUBLANG_SWEDISH_FINLAND
3373 #define SUBLANG_SWEDISH_FINLAND SUBLANG_DEFAULT
3375 #ifndef SUBLANG_URDU_INDIA
3376 #define SUBLANG_URDU_INDIA SUBLANG_DEFAULT
3378 #ifndef SUBLANG_URDU_PAKISTAN
3379 #define SUBLANG_URDU_PAKISTAN SUBLANG_DEFAULT
3381 #ifndef SUBLANG_UZBEK_CYRILLIC
3382 #define SUBLANG_UZBEK_CYRILLIC SUBLANG_DEFAULT
3384 #ifndef SUBLANG_UZBEK_LATIN
3385 #define SUBLANG_UZBEK_LATIN SUBLANG_DEFAULT
3391 #define LNG(wxlang, canonical, winlang, winsublang, desc) \
3392 info.Language = wxlang; \
3393 info.CanonicalName = wxT(canonical); \
3394 info.Description = wxT(desc); \
3395 SETWINLANG(info, winlang, winsublang) \
3398 void wxLocale::InitLanguagesDB()
3400 wxLanguageInfo info
;
3401 wxStringTokenizer tkn
;
3403 LNG(wxLANGUAGE_ABKHAZIAN
, "ab" , 0 , 0 , "Abkhazian")
3404 LNG(wxLANGUAGE_AFAR
, "aa" , 0 , 0 , "Afar")
3405 LNG(wxLANGUAGE_AFRIKAANS
, "af_ZA", LANG_AFRIKAANS
, SUBLANG_DEFAULT
, "Afrikaans")
3406 LNG(wxLANGUAGE_ALBANIAN
, "sq_AL", LANG_ALBANIAN
, SUBLANG_DEFAULT
, "Albanian")
3407 LNG(wxLANGUAGE_AMHARIC
, "am" , 0 , 0 , "Amharic")
3408 LNG(wxLANGUAGE_ARABIC
, "ar" , LANG_ARABIC
, SUBLANG_DEFAULT
, "Arabic")
3409 LNG(wxLANGUAGE_ARABIC_ALGERIA
, "ar_DZ", LANG_ARABIC
, SUBLANG_ARABIC_ALGERIA
, "Arabic (Algeria)")
3410 LNG(wxLANGUAGE_ARABIC_BAHRAIN
, "ar_BH", LANG_ARABIC
, SUBLANG_ARABIC_BAHRAIN
, "Arabic (Bahrain)")
3411 LNG(wxLANGUAGE_ARABIC_EGYPT
, "ar_EG", LANG_ARABIC
, SUBLANG_ARABIC_EGYPT
, "Arabic (Egypt)")
3412 LNG(wxLANGUAGE_ARABIC_IRAQ
, "ar_IQ", LANG_ARABIC
, SUBLANG_ARABIC_IRAQ
, "Arabic (Iraq)")
3413 LNG(wxLANGUAGE_ARABIC_JORDAN
, "ar_JO", LANG_ARABIC
, SUBLANG_ARABIC_JORDAN
, "Arabic (Jordan)")
3414 LNG(wxLANGUAGE_ARABIC_KUWAIT
, "ar_KW", LANG_ARABIC
, SUBLANG_ARABIC_KUWAIT
, "Arabic (Kuwait)")
3415 LNG(wxLANGUAGE_ARABIC_LEBANON
, "ar_LB", LANG_ARABIC
, SUBLANG_ARABIC_LEBANON
, "Arabic (Lebanon)")
3416 LNG(wxLANGUAGE_ARABIC_LIBYA
, "ar_LY", LANG_ARABIC
, SUBLANG_ARABIC_LIBYA
, "Arabic (Libya)")
3417 LNG(wxLANGUAGE_ARABIC_MOROCCO
, "ar_MA", LANG_ARABIC
, SUBLANG_ARABIC_MOROCCO
, "Arabic (Morocco)")
3418 LNG(wxLANGUAGE_ARABIC_OMAN
, "ar_OM", LANG_ARABIC
, SUBLANG_ARABIC_OMAN
, "Arabic (Oman)")
3419 LNG(wxLANGUAGE_ARABIC_QATAR
, "ar_QA", LANG_ARABIC
, SUBLANG_ARABIC_QATAR
, "Arabic (Qatar)")
3420 LNG(wxLANGUAGE_ARABIC_SAUDI_ARABIA
, "ar_SA", LANG_ARABIC
, SUBLANG_ARABIC_SAUDI_ARABIA
, "Arabic (Saudi Arabia)")
3421 LNG(wxLANGUAGE_ARABIC_SUDAN
, "ar_SD", 0 , 0 , "Arabic (Sudan)")
3422 LNG(wxLANGUAGE_ARABIC_SYRIA
, "ar_SY", LANG_ARABIC
, SUBLANG_ARABIC_SYRIA
, "Arabic (Syria)")
3423 LNG(wxLANGUAGE_ARABIC_TUNISIA
, "ar_TN", LANG_ARABIC
, SUBLANG_ARABIC_TUNISIA
, "Arabic (Tunisia)")
3424 LNG(wxLANGUAGE_ARABIC_UAE
, "ar_AE", LANG_ARABIC
, SUBLANG_ARABIC_UAE
, "Arabic (Uae)")
3425 LNG(wxLANGUAGE_ARABIC_YEMEN
, "ar_YE", LANG_ARABIC
, SUBLANG_ARABIC_YEMEN
, "Arabic (Yemen)")
3426 LNG(wxLANGUAGE_ARMENIAN
, "hy" , LANG_ARMENIAN
, SUBLANG_DEFAULT
, "Armenian")
3427 LNG(wxLANGUAGE_ASSAMESE
, "as" , LANG_ASSAMESE
, SUBLANG_DEFAULT
, "Assamese")
3428 LNG(wxLANGUAGE_AYMARA
, "ay" , 0 , 0 , "Aymara")
3429 LNG(wxLANGUAGE_AZERI
, "az" , LANG_AZERI
, SUBLANG_DEFAULT
, "Azeri")
3430 LNG(wxLANGUAGE_AZERI_CYRILLIC
, "az" , LANG_AZERI
, SUBLANG_AZERI_CYRILLIC
, "Azeri (Cyrillic)")
3431 LNG(wxLANGUAGE_AZERI_LATIN
, "az" , LANG_AZERI
, SUBLANG_AZERI_LATIN
, "Azeri (Latin)")
3432 LNG(wxLANGUAGE_BASHKIR
, "ba" , 0 , 0 , "Bashkir")
3433 LNG(wxLANGUAGE_BASQUE
, "eu_ES", LANG_BASQUE
, SUBLANG_DEFAULT
, "Basque")
3434 LNG(wxLANGUAGE_BELARUSIAN
, "be_BY", LANG_BELARUSIAN
, SUBLANG_DEFAULT
, "Belarusian")
3435 LNG(wxLANGUAGE_BENGALI
, "bn" , LANG_BENGALI
, SUBLANG_DEFAULT
, "Bengali")
3436 LNG(wxLANGUAGE_BHUTANI
, "dz" , 0 , 0 , "Bhutani")
3437 LNG(wxLANGUAGE_BIHARI
, "bh" , 0 , 0 , "Bihari")
3438 LNG(wxLANGUAGE_BISLAMA
, "bi" , 0 , 0 , "Bislama")
3439 LNG(wxLANGUAGE_BRETON
, "br" , 0 , 0 , "Breton")
3440 LNG(wxLANGUAGE_BULGARIAN
, "bg_BG", LANG_BULGARIAN
, SUBLANG_DEFAULT
, "Bulgarian")
3441 LNG(wxLANGUAGE_BURMESE
, "my" , 0 , 0 , "Burmese")
3442 LNG(wxLANGUAGE_CAMBODIAN
, "km" , 0 , 0 , "Cambodian")
3443 LNG(wxLANGUAGE_CATALAN
, "ca_ES", LANG_CATALAN
, SUBLANG_DEFAULT
, "Catalan")
3444 LNG(wxLANGUAGE_CHINESE
, "zh_TW", LANG_CHINESE
, SUBLANG_DEFAULT
, "Chinese")
3445 LNG(wxLANGUAGE_CHINESE_SIMPLIFIED
, "zh_CN", LANG_CHINESE
, SUBLANG_CHINESE_SIMPLIFIED
, "Chinese (Simplified)")
3446 LNG(wxLANGUAGE_CHINESE_TRADITIONAL
, "zh_TW", LANG_CHINESE
, SUBLANG_CHINESE_TRADITIONAL
, "Chinese (Traditional)")
3447 LNG(wxLANGUAGE_CHINESE_HONGKONG
, "zh_HK", LANG_CHINESE
, SUBLANG_CHINESE_HONGKONG
, "Chinese (Hongkong)")
3448 LNG(wxLANGUAGE_CHINESE_MACAU
, "zh_MO", LANG_CHINESE
, SUBLANG_CHINESE_MACAU
, "Chinese (Macau)")
3449 LNG(wxLANGUAGE_CHINESE_SINGAPORE
, "zh_SG", LANG_CHINESE
, SUBLANG_CHINESE_SINGAPORE
, "Chinese (Singapore)")
3450 LNG(wxLANGUAGE_CHINESE_TAIWAN
, "zh_TW", LANG_CHINESE
, SUBLANG_CHINESE_TRADITIONAL
, "Chinese (Taiwan)")
3451 LNG(wxLANGUAGE_CORSICAN
, "co" , 0 , 0 , "Corsican")
3452 LNG(wxLANGUAGE_CROATIAN
, "hr_HR", LANG_CROATIAN
, SUBLANG_DEFAULT
, "Croatian")
3453 LNG(wxLANGUAGE_CZECH
, "cs_CZ", LANG_CZECH
, SUBLANG_DEFAULT
, "Czech")
3454 LNG(wxLANGUAGE_DANISH
, "da_DK", LANG_DANISH
, SUBLANG_DEFAULT
, "Danish")
3455 LNG(wxLANGUAGE_DUTCH
, "nl_NL", LANG_DUTCH
, SUBLANG_DUTCH
, "Dutch")
3456 LNG(wxLANGUAGE_DUTCH_BELGIAN
, "nl_BE", LANG_DUTCH
, SUBLANG_DUTCH_BELGIAN
, "Dutch (Belgian)")
3457 LNG(wxLANGUAGE_ENGLISH
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, "English")
3458 LNG(wxLANGUAGE_ENGLISH_UK
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, "English (U.K.)")
3459 LNG(wxLANGUAGE_ENGLISH_US
, "en_US", LANG_ENGLISH
, SUBLANG_ENGLISH_US
, "English (U.S.)")
3460 LNG(wxLANGUAGE_ENGLISH_AUSTRALIA
, "en_AU", LANG_ENGLISH
, SUBLANG_ENGLISH_AUS
, "English (Australia)")
3461 LNG(wxLANGUAGE_ENGLISH_BELIZE
, "en_BZ", LANG_ENGLISH
, SUBLANG_ENGLISH_BELIZE
, "English (Belize)")
3462 LNG(wxLANGUAGE_ENGLISH_BOTSWANA
, "en_BW", 0 , 0 , "English (Botswana)")
3463 LNG(wxLANGUAGE_ENGLISH_CANADA
, "en_CA", LANG_ENGLISH
, SUBLANG_ENGLISH_CAN
, "English (Canada)")
3464 LNG(wxLANGUAGE_ENGLISH_CARIBBEAN
, "en_CB", LANG_ENGLISH
, SUBLANG_ENGLISH_CARIBBEAN
, "English (Caribbean)")
3465 LNG(wxLANGUAGE_ENGLISH_DENMARK
, "en_DK", 0 , 0 , "English (Denmark)")
3466 LNG(wxLANGUAGE_ENGLISH_EIRE
, "en_IE", LANG_ENGLISH
, SUBLANG_ENGLISH_EIRE
, "English (Eire)")
3467 LNG(wxLANGUAGE_ENGLISH_JAMAICA
, "en_JM", LANG_ENGLISH
, SUBLANG_ENGLISH_JAMAICA
, "English (Jamaica)")
3468 LNG(wxLANGUAGE_ENGLISH_NEW_ZEALAND
, "en_NZ", LANG_ENGLISH
, SUBLANG_ENGLISH_NZ
, "English (New Zealand)")
3469 LNG(wxLANGUAGE_ENGLISH_PHILIPPINES
, "en_PH", LANG_ENGLISH
, SUBLANG_ENGLISH_PHILIPPINES
, "English (Philippines)")
3470 LNG(wxLANGUAGE_ENGLISH_SOUTH_AFRICA
, "en_ZA", LANG_ENGLISH
, SUBLANG_ENGLISH_SOUTH_AFRICA
, "English (South Africa)")
3471 LNG(wxLANGUAGE_ENGLISH_TRINIDAD
, "en_TT", LANG_ENGLISH
, SUBLANG_ENGLISH_TRINIDAD
, "English (Trinidad)")
3472 LNG(wxLANGUAGE_ENGLISH_ZIMBABWE
, "en_ZW", LANG_ENGLISH
, SUBLANG_ENGLISH_ZIMBABWE
, "English (Zimbabwe)")
3473 LNG(wxLANGUAGE_ESPERANTO
, "eo" , 0 , 0 , "Esperanto")
3474 LNG(wxLANGUAGE_ESTONIAN
, "et_EE", LANG_ESTONIAN
, SUBLANG_DEFAULT
, "Estonian")
3475 LNG(wxLANGUAGE_FAEROESE
, "fo_FO", LANG_FAEROESE
, SUBLANG_DEFAULT
, "Faeroese")
3476 LNG(wxLANGUAGE_FARSI
, "fa_IR", LANG_FARSI
, SUBLANG_DEFAULT
, "Farsi")
3477 LNG(wxLANGUAGE_FIJI
, "fj" , 0 , 0 , "Fiji")
3478 LNG(wxLANGUAGE_FINNISH
, "fi_FI", LANG_FINNISH
, SUBLANG_DEFAULT
, "Finnish")
3479 LNG(wxLANGUAGE_FRENCH
, "fr_FR", LANG_FRENCH
, SUBLANG_FRENCH
, "French")
3480 LNG(wxLANGUAGE_FRENCH_BELGIAN
, "fr_BE", LANG_FRENCH
, SUBLANG_FRENCH_BELGIAN
, "French (Belgian)")
3481 LNG(wxLANGUAGE_FRENCH_CANADIAN
, "fr_CA", LANG_FRENCH
, SUBLANG_FRENCH_CANADIAN
, "French (Canadian)")
3482 LNG(wxLANGUAGE_FRENCH_LUXEMBOURG
, "fr_LU", LANG_FRENCH
, SUBLANG_FRENCH_LUXEMBOURG
, "French (Luxembourg)")
3483 LNG(wxLANGUAGE_FRENCH_MONACO
, "fr_MC", LANG_FRENCH
, SUBLANG_FRENCH_MONACO
, "French (Monaco)")
3484 LNG(wxLANGUAGE_FRENCH_SWISS
, "fr_CH", LANG_FRENCH
, SUBLANG_FRENCH_SWISS
, "French (Swiss)")
3485 LNG(wxLANGUAGE_FRISIAN
, "fy" , 0 , 0 , "Frisian")
3486 LNG(wxLANGUAGE_GALICIAN
, "gl_ES", 0 , 0 , "Galician")
3487 LNG(wxLANGUAGE_GEORGIAN
, "ka" , LANG_GEORGIAN
, SUBLANG_DEFAULT
, "Georgian")
3488 LNG(wxLANGUAGE_GERMAN
, "de_DE", LANG_GERMAN
, SUBLANG_GERMAN
, "German")
3489 LNG(wxLANGUAGE_GERMAN_AUSTRIAN
, "de_AT", LANG_GERMAN
, SUBLANG_GERMAN_AUSTRIAN
, "German (Austrian)")
3490 LNG(wxLANGUAGE_GERMAN_BELGIUM
, "de_BE", 0 , 0 , "German (Belgium)")
3491 LNG(wxLANGUAGE_GERMAN_LIECHTENSTEIN
, "de_LI", LANG_GERMAN
, SUBLANG_GERMAN_LIECHTENSTEIN
, "German (Liechtenstein)")
3492 LNG(wxLANGUAGE_GERMAN_LUXEMBOURG
, "de_LU", LANG_GERMAN
, SUBLANG_GERMAN_LUXEMBOURG
, "German (Luxembourg)")
3493 LNG(wxLANGUAGE_GERMAN_SWISS
, "de_CH", LANG_GERMAN
, SUBLANG_GERMAN_SWISS
, "German (Swiss)")
3494 LNG(wxLANGUAGE_GREEK
, "el_GR", LANG_GREEK
, SUBLANG_DEFAULT
, "Greek")
3495 LNG(wxLANGUAGE_GREENLANDIC
, "kl_GL", 0 , 0 , "Greenlandic")
3496 LNG(wxLANGUAGE_GUARANI
, "gn" , 0 , 0 , "Guarani")
3497 LNG(wxLANGUAGE_GUJARATI
, "gu" , LANG_GUJARATI
, SUBLANG_DEFAULT
, "Gujarati")
3498 LNG(wxLANGUAGE_HAUSA
, "ha" , 0 , 0 , "Hausa")
3499 LNG(wxLANGUAGE_HEBREW
, "he_IL", LANG_HEBREW
, SUBLANG_DEFAULT
, "Hebrew")
3500 LNG(wxLANGUAGE_HINDI
, "hi_IN", LANG_HINDI
, SUBLANG_DEFAULT
, "Hindi")
3501 LNG(wxLANGUAGE_HUNGARIAN
, "hu_HU", LANG_HUNGARIAN
, SUBLANG_DEFAULT
, "Hungarian")
3502 LNG(wxLANGUAGE_ICELANDIC
, "is_IS", LANG_ICELANDIC
, SUBLANG_DEFAULT
, "Icelandic")
3503 LNG(wxLANGUAGE_INDONESIAN
, "id_ID", LANG_INDONESIAN
, SUBLANG_DEFAULT
, "Indonesian")
3504 LNG(wxLANGUAGE_INTERLINGUA
, "ia" , 0 , 0 , "Interlingua")
3505 LNG(wxLANGUAGE_INTERLINGUE
, "ie" , 0 , 0 , "Interlingue")
3506 LNG(wxLANGUAGE_INUKTITUT
, "iu" , 0 , 0 , "Inuktitut")
3507 LNG(wxLANGUAGE_INUPIAK
, "ik" , 0 , 0 , "Inupiak")
3508 LNG(wxLANGUAGE_IRISH
, "ga_IE", 0 , 0 , "Irish")
3509 LNG(wxLANGUAGE_ITALIAN
, "it_IT", LANG_ITALIAN
, SUBLANG_ITALIAN
, "Italian")
3510 LNG(wxLANGUAGE_ITALIAN_SWISS
, "it_CH", LANG_ITALIAN
, SUBLANG_ITALIAN_SWISS
, "Italian (Swiss)")
3511 LNG(wxLANGUAGE_JAPANESE
, "ja_JP", LANG_JAPANESE
, SUBLANG_DEFAULT
, "Japanese")
3512 LNG(wxLANGUAGE_JAVANESE
, "jw" , 0 , 0 , "Javanese")
3513 LNG(wxLANGUAGE_KANNADA
, "kn" , LANG_KANNADA
, SUBLANG_DEFAULT
, "Kannada")
3514 LNG(wxLANGUAGE_KASHMIRI
, "ks" , LANG_KASHMIRI
, SUBLANG_DEFAULT
, "Kashmiri")
3515 LNG(wxLANGUAGE_KASHMIRI_INDIA
, "ks_IN", LANG_KASHMIRI
, SUBLANG_KASHMIRI_INDIA
, "Kashmiri (India)")
3516 LNG(wxLANGUAGE_KAZAKH
, "kk" , LANG_KAZAK
, SUBLANG_DEFAULT
, "Kazakh")
3517 LNG(wxLANGUAGE_KERNEWEK
, "kw_GB", 0 , 0 , "Kernewek")
3518 LNG(wxLANGUAGE_KINYARWANDA
, "rw" , 0 , 0 , "Kinyarwanda")
3519 LNG(wxLANGUAGE_KIRGHIZ
, "ky" , 0 , 0 , "Kirghiz")
3520 LNG(wxLANGUAGE_KIRUNDI
, "rn" , 0 , 0 , "Kirundi")
3521 LNG(wxLANGUAGE_KONKANI
, "" , LANG_KONKANI
, SUBLANG_DEFAULT
, "Konkani")
3522 LNG(wxLANGUAGE_KOREAN
, "ko_KR", LANG_KOREAN
, SUBLANG_KOREAN
, "Korean")
3523 LNG(wxLANGUAGE_KURDISH
, "ku" , 0 , 0 , "Kurdish")
3524 LNG(wxLANGUAGE_LAOTHIAN
, "lo" , 0 , 0 , "Laothian")
3525 LNG(wxLANGUAGE_LATIN
, "la" , 0 , 0 , "Latin")
3526 LNG(wxLANGUAGE_LATVIAN
, "lv_LV", LANG_LATVIAN
, SUBLANG_DEFAULT
, "Latvian")
3527 LNG(wxLANGUAGE_LINGALA
, "ln" , 0 , 0 , "Lingala")
3528 LNG(wxLANGUAGE_LITHUANIAN
, "lt_LT", LANG_LITHUANIAN
, SUBLANG_LITHUANIAN
, "Lithuanian")
3529 LNG(wxLANGUAGE_MACEDONIAN
, "mk_MK", LANG_MACEDONIAN
, SUBLANG_DEFAULT
, "Macedonian")
3530 LNG(wxLANGUAGE_MALAGASY
, "mg" , 0 , 0 , "Malagasy")
3531 LNG(wxLANGUAGE_MALAY
, "ms_MY", LANG_MALAY
, SUBLANG_DEFAULT
, "Malay")
3532 LNG(wxLANGUAGE_MALAYALAM
, "ml" , LANG_MALAYALAM
, SUBLANG_DEFAULT
, "Malayalam")
3533 LNG(wxLANGUAGE_MALAY_BRUNEI_DARUSSALAM
, "ms_BN", LANG_MALAY
, SUBLANG_MALAY_BRUNEI_DARUSSALAM
, "Malay (Brunei Darussalam)")
3534 LNG(wxLANGUAGE_MALAY_MALAYSIA
, "ms_MY", LANG_MALAY
, SUBLANG_MALAY_MALAYSIA
, "Malay (Malaysia)")
3535 LNG(wxLANGUAGE_MALTESE
, "mt_MT", 0 , 0 , "Maltese")
3536 LNG(wxLANGUAGE_MANIPURI
, "" , LANG_MANIPURI
, SUBLANG_DEFAULT
, "Manipuri")
3537 LNG(wxLANGUAGE_MAORI
, "mi" , 0 , 0 , "Maori")
3538 LNG(wxLANGUAGE_MARATHI
, "mr_IN", LANG_MARATHI
, SUBLANG_DEFAULT
, "Marathi")
3539 LNG(wxLANGUAGE_MOLDAVIAN
, "mo" , 0 , 0 , "Moldavian")
3540 LNG(wxLANGUAGE_MONGOLIAN
, "mn" , 0 , 0 , "Mongolian")
3541 LNG(wxLANGUAGE_NAURU
, "na" , 0 , 0 , "Nauru")
3542 LNG(wxLANGUAGE_NEPALI
, "ne" , LANG_NEPALI
, SUBLANG_DEFAULT
, "Nepali")
3543 LNG(wxLANGUAGE_NEPALI_INDIA
, "ne_IN", LANG_NEPALI
, SUBLANG_NEPALI_INDIA
, "Nepali (India)")
3544 LNG(wxLANGUAGE_NORWEGIAN_BOKMAL
, "nb_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_BOKMAL
, "Norwegian (Bokmal)")
3545 LNG(wxLANGUAGE_NORWEGIAN_NYNORSK
, "nn_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_NYNORSK
, "Norwegian (Nynorsk)")
3546 LNG(wxLANGUAGE_OCCITAN
, "oc" , 0 , 0 , "Occitan")
3547 LNG(wxLANGUAGE_ORIYA
, "or" , LANG_ORIYA
, SUBLANG_DEFAULT
, "Oriya")
3548 LNG(wxLANGUAGE_OROMO
, "om" , 0 , 0 , "(Afan) Oromo")
3549 LNG(wxLANGUAGE_PASHTO
, "ps" , 0 , 0 , "Pashto, Pushto")
3550 LNG(wxLANGUAGE_POLISH
, "pl_PL", LANG_POLISH
, SUBLANG_DEFAULT
, "Polish")
3551 LNG(wxLANGUAGE_PORTUGUESE
, "pt_PT", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE
, "Portuguese")
3552 LNG(wxLANGUAGE_PORTUGUESE_BRAZILIAN
, "pt_BR", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE_BRAZILIAN
, "Portuguese (Brazilian)")
3553 LNG(wxLANGUAGE_PUNJABI
, "pa" , LANG_PUNJABI
, SUBLANG_DEFAULT
, "Punjabi")
3554 LNG(wxLANGUAGE_QUECHUA
, "qu" , 0 , 0 , "Quechua")
3555 LNG(wxLANGUAGE_RHAETO_ROMANCE
, "rm" , 0 , 0 , "Rhaeto-Romance")
3556 LNG(wxLANGUAGE_ROMANIAN
, "ro_RO", LANG_ROMANIAN
, SUBLANG_DEFAULT
, "Romanian")
3557 LNG(wxLANGUAGE_RUSSIAN
, "ru_RU", LANG_RUSSIAN
, SUBLANG_DEFAULT
, "Russian")
3558 LNG(wxLANGUAGE_RUSSIAN_UKRAINE
, "ru_UA", 0 , 0 , "Russian (Ukraine)")
3559 LNG(wxLANGUAGE_SAMOAN
, "sm" , 0 , 0 , "Samoan")
3560 LNG(wxLANGUAGE_SANGHO
, "sg" , 0 , 0 , "Sangho")
3561 LNG(wxLANGUAGE_SANSKRIT
, "sa" , LANG_SANSKRIT
, SUBLANG_DEFAULT
, "Sanskrit")
3562 LNG(wxLANGUAGE_SCOTS_GAELIC
, "gd" , 0 , 0 , "Scots Gaelic")
3563 LNG(wxLANGUAGE_SERBIAN_CYRILLIC
, "sr_YU", LANG_SERBIAN
, SUBLANG_SERBIAN_CYRILLIC
, "Serbian (Cyrillic)")
3564 LNG(wxLANGUAGE_SERBIAN_LATIN
, "sr_YU", LANG_SERBIAN
, SUBLANG_SERBIAN_LATIN
, "Serbian (Latin)")
3565 LNG(wxLANGUAGE_SERBO_CROATIAN
, "sh" , 0 , 0 , "Serbo-Croatian")
3566 LNG(wxLANGUAGE_SESOTHO
, "st" , 0 , 0 , "Sesotho")
3567 LNG(wxLANGUAGE_SETSWANA
, "tn" , 0 , 0 , "Setswana")
3568 LNG(wxLANGUAGE_SHONA
, "sn" , 0 , 0 , "Shona")
3569 LNG(wxLANGUAGE_SINDHI
, "sd" , LANG_SINDHI
, SUBLANG_DEFAULT
, "Sindhi")
3570 LNG(wxLANGUAGE_SINHALESE
, "si" , 0 , 0 , "Sinhalese")
3571 LNG(wxLANGUAGE_SISWATI
, "ss" , 0 , 0 , "Siswati")
3572 LNG(wxLANGUAGE_SLOVAK
, "sk_SK", LANG_SLOVAK
, SUBLANG_DEFAULT
, "Slovak")
3573 LNG(wxLANGUAGE_SLOVENIAN
, "sl_SI", LANG_SLOVENIAN
, SUBLANG_DEFAULT
, "Slovenian")
3574 LNG(wxLANGUAGE_SOMALI
, "so" , 0 , 0 , "Somali")
3575 LNG(wxLANGUAGE_SPANISH
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH
, "Spanish")
3576 LNG(wxLANGUAGE_SPANISH_ARGENTINA
, "es_AR", LANG_SPANISH
, SUBLANG_SPANISH_ARGENTINA
, "Spanish (Argentina)")
3577 LNG(wxLANGUAGE_SPANISH_BOLIVIA
, "es_BO", LANG_SPANISH
, SUBLANG_SPANISH_BOLIVIA
, "Spanish (Bolivia)")
3578 LNG(wxLANGUAGE_SPANISH_CHILE
, "es_CL", LANG_SPANISH
, SUBLANG_SPANISH_CHILE
, "Spanish (Chile)")
3579 LNG(wxLANGUAGE_SPANISH_COLOMBIA
, "es_CO", LANG_SPANISH
, SUBLANG_SPANISH_COLOMBIA
, "Spanish (Colombia)")
3580 LNG(wxLANGUAGE_SPANISH_COSTA_RICA
, "es_CR", LANG_SPANISH
, SUBLANG_SPANISH_COSTA_RICA
, "Spanish (Costa Rica)")
3581 LNG(wxLANGUAGE_SPANISH_DOMINICAN_REPUBLIC
, "es_DO", LANG_SPANISH
, SUBLANG_SPANISH_DOMINICAN_REPUBLIC
, "Spanish (Dominican republic)")
3582 LNG(wxLANGUAGE_SPANISH_ECUADOR
, "es_EC", LANG_SPANISH
, SUBLANG_SPANISH_ECUADOR
, "Spanish (Ecuador)")
3583 LNG(wxLANGUAGE_SPANISH_EL_SALVADOR
, "es_SV", LANG_SPANISH
, SUBLANG_SPANISH_EL_SALVADOR
, "Spanish (El Salvador)")
3584 LNG(wxLANGUAGE_SPANISH_GUATEMALA
, "es_GT", LANG_SPANISH
, SUBLANG_SPANISH_GUATEMALA
, "Spanish (Guatemala)")
3585 LNG(wxLANGUAGE_SPANISH_HONDURAS
, "es_HN", LANG_SPANISH
, SUBLANG_SPANISH_HONDURAS
, "Spanish (Honduras)")
3586 LNG(wxLANGUAGE_SPANISH_MEXICAN
, "es_MX", LANG_SPANISH
, SUBLANG_SPANISH_MEXICAN
, "Spanish (Mexican)")
3587 LNG(wxLANGUAGE_SPANISH_MODERN
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH_MODERN
, "Spanish (Modern)")
3588 LNG(wxLANGUAGE_SPANISH_NICARAGUA
, "es_NI", LANG_SPANISH
, SUBLANG_SPANISH_NICARAGUA
, "Spanish (Nicaragua)")
3589 LNG(wxLANGUAGE_SPANISH_PANAMA
, "es_PA", LANG_SPANISH
, SUBLANG_SPANISH_PANAMA
, "Spanish (Panama)")
3590 LNG(wxLANGUAGE_SPANISH_PARAGUAY
, "es_PY", LANG_SPANISH
, SUBLANG_SPANISH_PARAGUAY
, "Spanish (Paraguay)")
3591 LNG(wxLANGUAGE_SPANISH_PERU
, "es_PE", LANG_SPANISH
, SUBLANG_SPANISH_PERU
, "Spanish (Peru)")
3592 LNG(wxLANGUAGE_SPANISH_PUERTO_RICO
, "es_PR", LANG_SPANISH
, SUBLANG_SPANISH_PUERTO_RICO
, "Spanish (Puerto Rico)")
3593 LNG(wxLANGUAGE_SPANISH_URUGUAY
, "es_UY", LANG_SPANISH
, SUBLANG_SPANISH_URUGUAY
, "Spanish (Uruguay)")
3594 LNG(wxLANGUAGE_SPANISH_US
, "es_US", 0 , 0 , "Spanish (U.S.)")
3595 LNG(wxLANGUAGE_SPANISH_VENEZUELA
, "es_VE", LANG_SPANISH
, SUBLANG_SPANISH_VENEZUELA
, "Spanish (Venezuela)")
3596 LNG(wxLANGUAGE_SUNDANESE
, "su" , 0 , 0 , "Sundanese")
3597 LNG(wxLANGUAGE_SWAHILI
, "sw_KE", LANG_SWAHILI
, SUBLANG_DEFAULT
, "Swahili")
3598 LNG(wxLANGUAGE_SWEDISH
, "sv_SE", LANG_SWEDISH
, SUBLANG_SWEDISH
, "Swedish")
3599 LNG(wxLANGUAGE_SWEDISH_FINLAND
, "sv_FI", LANG_SWEDISH
, SUBLANG_SWEDISH_FINLAND
, "Swedish (Finland)")
3600 LNG(wxLANGUAGE_TAGALOG
, "tl_PH", 0 , 0 , "Tagalog")
3601 LNG(wxLANGUAGE_TAJIK
, "tg" , 0 , 0 , "Tajik")
3602 LNG(wxLANGUAGE_TAMIL
, "ta" , LANG_TAMIL
, SUBLANG_DEFAULT
, "Tamil")
3603 LNG(wxLANGUAGE_TATAR
, "tt" , LANG_TATAR
, SUBLANG_DEFAULT
, "Tatar")
3604 LNG(wxLANGUAGE_TELUGU
, "te" , LANG_TELUGU
, SUBLANG_DEFAULT
, "Telugu")
3605 LNG(wxLANGUAGE_THAI
, "th_TH", LANG_THAI
, SUBLANG_DEFAULT
, "Thai")
3606 LNG(wxLANGUAGE_TIBETAN
, "bo" , 0 , 0 , "Tibetan")
3607 LNG(wxLANGUAGE_TIGRINYA
, "ti" , 0 , 0 , "Tigrinya")
3608 LNG(wxLANGUAGE_TONGA
, "to" , 0 , 0 , "Tonga")
3609 LNG(wxLANGUAGE_TSONGA
, "ts" , 0 , 0 , "Tsonga")
3610 LNG(wxLANGUAGE_TURKISH
, "tr_TR", LANG_TURKISH
, SUBLANG_DEFAULT
, "Turkish")
3611 LNG(wxLANGUAGE_TURKMEN
, "tk" , 0 , 0 , "Turkmen")
3612 LNG(wxLANGUAGE_TWI
, "tw" , 0 , 0 , "Twi")
3613 LNG(wxLANGUAGE_UIGHUR
, "ug" , 0 , 0 , "Uighur")
3614 LNG(wxLANGUAGE_UKRAINIAN
, "uk_UA", LANG_UKRAINIAN
, SUBLANG_DEFAULT
, "Ukrainian")
3615 LNG(wxLANGUAGE_URDU
, "ur" , LANG_URDU
, SUBLANG_DEFAULT
, "Urdu")
3616 LNG(wxLANGUAGE_URDU_INDIA
, "ur_IN", LANG_URDU
, SUBLANG_URDU_INDIA
, "Urdu (India)")
3617 LNG(wxLANGUAGE_URDU_PAKISTAN
, "ur_PK", LANG_URDU
, SUBLANG_URDU_PAKISTAN
, "Urdu (Pakistan)")
3618 LNG(wxLANGUAGE_UZBEK
, "uz" , LANG_UZBEK
, SUBLANG_DEFAULT
, "Uzbek")
3619 LNG(wxLANGUAGE_UZBEK_CYRILLIC
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_CYRILLIC
, "Uzbek (Cyrillic)")
3620 LNG(wxLANGUAGE_UZBEK_LATIN
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_LATIN
, "Uzbek (Latin)")
3621 LNG(wxLANGUAGE_VIETNAMESE
, "vi_VN", LANG_VIETNAMESE
, SUBLANG_DEFAULT
, "Vietnamese")
3622 LNG(wxLANGUAGE_VOLAPUK
, "vo" , 0 , 0 , "Volapuk")
3623 LNG(wxLANGUAGE_WELSH
, "cy" , 0 , 0 , "Welsh")
3624 LNG(wxLANGUAGE_WOLOF
, "wo" , 0 , 0 , "Wolof")
3625 LNG(wxLANGUAGE_XHOSA
, "xh" , 0 , 0 , "Xhosa")
3626 LNG(wxLANGUAGE_YIDDISH
, "yi" , 0 , 0 , "Yiddish")
3627 LNG(wxLANGUAGE_YORUBA
, "yo" , 0 , 0 , "Yoruba")
3628 LNG(wxLANGUAGE_ZHUANG
, "za" , 0 , 0 , "Zhuang")
3629 LNG(wxLANGUAGE_ZULU
, "zu" , 0 , 0 , "Zulu")
3634 // --- --- --- generated code ends here --- --- ---
3636 #endif // wxUSE_INTL