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/scopedptr.h"
70 #include "wx/apptrait.h"
71 #include "wx/stdpaths.h"
72 #include "wx/hashset.h"
73 #include "wx/filesys.h"
75 #if defined(__WXOSX__)
76 #include "wx/osx/core/cfref.h"
77 #include <CoreFoundation/CFLocale.h>
78 #include <CoreFoundation/CFDateFormatter.h>
79 #include "wx/osx/core/cfstring.h"
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 // this should *not* be wxChar, this type must have exactly 8 bits!
87 typedef wxUint8 size_t8
;
88 typedef wxUint32 size_t32
;
90 // ----------------------------------------------------------------------------
92 // ----------------------------------------------------------------------------
94 // magic number identifying the .mo format file
95 const size_t32 MSGCATALOG_MAGIC
= 0x950412de;
96 const size_t32 MSGCATALOG_MAGIC_SW
= 0xde120495;
98 // the constants describing the format of ll_CC locale string
99 static const size_t LEN_LANG
= 2;
100 static const size_t LEN_SUBLANG
= 2;
101 static const size_t LEN_FULL
= LEN_LANG
+ 1 + LEN_SUBLANG
; // 1 for '_'
103 #define TRACE_I18N wxS("i18n")
105 // ----------------------------------------------------------------------------
107 // ----------------------------------------------------------------------------
109 static wxLocale
*wxSetLocale(wxLocale
*pLocale
);
114 // get just the language part
115 inline wxString
ExtractLang(const wxString
& langFull
)
117 return langFull
.Left(LEN_LANG
);
120 // helper functions of GetSystemLanguage()
123 // get everything else (including the leading '_')
124 inline wxString
ExtractNotLang(const wxString
& langFull
)
126 return langFull
.Mid(LEN_LANG
);
131 } // anonymous namespace
133 // ----------------------------------------------------------------------------
134 // Plural forms parser
135 // ----------------------------------------------------------------------------
141 LogicalOrExpression '?' Expression ':' Expression
145 LogicalAndExpression "||" LogicalOrExpression // to (a || b) || c
148 LogicalAndExpression:
149 EqualityExpression "&&" LogicalAndExpression // to (a && b) && c
153 RelationalExpression "==" RelationalExperession
154 RelationalExpression "!=" RelationalExperession
157 RelationalExpression:
158 MultiplicativeExpression '>' MultiplicativeExpression
159 MultiplicativeExpression '<' MultiplicativeExpression
160 MultiplicativeExpression ">=" MultiplicativeExpression
161 MultiplicativeExpression "<=" MultiplicativeExpression
162 MultiplicativeExpression
164 MultiplicativeExpression:
165 PmExpression '%' PmExpression
174 class wxPluralFormsToken
179 T_ERROR
, T_EOF
, T_NUMBER
, T_N
, T_PLURAL
, T_NPLURALS
, T_EQUAL
, T_ASSIGN
,
180 T_GREATER
, T_GREATER_OR_EQUAL
, T_LESS
, T_LESS_OR_EQUAL
,
181 T_REMINDER
, T_NOT_EQUAL
,
182 T_LOGICAL_AND
, T_LOGICAL_OR
, T_QUESTION
, T_COLON
, T_SEMICOLON
,
183 T_LEFT_BRACKET
, T_RIGHT_BRACKET
185 Type
type() const { return m_type
; }
186 void setType(Type type
) { m_type
= type
; }
189 Number
number() const { return m_number
; }
190 void setNumber(Number num
) { m_number
= num
; }
197 class wxPluralFormsScanner
200 wxPluralFormsScanner(const char* s
);
201 const wxPluralFormsToken
& token() const { return m_token
; }
202 bool nextToken(); // returns false if error
205 wxPluralFormsToken m_token
;
208 wxPluralFormsScanner::wxPluralFormsScanner(const char* s
) : m_s(s
)
213 bool wxPluralFormsScanner::nextToken()
215 wxPluralFormsToken::Type type
= wxPluralFormsToken::T_ERROR
;
216 while (isspace((unsigned char) *m_s
))
222 type
= wxPluralFormsToken::T_EOF
;
224 else if (isdigit((unsigned char) *m_s
))
226 wxPluralFormsToken::Number number
= *m_s
++ - '0';
227 while (isdigit((unsigned char) *m_s
))
229 number
= number
* 10 + (*m_s
++ - '0');
231 m_token
.setNumber(number
);
232 type
= wxPluralFormsToken::T_NUMBER
;
234 else if (isalpha((unsigned char) *m_s
))
236 const char* begin
= m_s
++;
237 while (isalnum((unsigned char) *m_s
))
241 size_t size
= m_s
- begin
;
242 if (size
== 1 && memcmp(begin
, "n", size
) == 0)
244 type
= wxPluralFormsToken::T_N
;
246 else if (size
== 6 && memcmp(begin
, "plural", size
) == 0)
248 type
= wxPluralFormsToken::T_PLURAL
;
250 else if (size
== 8 && memcmp(begin
, "nplurals", size
) == 0)
252 type
= wxPluralFormsToken::T_NPLURALS
;
255 else if (*m_s
== '=')
261 type
= wxPluralFormsToken::T_EQUAL
;
265 type
= wxPluralFormsToken::T_ASSIGN
;
268 else if (*m_s
== '>')
274 type
= wxPluralFormsToken::T_GREATER_OR_EQUAL
;
278 type
= wxPluralFormsToken::T_GREATER
;
281 else if (*m_s
== '<')
287 type
= wxPluralFormsToken::T_LESS_OR_EQUAL
;
291 type
= wxPluralFormsToken::T_LESS
;
294 else if (*m_s
== '%')
297 type
= wxPluralFormsToken::T_REMINDER
;
299 else if (*m_s
== '!' && m_s
[1] == '=')
302 type
= wxPluralFormsToken::T_NOT_EQUAL
;
304 else if (*m_s
== '&' && m_s
[1] == '&')
307 type
= wxPluralFormsToken::T_LOGICAL_AND
;
309 else if (*m_s
== '|' && m_s
[1] == '|')
312 type
= wxPluralFormsToken::T_LOGICAL_OR
;
314 else if (*m_s
== '?')
317 type
= wxPluralFormsToken::T_QUESTION
;
319 else if (*m_s
== ':')
322 type
= wxPluralFormsToken::T_COLON
;
323 } else if (*m_s
== ';') {
325 type
= wxPluralFormsToken::T_SEMICOLON
;
327 else if (*m_s
== '(')
330 type
= wxPluralFormsToken::T_LEFT_BRACKET
;
332 else if (*m_s
== ')')
335 type
= wxPluralFormsToken::T_RIGHT_BRACKET
;
337 m_token
.setType(type
);
338 return type
!= wxPluralFormsToken::T_ERROR
;
341 class wxPluralFormsNode
;
343 // NB: Can't use wxDEFINE_SCOPED_PTR_TYPE because wxPluralFormsNode is not
344 // fully defined yet:
345 class wxPluralFormsNodePtr
348 wxPluralFormsNodePtr(wxPluralFormsNode
*p
= NULL
) : m_p(p
) {}
349 ~wxPluralFormsNodePtr();
350 wxPluralFormsNode
& operator*() const { return *m_p
; }
351 wxPluralFormsNode
* operator->() const { return m_p
; }
352 wxPluralFormsNode
* get() const { return m_p
; }
353 wxPluralFormsNode
* release();
354 void reset(wxPluralFormsNode
*p
);
357 wxPluralFormsNode
*m_p
;
360 class wxPluralFormsNode
363 wxPluralFormsNode(const wxPluralFormsToken
& token
) : m_token(token
) {}
364 const wxPluralFormsToken
& token() const { return m_token
; }
365 const wxPluralFormsNode
* node(size_t i
) const
366 { return m_nodes
[i
].get(); }
367 void setNode(size_t i
, wxPluralFormsNode
* n
);
368 wxPluralFormsNode
* releaseNode(size_t i
);
369 wxPluralFormsToken::Number
evaluate(wxPluralFormsToken::Number n
) const;
372 wxPluralFormsToken m_token
;
373 wxPluralFormsNodePtr m_nodes
[3];
376 wxPluralFormsNodePtr::~wxPluralFormsNodePtr()
380 wxPluralFormsNode
* wxPluralFormsNodePtr::release()
382 wxPluralFormsNode
*p
= m_p
;
386 void wxPluralFormsNodePtr::reset(wxPluralFormsNode
*p
)
396 void wxPluralFormsNode::setNode(size_t i
, wxPluralFormsNode
* n
)
401 wxPluralFormsNode
* wxPluralFormsNode::releaseNode(size_t i
)
403 return m_nodes
[i
].release();
406 wxPluralFormsToken::Number
407 wxPluralFormsNode::evaluate(wxPluralFormsToken::Number n
) const
409 switch (token().type())
412 case wxPluralFormsToken::T_NUMBER
:
413 return token().number();
414 case wxPluralFormsToken::T_N
:
417 case wxPluralFormsToken::T_EQUAL
:
418 return node(0)->evaluate(n
) == node(1)->evaluate(n
);
419 case wxPluralFormsToken::T_NOT_EQUAL
:
420 return node(0)->evaluate(n
) != node(1)->evaluate(n
);
421 case wxPluralFormsToken::T_GREATER
:
422 return node(0)->evaluate(n
) > node(1)->evaluate(n
);
423 case wxPluralFormsToken::T_GREATER_OR_EQUAL
:
424 return node(0)->evaluate(n
) >= node(1)->evaluate(n
);
425 case wxPluralFormsToken::T_LESS
:
426 return node(0)->evaluate(n
) < node(1)->evaluate(n
);
427 case wxPluralFormsToken::T_LESS_OR_EQUAL
:
428 return node(0)->evaluate(n
) <= node(1)->evaluate(n
);
429 case wxPluralFormsToken::T_REMINDER
:
431 wxPluralFormsToken::Number number
= node(1)->evaluate(n
);
434 return node(0)->evaluate(n
) % number
;
441 case wxPluralFormsToken::T_LOGICAL_AND
:
442 return node(0)->evaluate(n
) && node(1)->evaluate(n
);
443 case wxPluralFormsToken::T_LOGICAL_OR
:
444 return node(0)->evaluate(n
) || node(1)->evaluate(n
);
446 case wxPluralFormsToken::T_QUESTION
:
447 return node(0)->evaluate(n
)
448 ? node(1)->evaluate(n
)
449 : node(2)->evaluate(n
);
456 class wxPluralFormsCalculator
459 wxPluralFormsCalculator() : m_nplurals(0), m_plural(0) {}
461 // input: number, returns msgstr index
462 int evaluate(int n
) const;
464 // input: text after "Plural-Forms:" (e.g. "nplurals=2; plural=(n != 1);"),
465 // if s == 0, creates default handler
466 // returns 0 if error
467 static wxPluralFormsCalculator
* make(const char* s
= 0);
469 ~wxPluralFormsCalculator() {}
471 void init(wxPluralFormsToken::Number nplurals
, wxPluralFormsNode
* plural
);
474 wxPluralFormsToken::Number m_nplurals
;
475 wxPluralFormsNodePtr m_plural
;
478 wxDEFINE_SCOPED_PTR_TYPE(wxPluralFormsCalculator
)
480 void wxPluralFormsCalculator::init(wxPluralFormsToken::Number nplurals
,
481 wxPluralFormsNode
* plural
)
483 m_nplurals
= nplurals
;
484 m_plural
.reset(plural
);
487 int wxPluralFormsCalculator::evaluate(int n
) const
489 if (m_plural
.get() == 0)
493 wxPluralFormsToken::Number number
= m_plural
->evaluate(n
);
494 if (number
< 0 || number
> m_nplurals
)
502 class wxPluralFormsParser
505 wxPluralFormsParser(wxPluralFormsScanner
& scanner
) : m_scanner(scanner
) {}
506 bool parse(wxPluralFormsCalculator
& rCalculator
);
509 wxPluralFormsNode
* parsePlural();
510 // stops at T_SEMICOLON, returns 0 if error
511 wxPluralFormsScanner
& m_scanner
;
512 const wxPluralFormsToken
& token() const;
515 wxPluralFormsNode
* expression();
516 wxPluralFormsNode
* logicalOrExpression();
517 wxPluralFormsNode
* logicalAndExpression();
518 wxPluralFormsNode
* equalityExpression();
519 wxPluralFormsNode
* multiplicativeExpression();
520 wxPluralFormsNode
* relationalExpression();
521 wxPluralFormsNode
* pmExpression();
524 bool wxPluralFormsParser::parse(wxPluralFormsCalculator
& rCalculator
)
526 if (token().type() != wxPluralFormsToken::T_NPLURALS
)
530 if (token().type() != wxPluralFormsToken::T_ASSIGN
)
534 if (token().type() != wxPluralFormsToken::T_NUMBER
)
536 wxPluralFormsToken::Number nplurals
= token().number();
539 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
543 if (token().type() != wxPluralFormsToken::T_PLURAL
)
547 if (token().type() != wxPluralFormsToken::T_ASSIGN
)
551 wxPluralFormsNode
* plural
= parsePlural();
554 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
558 if (token().type() != wxPluralFormsToken::T_EOF
)
560 rCalculator
.init(nplurals
, plural
);
564 wxPluralFormsNode
* wxPluralFormsParser::parsePlural()
566 wxPluralFormsNode
* p
= expression();
571 wxPluralFormsNodePtr
n(p
);
572 if (token().type() != wxPluralFormsToken::T_SEMICOLON
)
579 const wxPluralFormsToken
& wxPluralFormsParser::token() const
581 return m_scanner
.token();
584 bool wxPluralFormsParser::nextToken()
586 if (!m_scanner
.nextToken())
591 wxPluralFormsNode
* wxPluralFormsParser::expression()
593 wxPluralFormsNode
* p
= logicalOrExpression();
596 wxPluralFormsNodePtr
n(p
);
597 if (token().type() == wxPluralFormsToken::T_QUESTION
)
599 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
610 if (token().type() != wxPluralFormsToken::T_COLON
)
624 qn
->setNode(0, n
.release());
630 wxPluralFormsNode
*wxPluralFormsParser::logicalOrExpression()
632 wxPluralFormsNode
* p
= logicalAndExpression();
635 wxPluralFormsNodePtr
ln(p
);
636 if (token().type() == wxPluralFormsToken::T_LOGICAL_OR
)
638 wxPluralFormsNodePtr
un(new wxPluralFormsNode(token()));
643 p
= logicalOrExpression();
648 wxPluralFormsNodePtr
rn(p
); // right
649 if (rn
->token().type() == wxPluralFormsToken::T_LOGICAL_OR
)
651 // see logicalAndExpression comment
652 un
->setNode(0, ln
.release());
653 un
->setNode(1, rn
->releaseNode(0));
654 rn
->setNode(0, un
.release());
659 un
->setNode(0, ln
.release());
660 un
->setNode(1, rn
.release());
666 wxPluralFormsNode
* wxPluralFormsParser::logicalAndExpression()
668 wxPluralFormsNode
* p
= equalityExpression();
671 wxPluralFormsNodePtr
ln(p
); // left
672 if (token().type() == wxPluralFormsToken::T_LOGICAL_AND
)
674 wxPluralFormsNodePtr
un(new wxPluralFormsNode(token())); // up
679 p
= logicalAndExpression();
684 wxPluralFormsNodePtr
rn(p
); // right
685 if (rn
->token().type() == wxPluralFormsToken::T_LOGICAL_AND
)
687 // transform 1 && (2 && 3) -> (1 && 2) && 3
691 un
->setNode(0, ln
.release());
692 un
->setNode(1, rn
->releaseNode(0));
693 rn
->setNode(0, un
.release());
697 un
->setNode(0, ln
.release());
698 un
->setNode(1, rn
.release());
704 wxPluralFormsNode
* wxPluralFormsParser::equalityExpression()
706 wxPluralFormsNode
* p
= relationalExpression();
709 wxPluralFormsNodePtr
n(p
);
710 if (token().type() == wxPluralFormsToken::T_EQUAL
711 || token().type() == wxPluralFormsToken::T_NOT_EQUAL
)
713 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
718 p
= relationalExpression();
724 qn
->setNode(0, n
.release());
730 wxPluralFormsNode
* wxPluralFormsParser::relationalExpression()
732 wxPluralFormsNode
* p
= multiplicativeExpression();
735 wxPluralFormsNodePtr
n(p
);
736 if (token().type() == wxPluralFormsToken::T_GREATER
737 || token().type() == wxPluralFormsToken::T_LESS
738 || token().type() == wxPluralFormsToken::T_GREATER_OR_EQUAL
739 || token().type() == wxPluralFormsToken::T_LESS_OR_EQUAL
)
741 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
746 p
= multiplicativeExpression();
752 qn
->setNode(0, n
.release());
758 wxPluralFormsNode
* wxPluralFormsParser::multiplicativeExpression()
760 wxPluralFormsNode
* p
= pmExpression();
763 wxPluralFormsNodePtr
n(p
);
764 if (token().type() == wxPluralFormsToken::T_REMINDER
)
766 wxPluralFormsNodePtr
qn(new wxPluralFormsNode(token()));
777 qn
->setNode(0, n
.release());
783 wxPluralFormsNode
* wxPluralFormsParser::pmExpression()
785 wxPluralFormsNodePtr n
;
786 if (token().type() == wxPluralFormsToken::T_N
787 || token().type() == wxPluralFormsToken::T_NUMBER
)
789 n
.reset(new wxPluralFormsNode(token()));
795 else if (token().type() == wxPluralFormsToken::T_LEFT_BRACKET
) {
800 wxPluralFormsNode
* p
= expression();
806 if (token().type() != wxPluralFormsToken::T_RIGHT_BRACKET
)
822 wxPluralFormsCalculator
* wxPluralFormsCalculator::make(const char* s
)
824 wxPluralFormsCalculatorPtr
calculator(new wxPluralFormsCalculator
);
827 wxPluralFormsScanner
scanner(s
);
828 wxPluralFormsParser
p(scanner
);
829 if (!p
.parse(*calculator
))
834 return calculator
.release();
840 // ----------------------------------------------------------------------------
841 // wxMsgCatalogFile corresponds to one disk-file message catalog.
843 // This is a "low-level" class and is used only by wxMsgCatalog
844 // NOTE: for the documentation of the binary catalog (.MO) files refer to
845 // the GNU gettext manual:
846 // http://www.gnu.org/software/autoconf/manual/gettext/MO-Files.html
847 // ----------------------------------------------------------------------------
849 WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxString
, wxMessagesHash
);
851 class wxMsgCatalogFile
858 // load the catalog from disk (szDirPrefix corresponds to language)
859 bool Load(const wxString
& szDirPrefix
, const wxString
& szName
,
860 wxPluralFormsCalculatorPtr
& rPluralFormsCalculator
);
862 // fills the hash with string-translation pairs
863 bool FillHash(wxMessagesHash
& hash
,
864 const wxString
& msgIdCharset
,
865 bool convertEncoding
) const;
867 // return the charset of the strings in this catalog or empty string if
869 wxString
GetCharset() const { return m_charset
; }
872 // this implementation is binary compatible with GNU gettext() version 0.10
874 // an entry in the string table
875 struct wxMsgTableEntry
877 size_t32 nLen
; // length of the string
878 size_t32 ofsString
; // pointer to the string
881 // header of a .mo file
882 struct wxMsgCatalogHeader
884 size_t32 magic
, // offset +00: magic id
885 revision
, // +04: revision
886 numStrings
; // +08: number of strings in the file
887 size_t32 ofsOrigTable
, // +0C: start of original string table
888 ofsTransTable
; // +10: start of translated string table
889 size_t32 nHashSize
, // +14: hash table size
890 ofsHashTable
; // +18: offset of hash table start
893 // all data is stored here
894 wxMemoryBuffer m_data
;
897 size_t32 m_numStrings
; // number of strings in this domain
898 wxMsgTableEntry
*m_pOrigTable
, // pointer to original strings
899 *m_pTransTable
; // translated
901 wxString m_charset
; // from the message catalog header
904 // swap the 2 halves of 32 bit integer if needed
905 size_t32
Swap(size_t32 ui
) const
907 return m_bSwapped
? (ui
<< 24) | ((ui
& 0xff00) << 8) |
908 ((ui
>> 8) & 0xff00) | (ui
>> 24)
912 // just return the pointer to the start of the data as "char *" to
913 // facilitate doing pointer arithmetic with it
914 char *StringData() const
916 return static_cast<char *>(m_data
.GetData());
919 const char *StringAtOfs(wxMsgTableEntry
*pTable
, size_t32 n
) const
921 const wxMsgTableEntry
* const ent
= pTable
+ n
;
923 // this check could fail for a corrupt message catalog
924 size_t32 ofsString
= Swap(ent
->ofsString
);
925 if ( ofsString
+ Swap(ent
->nLen
) > m_data
.GetDataLen())
930 return StringData() + ofsString
;
933 bool m_bSwapped
; // wrong endianness?
935 wxDECLARE_NO_COPY_CLASS(wxMsgCatalogFile
);
939 // ----------------------------------------------------------------------------
940 // wxMsgCatalog corresponds to one loaded message catalog.
942 // This is a "low-level" class and is used only by wxLocale (that's why
943 // it's designed to be stored in a linked list)
944 // ----------------------------------------------------------------------------
950 wxMsgCatalog() { m_conv
= NULL
; }
954 // load the catalog from disk (szDirPrefix corresponds to language)
955 bool Load(const wxString
& dirPrefix
, const wxString
& name
,
956 const wxString
& msgIdCharset
, bool bConvertEncoding
= false);
958 // get name of the catalog
959 wxString
GetName() const { return m_name
; }
961 // get the translated string: returns NULL if not found
962 const wxString
*GetString(const wxString
& sz
, size_t n
= size_t(-1)) const;
964 // public variable pointing to the next element in a linked list (or NULL)
965 wxMsgCatalog
*m_pNext
;
968 wxMessagesHash m_messages
; // all messages in the catalog
969 wxString m_name
; // name of the domain
972 // the conversion corresponding to this catalog charset if we installed it
977 wxPluralFormsCalculatorPtr m_pluralFormsCalculator
;
980 // ----------------------------------------------------------------------------
982 // ----------------------------------------------------------------------------
984 // the list of the directories to search for message catalog files
985 static wxArrayString gs_searchPrefixes
;
987 // ============================================================================
989 // ============================================================================
991 // ----------------------------------------------------------------------------
993 // ----------------------------------------------------------------------------
997 // helper used by wxLanguageInfo::GetLocaleName() and elsewhere to determine
998 // whether the locale is Unicode-only (it is if this function returns empty
1000 static wxString
wxGetANSICodePageForLocale(LCID lcid
)
1005 if ( ::GetLocaleInfo(lcid
, LOCALE_IDEFAULTANSICODEPAGE
,
1006 buffer
, WXSIZEOF(buffer
)) > 0 )
1008 if ( buffer
[0] != _T('0') || buffer
[1] != _T('\0') )
1010 //else: this locale doesn't use ANSI code page
1016 wxUint32
wxLanguageInfo::GetLCID() const
1018 return MAKELCID(MAKELANGID(WinLang
, WinSublang
), SORT_DEFAULT
);
1021 wxString
wxLanguageInfo::GetLocaleName() const
1025 const LCID lcid
= GetLCID();
1028 buffer
[0] = _T('\0');
1029 if ( !::GetLocaleInfo(lcid
, LOCALE_SENGLANGUAGE
, buffer
, WXSIZEOF(buffer
)) )
1031 wxLogLastError(_T("GetLocaleInfo(LOCALE_SENGLANGUAGE)"));
1036 if ( ::GetLocaleInfo(lcid
, LOCALE_SENGCOUNTRY
,
1037 buffer
, WXSIZEOF(buffer
)) > 0 )
1039 locale
<< _T('_') << buffer
;
1042 const wxString cp
= wxGetANSICodePageForLocale(lcid
);
1045 locale
<< _T('.') << cp
;
1053 // ----------------------------------------------------------------------------
1054 // wxMsgCatalogFile class
1055 // ----------------------------------------------------------------------------
1057 wxMsgCatalogFile::wxMsgCatalogFile()
1061 wxMsgCatalogFile::~wxMsgCatalogFile()
1065 // return the directories to search for message catalogs under the given
1066 // prefix, separated by wxPATH_SEP
1068 wxString
GetMsgCatalogSubdirs(const wxString
& prefix
, const wxString
& lang
)
1070 // Search first in Unix-standard prefix/lang/LC_MESSAGES, then in
1071 // prefix/lang and finally in just prefix.
1073 // Note that we use LC_MESSAGES on all platforms and not just Unix, because
1074 // it doesn't cost much to look into one more directory and doing it this
1075 // way has two important benefits:
1076 // a) we don't break compatibility with wx-2.6 and older by stopping to
1077 // look in a directory where the catalogs used to be and thus silently
1078 // breaking apps after they are recompiled against the latest wx
1079 // b) it makes it possible to package app's support files in the same
1080 // way on all target platforms
1081 const wxString pathPrefix
= wxFileName(prefix
, lang
).GetFullPath();
1083 wxString searchPath
;
1084 searchPath
.reserve(4*pathPrefix
.length());
1085 searchPath
<< pathPrefix
<< wxFILE_SEP_PATH
<< "LC_MESSAGES" << wxPATH_SEP
1086 << prefix
<< wxFILE_SEP_PATH
<< wxPATH_SEP
1092 // construct the search path for the given language
1093 static wxString
GetFullSearchPath(const wxString
& lang
)
1095 // first take the entries explicitly added by the program
1096 wxArrayString paths
;
1097 paths
.reserve(gs_searchPrefixes
.size() + 1);
1099 count
= gs_searchPrefixes
.size();
1100 for ( n
= 0; n
< count
; n
++ )
1102 paths
.Add(GetMsgCatalogSubdirs(gs_searchPrefixes
[n
], lang
));
1107 // then look in the standard location
1108 const wxString stdp
= wxStandardPaths::Get().
1109 GetLocalizedResourcesDir(lang
, wxStandardPaths::ResourceCat_Messages
);
1111 if ( paths
.Index(stdp
) == wxNOT_FOUND
)
1113 #endif // wxUSE_STDPATHS
1115 // last look in default locations
1117 // LC_PATH is a standard env var containing the search path for the .mo
1119 const char *pszLcPath
= wxGetenv("LC_PATH");
1122 const wxString lcp
= GetMsgCatalogSubdirs(pszLcPath
, lang
);
1123 if ( paths
.Index(lcp
) == wxNOT_FOUND
)
1127 // also add the one from where wxWin was installed:
1128 wxString wxp
= wxGetInstallPrefix();
1131 wxp
= GetMsgCatalogSubdirs(wxp
+ wxS("/share/locale"), lang
);
1132 if ( paths
.Index(wxp
) == wxNOT_FOUND
)
1138 // finally construct the full search path
1139 wxString searchPath
;
1140 searchPath
.reserve(500);
1141 count
= paths
.size();
1142 for ( n
= 0; n
< count
; n
++ )
1144 searchPath
+= paths
[n
];
1145 if ( n
!= count
- 1 )
1146 searchPath
+= wxPATH_SEP
;
1152 // open disk file and read in it's contents
1153 bool wxMsgCatalogFile::Load(const wxString
& szDirPrefix
, const wxString
& szName
,
1154 wxPluralFormsCalculatorPtr
& rPluralFormsCalculator
)
1156 wxCHECK_MSG( szDirPrefix
.length() >= LEN_LANG
, false,
1157 "invalid language specification" );
1159 wxString searchPath
;
1162 // first look for the catalog for this language and the current locale:
1163 // notice that we don't use the system name for the locale as this would
1164 // force us to install catalogs in different locations depending on the
1165 // system but always use the canonical name
1166 wxFontEncoding encSys
= wxLocale::GetSystemEncoding();
1167 if ( encSys
!= wxFONTENCODING_SYSTEM
)
1169 wxString
fullname(szDirPrefix
);
1170 fullname
<< wxS('.') << wxFontMapperBase::GetEncodingName(encSys
);
1171 searchPath
<< GetFullSearchPath(fullname
) << wxPATH_SEP
;
1173 #endif // wxUSE_FONTMAP
1176 searchPath
+= GetFullSearchPath(szDirPrefix
);
1177 if ( szDirPrefix
.length() > LEN_LANG
&& szDirPrefix
[LEN_LANG
] == wxS('_') )
1179 // also add just base locale name: for things like "fr_BE" (Belgium
1180 // French) we should use fall back on plain "fr" if no Belgium-specific
1181 // message catalogs exist
1182 searchPath
<< wxPATH_SEP
1183 << GetFullSearchPath(ExtractLang(szDirPrefix
));
1186 wxLogTrace(TRACE_I18N
, wxS("Looking for \"%s.mo\" in search path \"%s\""),
1187 szName
, searchPath
);
1189 wxFileName
fn(szName
);
1190 fn
.SetExt(wxS("mo"));
1192 wxString strFullName
;
1193 #if wxUSE_FILESYSTEM
1194 wxFileSystem fileSys
;
1195 if ( !fileSys
.FindFileInPath(&strFullName
, searchPath
, fn
.GetFullPath()) )
1196 #else // !wxUSE_FILESYSTEM
1197 if ( !wxFindFileInPath(&strFullName
, searchPath
, fn
.GetFullPath()) )
1198 #endif // wxUSE_FILESYSTEM/!wxUSE_FILESYSTEM
1200 wxLogVerbose(_("catalog file for domain '%s' not found."), szName
);
1201 wxLogTrace(TRACE_I18N
, wxS("Catalog \"%s.mo\" not found"), szName
);
1205 // open file and read its data
1206 wxLogVerbose(_("using catalog '%s' from '%s'."), szName
, strFullName
.c_str());
1207 wxLogTrace(TRACE_I18N
, wxS("Using catalog \"%s\"."), strFullName
.c_str());
1209 #if wxUSE_FILESYSTEM
1210 wxFSFile
* const fileMsg
= fileSys
.OpenFile(strFullName
);
1214 wxInputStream
*fileStream
= fileMsg
->GetStream();
1215 m_data
.SetDataLen(0);
1217 static const size_t chunkSize
= 4096;
1218 while ( !fileStream
->Eof() ) {
1219 fileStream
->Read(m_data
.GetAppendBuf(chunkSize
), chunkSize
);
1220 m_data
.UngetAppendBuf(fileStream
->LastRead());
1224 #else // !wxUSE_FILESYSTEM
1225 wxFile
fileMsg(strFullName
);
1226 if ( !fileMsg
.IsOpened() )
1229 // get the file size (assume it is less than 4Gb...)
1230 wxFileOffset lenFile
= fileMsg
.Length();
1231 if ( lenFile
== wxInvalidOffset
)
1234 size_t nSize
= wx_truncate_cast(size_t, lenFile
);
1235 wxASSERT_MSG( nSize
== lenFile
+ size_t(0), wxS("message catalog bigger than 4GB?") );
1237 // read the whole file in memory
1238 if ( fileMsg
.Read(m_data
.GetWriteBuf(nSize
), nSize
) != lenFile
)
1241 m_data
.UngetWriteBuf(nSize
);
1242 #endif // wxUSE_FILESYSTEM/!wxUSE_FILESYSTEM
1246 bool bValid
= m_data
.GetDataLen() > sizeof(wxMsgCatalogHeader
);
1248 const wxMsgCatalogHeader
*pHeader
= (wxMsgCatalogHeader
*)m_data
.GetData();
1250 // we'll have to swap all the integers if it's true
1251 m_bSwapped
= pHeader
->magic
== MSGCATALOG_MAGIC_SW
;
1253 // check the magic number
1254 bValid
= m_bSwapped
|| pHeader
->magic
== MSGCATALOG_MAGIC
;
1258 // it's either too short or has incorrect magic number
1259 wxLogWarning(_("'%s' is not a valid message catalog."), strFullName
.c_str());
1265 m_numStrings
= Swap(pHeader
->numStrings
);
1266 m_pOrigTable
= (wxMsgTableEntry
*)(StringData() +
1267 Swap(pHeader
->ofsOrigTable
));
1268 m_pTransTable
= (wxMsgTableEntry
*)(StringData() +
1269 Swap(pHeader
->ofsTransTable
));
1271 // now parse catalog's header and try to extract catalog charset and
1272 // plural forms formula from it:
1274 const char* headerData
= StringAtOfs(m_pOrigTable
, 0);
1275 if ( headerData
&& headerData
[0] == '\0' )
1277 // Extract the charset:
1278 const char * const header
= StringAtOfs(m_pTransTable
, 0);
1280 cset
= strstr(header
, "Content-Type: text/plain; charset=");
1283 cset
+= 34; // strlen("Content-Type: text/plain; charset=")
1285 const char * const csetEnd
= strchr(cset
, '\n');
1288 m_charset
= wxString(cset
, csetEnd
- cset
);
1289 if ( m_charset
== wxS("CHARSET") )
1291 // "CHARSET" is not valid charset, but lazy translator
1296 // else: incorrectly filled Content-Type header
1298 // Extract plural forms:
1299 const char * plurals
= strstr(header
, "Plural-Forms:");
1302 plurals
+= 13; // strlen("Plural-Forms:")
1303 const char * const pluralsEnd
= strchr(plurals
, '\n');
1306 const size_t pluralsLen
= pluralsEnd
- plurals
;
1307 wxCharBuffer
buf(pluralsLen
);
1308 strncpy(buf
.data(), plurals
, pluralsLen
);
1309 wxPluralFormsCalculator
* const
1310 pCalculator
= wxPluralFormsCalculator::make(buf
);
1313 rPluralFormsCalculator
.reset(pCalculator
);
1317 wxLogVerbose(_("Failed to parse Plural-Forms: '%s'"),
1323 if ( !rPluralFormsCalculator
.get() )
1324 rPluralFormsCalculator
.reset(wxPluralFormsCalculator::make());
1327 // everything is fine
1331 bool wxMsgCatalogFile::FillHash(wxMessagesHash
& hash
,
1332 const wxString
& msgIdCharset
,
1333 bool convertEncoding
) const
1336 // this parameter doesn't make sense, we always must convert encoding in
1338 convertEncoding
= true;
1340 if ( convertEncoding
)
1342 // determine if we need any conversion at all
1343 wxFontEncoding encCat
= wxFontMapperBase::GetEncodingFromName(m_charset
);
1344 if ( encCat
== wxLocale::GetSystemEncoding() )
1346 // no need to convert
1347 convertEncoding
= false;
1350 #endif // wxUSE_UNICODE/wxUSE_FONTMAP
1353 // conversion to use to convert catalog strings to the GUI encoding
1354 wxMBConv
*inputConv
,
1355 *inputConvPtr
= NULL
; // same as inputConv but safely deleteable
1356 if ( convertEncoding
&& !m_charset
.empty() )
1359 inputConv
= new wxCSConv(m_charset
);
1361 else // no need or not possible to convert the encoding
1364 // we must somehow convert the narrow strings in the message catalog to
1365 // wide strings, so use the default conversion if we have no charset
1366 inputConv
= wxConvCurrent
;
1367 #else // !wxUSE_UNICODE
1369 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1372 // conversion to apply to msgid strings before looking them up: we only
1373 // need it if the msgids are neither in 7 bit ASCII nor in the same
1374 // encoding as the catalog
1375 wxCSConv
*sourceConv
= msgIdCharset
.empty() || (msgIdCharset
== m_charset
)
1377 : new wxCSConv(msgIdCharset
);
1380 wxASSERT_MSG( msgIdCharset
.empty(),
1381 wxS("non-ASCII msgid languages only supported if wxUSE_WCHAR_T=1") );
1383 wxEncodingConverter converter
;
1384 if ( convertEncoding
)
1386 wxFontEncoding targetEnc
= wxFONTENCODING_SYSTEM
;
1387 wxFontEncoding enc
= wxFontMapperBase::Get()->CharsetToEncoding(m_charset
, false);
1388 if ( enc
== wxFONTENCODING_SYSTEM
)
1390 convertEncoding
= false; // unknown encoding
1394 targetEnc
= wxLocale::GetSystemEncoding();
1395 if (targetEnc
== wxFONTENCODING_SYSTEM
)
1397 wxFontEncodingArray a
= wxEncodingConverter::GetPlatformEquivalents(enc
);
1399 // no conversion needed, locale uses native encoding
1400 convertEncoding
= false;
1401 if (a
.GetCount() == 0)
1402 // we don't know common equiv. under this platform
1403 convertEncoding
= false;
1408 if ( convertEncoding
)
1410 converter
.Init(enc
, targetEnc
);
1413 #endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
1414 (void)convertEncoding
; // get rid of warnings about unused parameter
1416 for (size_t32 i
= 0; i
< m_numStrings
; i
++)
1418 const char *data
= StringAtOfs(m_pOrigTable
, i
);
1420 return false; // may happen for invalid MO files
1424 msgid
= wxString(data
, *inputConv
);
1427 if ( inputConv
&& sourceConv
)
1428 msgid
= wxString(inputConv
->cMB2WC(data
), *sourceConv
);
1432 #endif // wxUSE_UNICODE
1434 data
= StringAtOfs(m_pTransTable
, i
);
1436 return false; // may happen for invalid MO files
1438 size_t length
= Swap(m_pTransTable
[i
].nLen
);
1441 while (offset
< length
)
1443 const char * const str
= data
+ offset
;
1447 msgstr
= wxString(str
, *inputConv
);
1450 msgstr
= wxString(inputConv
->cMB2WC(str
), *wxConvUI
);
1453 #else // !wxUSE_WCHAR_T
1455 if ( bConvertEncoding
)
1456 msgstr
= wxString(converter
.Convert(str
));
1460 #endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
1462 if ( !msgstr
.empty() )
1464 hash
[index
== 0 ? msgid
: msgid
+ wxChar(index
)] = msgstr
;
1468 // IMPORTANT: accesses to the 'data' pointer are valid only for
1469 // the first 'length+1' bytes (GNU specs says that the
1470 // final NUL is not counted in length); using wxStrnlen()
1471 // we make sure we don't access memory beyond the valid range
1472 // (which otherwise may happen for invalid MO files):
1473 offset
+= wxStrnlen(str
, length
- offset
) + 1;
1480 delete inputConvPtr
;
1481 #endif // wxUSE_WCHAR_T
1487 // ----------------------------------------------------------------------------
1488 // wxMsgCatalog class
1489 // ----------------------------------------------------------------------------
1492 wxMsgCatalog::~wxMsgCatalog()
1496 if ( wxConvUI
== m_conv
)
1498 // we only change wxConvUI if it points to wxConvLocal so we reset
1499 // it back to it too
1500 wxConvUI
= &wxConvLocal
;
1506 #endif // !wxUSE_UNICODE
1508 bool wxMsgCatalog::Load(const wxString
& dirPrefix
, const wxString
& name
,
1509 const wxString
& msgIdCharset
, bool bConvertEncoding
)
1511 wxMsgCatalogFile file
;
1515 if ( !file
.Load(dirPrefix
, name
, m_pluralFormsCalculator
) )
1518 if ( !file
.FillHash(m_messages
, msgIdCharset
, bConvertEncoding
) )
1522 // we should use a conversion compatible with the message catalog encoding
1523 // in the GUI if we don't convert the strings to the current conversion but
1524 // as the encoding is global, only change it once, otherwise we could get
1525 // into trouble if we use several message catalogs with different encodings
1527 // this is, of course, a hack but it at least allows the program to use
1528 // message catalogs in any encodings without asking the user to change his
1530 if ( !bConvertEncoding
&&
1531 !file
.GetCharset().empty() &&
1532 wxConvUI
== &wxConvLocal
)
1535 m_conv
= new wxCSConv(file
.GetCharset());
1537 #endif // !wxUSE_UNICODE
1542 const wxString
*wxMsgCatalog::GetString(const wxString
& str
, size_t n
) const
1545 if (n
!= size_t(-1))
1547 index
= m_pluralFormsCalculator
->evaluate(n
);
1549 wxMessagesHash::const_iterator i
;
1552 i
= m_messages
.find(wxString(str
) + wxChar(index
)); // plural
1556 i
= m_messages
.find(str
);
1559 if ( i
!= m_messages
.end() )
1567 // ----------------------------------------------------------------------------
1569 // ----------------------------------------------------------------------------
1571 #include "wx/arrimpl.cpp"
1572 WX_DECLARE_EXPORTED_OBJARRAY(wxLanguageInfo
, wxLanguageInfoArray
);
1573 WX_DEFINE_OBJARRAY(wxLanguageInfoArray
)
1575 wxLanguageInfoArray
*wxLocale::ms_languagesDB
= NULL
;
1577 /*static*/ void wxLocale::CreateLanguagesDB()
1579 if (ms_languagesDB
== NULL
)
1581 ms_languagesDB
= new wxLanguageInfoArray
;
1586 /*static*/ void wxLocale::DestroyLanguagesDB()
1588 delete ms_languagesDB
;
1589 ms_languagesDB
= NULL
;
1593 void wxLocale::DoCommonInit()
1595 m_pszOldLocale
= NULL
;
1597 m_pOldLocale
= wxSetLocale(this);
1600 m_language
= wxLANGUAGE_UNKNOWN
;
1601 m_initialized
= false;
1604 // NB: this function has (desired) side effect of changing current locale
1605 bool wxLocale::Init(const wxString
& name
,
1606 const wxString
& shortName
,
1607 const wxString
& locale
,
1609 bool bConvertEncoding
)
1611 wxASSERT_MSG( !m_initialized
,
1612 wxS("you can't call wxLocale::Init more than once") );
1614 m_initialized
= true;
1616 m_strShort
= shortName
;
1617 m_bConvertEncoding
= bConvertEncoding
;
1618 m_language
= wxLANGUAGE_UNKNOWN
;
1620 // change current locale (default: same as long name)
1621 wxString
szLocale(locale
);
1622 if ( szLocale
.empty() )
1624 // the argument to setlocale()
1625 szLocale
= shortName
;
1627 wxCHECK_MSG( !szLocale
.empty(), false,
1628 wxS("no locale to set in wxLocale::Init()") );
1631 const char *oldLocale
= wxSetlocale(LC_ALL
, szLocale
);
1633 m_pszOldLocale
= wxStrdup(oldLocale
);
1635 m_pszOldLocale
= NULL
;
1637 if ( m_pszOldLocale
== NULL
)
1638 wxLogError(_("locale '%s' can not be set."), szLocale
);
1640 // the short name will be used to look for catalog files as well,
1641 // so we need something here
1642 if ( m_strShort
.empty() ) {
1643 // FIXME I don't know how these 2 letter abbreviations are formed,
1644 // this wild guess is surely wrong
1645 if ( !szLocale
.empty() )
1647 m_strShort
+= (wxChar
)wxTolower(szLocale
[0]);
1648 if ( szLocale
.length() > 1 )
1649 m_strShort
+= (wxChar
)wxTolower(szLocale
[1]);
1653 // load the default catalog with wxWidgets standard messages
1658 bOk
= AddCatalog(wxS("wxstd"));
1660 // there may be a catalog with toolkit specific overrides, it is not
1661 // an error if this does not exist
1664 wxString
port(wxPlatformInfo::Get().GetPortIdName());
1665 if ( !port
.empty() )
1667 AddCatalog(port
.BeforeFirst(wxS('/')).MakeLower());
1676 #if defined(__UNIX__) && wxUSE_UNICODE && !defined(__WXMAC__)
1677 static const char *wxSetlocaleTryUTF8(int c
, const wxString
& lc
)
1679 const char *l
= NULL
;
1681 // NB: We prefer to set UTF-8 locale if it's possible and only fall back to
1682 // non-UTF-8 locale if it fails
1688 buf2
= buf
+ wxS(".UTF-8");
1689 l
= wxSetlocale(c
, buf2
);
1692 buf2
= buf
+ wxS(".utf-8");
1693 l
= wxSetlocale(c
, buf2
);
1697 buf2
= buf
+ wxS(".UTF8");
1698 l
= wxSetlocale(c
, buf2
);
1702 buf2
= buf
+ wxS(".utf8");
1703 l
= wxSetlocale(c
, buf2
);
1707 // if we can't set UTF-8 locale, try non-UTF-8 one:
1709 l
= wxSetlocale(c
, lc
);
1714 #define wxSetlocaleTryUTF8(c, lc) wxSetlocale(c, lc)
1717 bool wxLocale::Init(int language
, int flags
)
1721 int lang
= language
;
1722 if (lang
== wxLANGUAGE_DEFAULT
)
1724 // auto detect the language
1725 lang
= GetSystemLanguage();
1728 // We failed to detect system language, so we will use English:
1729 if (lang
== wxLANGUAGE_UNKNOWN
)
1734 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
1736 // Unknown language:
1739 wxLogError(wxS("Unknown language %i."), lang
);
1743 wxString name
= info
->Description
;
1744 wxString canonical
= info
->CanonicalName
;
1748 #if defined(__OS2__)
1749 const char *retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
1750 #elif defined(__UNIX__) && !defined(__WXMAC__)
1751 if (language
!= wxLANGUAGE_DEFAULT
)
1752 locale
= info
->CanonicalName
;
1754 const char *retloc
= wxSetlocaleTryUTF8(LC_ALL
, locale
);
1756 const wxString langOnly
= ExtractLang(locale
);
1759 // Some C libraries don't like xx_YY form and require xx only
1760 retloc
= wxSetlocaleTryUTF8(LC_ALL
, langOnly
);
1764 // some systems (e.g. FreeBSD and HP-UX) don't have xx_YY aliases but
1765 // require the full xx_YY.encoding form, so try using UTF-8 because this is
1766 // the only thing we can do generically
1768 // TODO: add encodings applicable to each language to the lang DB and try
1769 // them all in turn here
1772 const wxChar
**names
=
1773 wxFontMapperBase::GetAllEncodingNames(wxFONTENCODING_UTF8
);
1776 retloc
= wxSetlocale(LC_ALL
, locale
+ wxS('.') + *names
++);
1781 #endif // wxUSE_FONTMAP
1785 // Some C libraries (namely glibc) still use old ISO 639,
1786 // so will translate the abbrev for them
1788 if ( langOnly
== wxS("he") )
1789 localeAlt
= wxS("iw") + ExtractNotLang(locale
);
1790 else if ( langOnly
== wxS("id") )
1791 localeAlt
= wxS("in") + ExtractNotLang(locale
);
1792 else if ( langOnly
== wxS("yi") )
1793 localeAlt
= wxS("ji") + ExtractNotLang(locale
);
1794 else if ( langOnly
== wxS("nb") )
1795 localeAlt
= wxS("no_NO");
1796 else if ( langOnly
== wxS("nn") )
1797 localeAlt
= wxS("no_NY");
1799 if ( !localeAlt
.empty() )
1801 retloc
= wxSetlocaleTryUTF8(LC_ALL
, localeAlt
);
1803 retloc
= wxSetlocaleTryUTF8(LC_ALL
, ExtractLang(localeAlt
));
1811 // at least in AIX 5.2 libc is buggy and the string returned from
1812 // setlocale(LC_ALL) can't be passed back to it because it returns 6
1813 // strings (one for each locale category), i.e. for C locale we get back
1816 // this contradicts IBM own docs but this is not of much help, so just work
1817 // around it in the crudest possible manner
1818 char* p
= const_cast<char*>(wxStrchr(retloc
, ' '));
1823 #elif defined(__WIN32__)
1824 const char *retloc
= "C";
1825 if ( language
!= wxLANGUAGE_DEFAULT
)
1827 if ( info
->WinLang
== 0 )
1829 wxLogWarning(wxS("Locale '%s' not supported by OS."), name
.c_str());
1830 // retloc already set to "C"
1832 else // language supported by Windows
1834 // Windows CE doesn't have SetThreadLocale() and there doesn't seem
1835 // to be any equivalent
1837 const wxUint32 lcid
= info
->GetLCID();
1839 // change locale used by Windows functions
1840 ::SetThreadLocale(lcid
);
1843 // and also call setlocale() to change locale used by the CRT
1844 locale
= info
->GetLocaleName();
1845 if ( locale
.empty() )
1849 else // have a valid locale
1851 retloc
= wxSetlocale(LC_ALL
, locale
);
1855 else // language == wxLANGUAGE_DEFAULT
1857 retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
1860 #if wxUSE_UNICODE && (defined(__VISUALC__) || defined(__MINGW32__))
1861 // VC++ setlocale() (also used by Mingw) can't set locale to languages that
1862 // can only be written using Unicode, therefore wxSetlocale() call fails
1863 // for such languages but we don't want to report it as an error -- so that
1864 // at least message catalogs can be used.
1867 if ( wxGetANSICodePageForLocale(LOCALE_USER_DEFAULT
).empty() )
1869 // we set the locale to a Unicode-only language, don't treat the
1870 // inability of CRT to use it as an error
1874 #endif // CRT not handling Unicode-only languages
1878 #elif defined(__WXMAC__)
1879 if (lang
== wxLANGUAGE_DEFAULT
)
1880 locale
= wxEmptyString
;
1882 locale
= info
->CanonicalName
;
1884 const char *retloc
= wxSetlocale(LC_ALL
, locale
);
1888 // Some C libraries don't like xx_YY form and require xx only
1889 retloc
= wxSetlocale(LC_ALL
, ExtractLang(locale
));
1894 #define WX_NO_LOCALE_SUPPORT
1897 #ifndef WX_NO_LOCALE_SUPPORT
1900 wxLogWarning(_("Cannot set locale to language \"%s\"."), name
.c_str());
1902 // continue nevertheless and try to load at least the translations for
1906 if ( !Init(name
, canonical
, retloc
,
1907 (flags
& wxLOCALE_LOAD_DEFAULT
) != 0,
1908 (flags
& wxLOCALE_CONV_ENCODING
) != 0) )
1913 if (IsOk()) // setlocale() succeeded
1917 #endif // !WX_NO_LOCALE_SUPPORT
1922 void wxLocale::AddCatalogLookupPathPrefix(const wxString
& prefix
)
1924 if ( gs_searchPrefixes
.Index(prefix
) == wxNOT_FOUND
)
1926 gs_searchPrefixes
.Add(prefix
);
1928 //else: already have it
1931 /*static*/ int wxLocale::GetSystemLanguage()
1933 CreateLanguagesDB();
1935 // init i to avoid compiler warning
1937 count
= ms_languagesDB
->GetCount();
1939 #if defined(__UNIX__)
1940 // first get the string identifying the language from the environment
1943 wxCFRef
<CFLocaleRef
> userLocaleRef(CFLocaleCopyCurrent());
1945 // because the locale identifier (kCFLocaleIdentifier) is formatted a little bit differently, eg
1946 // az_Cyrl_AZ@calendar=buddhist;currency=JPY we just recreate the base info as expected by wx here
1948 wxCFStringRef
str(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleLanguageCode
)));
1949 langFull
= str
.AsString()+"_";
1950 str
.reset(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleCountryCode
)));
1951 langFull
+= str
.AsString();
1953 if (!wxGetEnv(wxS("LC_ALL"), &langFull
) &&
1954 !wxGetEnv(wxS("LC_MESSAGES"), &langFull
) &&
1955 !wxGetEnv(wxS("LANG"), &langFull
))
1957 // no language specified, treat it as English
1958 return wxLANGUAGE_ENGLISH_US
;
1961 if ( langFull
== wxS("C") || langFull
== wxS("POSIX") )
1963 // default C locale is English too
1964 return wxLANGUAGE_ENGLISH_US
;
1968 // the language string has the following form
1970 // lang[_LANG][.encoding][@modifier]
1972 // (see environ(5) in the Open Unix specification)
1974 // where lang is the primary language, LANG is a sublang/territory,
1975 // encoding is the charset to use and modifier "allows the user to select
1976 // a specific instance of localization data within a single category"
1978 // for example, the following strings are valid:
1983 // de_DE.iso88591@euro
1985 // for now we don't use the encoding, although we probably should (doing
1986 // translations of the msg catalogs on the fly as required) (TODO)
1988 // we need the modified for languages like Valencian: ca_ES@valencia
1989 // though, remember it
1991 size_t posModifier
= langFull
.find_first_of(wxS("@"));
1992 if ( posModifier
!= wxString::npos
)
1993 modifier
= langFull
.Mid(posModifier
);
1995 size_t posEndLang
= langFull
.find_first_of(wxS("@."));
1996 if ( posEndLang
!= wxString::npos
)
1998 langFull
.Truncate(posEndLang
);
2001 // in addition to the format above, we also can have full language names
2002 // in LANG env var - for example, SuSE is known to use LANG="german" - so
2005 // do we have just the language (or sublang too)?
2006 bool justLang
= langFull
.length() == LEN_LANG
;
2008 (langFull
.length() == LEN_FULL
&& langFull
[LEN_LANG
] == wxS('_')) )
2010 // 0. Make sure the lang is according to latest ISO 639
2011 // (this is necessary because glibc uses iw and in instead
2012 // of he and id respectively).
2014 // the language itself (second part is the dialect/sublang)
2015 wxString langOrig
= ExtractLang(langFull
);
2018 if ( langOrig
== wxS("iw"))
2020 else if (langOrig
== wxS("in"))
2022 else if (langOrig
== wxS("ji"))
2024 else if (langOrig
== wxS("no_NO"))
2025 lang
= wxS("nb_NO");
2026 else if (langOrig
== wxS("no_NY"))
2027 lang
= wxS("nn_NO");
2028 else if (langOrig
== wxS("no"))
2029 lang
= wxS("nb_NO");
2033 // did we change it?
2034 if ( lang
!= langOrig
)
2036 langFull
= lang
+ ExtractNotLang(langFull
);
2039 // 1. Try to find the language either as is:
2040 // a) With modifier if set
2041 if ( !modifier
.empty() )
2043 wxString langFullWithModifier
= langFull
+ modifier
;
2044 for ( i
= 0; i
< count
; i
++ )
2046 if ( ms_languagesDB
->Item(i
).CanonicalName
== langFullWithModifier
)
2051 // b) Without modifier
2052 if ( modifier
.empty() || i
== count
)
2054 for ( i
= 0; i
< count
; i
++ )
2056 if ( ms_languagesDB
->Item(i
).CanonicalName
== langFull
)
2061 // 2. If langFull is of the form xx_YY, try to find xx:
2062 if ( i
== count
&& !justLang
)
2064 for ( i
= 0; i
< count
; i
++ )
2066 if ( ms_languagesDB
->Item(i
).CanonicalName
== lang
)
2073 // 3. If langFull is of the form xx, try to find any xx_YY record:
2074 if ( i
== count
&& justLang
)
2076 for ( i
= 0; i
< count
; i
++ )
2078 if ( ExtractLang(ms_languagesDB
->Item(i
).CanonicalName
)
2086 else // not standard format
2088 // try to find the name in verbose description
2089 for ( i
= 0; i
< count
; i
++ )
2091 if (ms_languagesDB
->Item(i
).Description
.CmpNoCase(langFull
) == 0)
2097 #elif defined(__WIN32__)
2098 LCID lcid
= GetUserDefaultLCID();
2101 wxUint32 lang
= PRIMARYLANGID(LANGIDFROMLCID(lcid
));
2102 wxUint32 sublang
= SUBLANGID(LANGIDFROMLCID(lcid
));
2104 for ( i
= 0; i
< count
; i
++ )
2106 if (ms_languagesDB
->Item(i
).WinLang
== lang
&&
2107 ms_languagesDB
->Item(i
).WinSublang
== sublang
)
2113 //else: leave wxlang == wxLANGUAGE_UNKNOWN
2114 #endif // Unix/Win32
2118 // we did find a matching entry, use it
2119 return ms_languagesDB
->Item(i
).Language
;
2122 // no info about this language in the database
2123 return wxLANGUAGE_UNKNOWN
;
2126 // ----------------------------------------------------------------------------
2128 // ----------------------------------------------------------------------------
2130 // this is a bit strange as under Windows we get the encoding name using its
2131 // numeric value and under Unix we do it the other way round, but this just
2132 // reflects the way different systems provide the encoding info
2135 wxString
wxLocale::GetSystemEncodingName()
2139 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
2140 // FIXME: what is the error return value for GetACP()?
2141 UINT codepage
= ::GetACP();
2142 encname
.Printf(wxS("windows-%u"), codepage
);
2143 #elif defined(__WXMAC__)
2144 // default is just empty string, this resolves to the default system
2146 #elif defined(__UNIX_LIKE__)
2148 #if defined(HAVE_LANGINFO_H) && defined(CODESET)
2149 // GNU libc provides current character set this way (this conforms
2151 char *oldLocale
= strdup(setlocale(LC_CTYPE
, NULL
));
2152 setlocale(LC_CTYPE
, "");
2153 const char *alang
= nl_langinfo(CODESET
);
2154 setlocale(LC_CTYPE
, oldLocale
);
2159 encname
= wxString::FromAscii( alang
);
2161 else // nl_langinfo() failed
2162 #endif // HAVE_LANGINFO_H
2164 // if we can't get at the character set directly, try to see if it's in
2165 // the environment variables (in most cases this won't work, but I was
2167 char *lang
= getenv( "LC_ALL");
2168 char *dot
= lang
? strchr(lang
, '.') : NULL
;
2171 lang
= getenv( "LC_CTYPE" );
2173 dot
= strchr(lang
, '.' );
2177 lang
= getenv( "LANG");
2179 dot
= strchr(lang
, '.');
2184 encname
= wxString::FromAscii( dot
+1 );
2187 #endif // Win32/Unix
2193 wxFontEncoding
wxLocale::GetSystemEncoding()
2195 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
2196 UINT codepage
= ::GetACP();
2198 // wxWidgets only knows about CP1250-1257, 874, 932, 936, 949, 950
2199 if ( codepage
>= 1250 && codepage
<= 1257 )
2201 return (wxFontEncoding
)(wxFONTENCODING_CP1250
+ codepage
- 1250);
2204 if ( codepage
== 874 )
2206 return wxFONTENCODING_CP874
;
2209 if ( codepage
== 932 )
2211 return wxFONTENCODING_CP932
;
2214 if ( codepage
== 936 )
2216 return wxFONTENCODING_CP936
;
2219 if ( codepage
== 949 )
2221 return wxFONTENCODING_CP949
;
2224 if ( codepage
== 950 )
2226 return wxFONTENCODING_CP950
;
2228 #elif defined(__WXMAC__)
2229 CFStringEncoding encoding
= 0 ;
2230 encoding
= CFStringGetSystemEncoding() ;
2231 return wxMacGetFontEncFromSystemEnc( encoding
) ;
2232 #elif defined(__UNIX_LIKE__) && wxUSE_FONTMAP
2233 const wxString encname
= GetSystemEncodingName();
2234 if ( !encname
.empty() )
2236 wxFontEncoding enc
= wxFontMapperBase::GetEncodingFromName(encname
);
2238 // on some modern Linux systems (RedHat 8) the default system locale
2239 // is UTF8 -- but it isn't supported by wxGTK1 in ANSI build at all so
2240 // don't even try to use it in this case
2241 #if !wxUSE_UNICODE && \
2242 ((defined(__WXGTK__) && !defined(__WXGTK20__)) || defined(__WXMOTIF__))
2243 if ( enc
== wxFONTENCODING_UTF8
)
2245 // the most similar supported encoding...
2246 enc
= wxFONTENCODING_ISO8859_1
;
2248 #endif // !wxUSE_UNICODE
2250 // GetEncodingFromName() returns wxFONTENCODING_DEFAULT for C locale
2251 // (a.k.a. US-ASCII) which is arguably a bug but keep it like this for
2252 // backwards compatibility and just take care to not return
2253 // wxFONTENCODING_DEFAULT from here as this surely doesn't make sense
2254 if ( enc
== wxFONTENCODING_DEFAULT
)
2256 // we don't have wxFONTENCODING_ASCII, so use the closest one
2257 return wxFONTENCODING_ISO8859_1
;
2260 if ( enc
!= wxFONTENCODING_MAX
)
2264 //else: return wxFONTENCODING_SYSTEM below
2266 #endif // Win32/Unix
2268 return wxFONTENCODING_SYSTEM
;
2272 void wxLocale::AddLanguage(const wxLanguageInfo
& info
)
2274 CreateLanguagesDB();
2275 ms_languagesDB
->Add(info
);
2279 const wxLanguageInfo
*wxLocale::GetLanguageInfo(int lang
)
2281 CreateLanguagesDB();
2283 // calling GetLanguageInfo(wxLANGUAGE_DEFAULT) is a natural thing to do, so
2285 if ( lang
== wxLANGUAGE_DEFAULT
)
2286 lang
= GetSystemLanguage();
2288 const size_t count
= ms_languagesDB
->GetCount();
2289 for ( size_t i
= 0; i
< count
; i
++ )
2291 if ( ms_languagesDB
->Item(i
).Language
== lang
)
2293 // We need to create a temporary here in order to make this work with BCC in final build mode
2294 wxLanguageInfo
*ptr
= &ms_languagesDB
->Item(i
);
2303 wxString
wxLocale::GetLanguageName(int lang
)
2305 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
2307 return wxEmptyString
;
2309 return info
->Description
;
2313 const wxLanguageInfo
*wxLocale::FindLanguageInfo(const wxString
& locale
)
2315 CreateLanguagesDB();
2317 const wxLanguageInfo
*infoRet
= NULL
;
2319 const size_t count
= ms_languagesDB
->GetCount();
2320 for ( size_t i
= 0; i
< count
; i
++ )
2322 const wxLanguageInfo
*info
= &ms_languagesDB
->Item(i
);
2324 if ( wxStricmp(locale
, info
->CanonicalName
) == 0 ||
2325 wxStricmp(locale
, info
->Description
) == 0 )
2327 // exact match, stop searching
2332 if ( wxStricmp(locale
, info
->CanonicalName
.BeforeFirst(wxS('_'))) == 0 )
2334 // a match -- but maybe we'll find an exact one later, so continue
2337 // OTOH, maybe we had already found a language match and in this
2338 // case don't overwrite it because the entry for the default
2339 // country always appears first in ms_languagesDB
2348 wxString
wxLocale::GetSysName() const
2350 return wxSetlocale(LC_ALL
, NULL
);
2354 wxLocale::~wxLocale()
2357 wxMsgCatalog
*pTmpCat
;
2358 while ( m_pMsgCat
!= NULL
) {
2359 pTmpCat
= m_pMsgCat
;
2360 m_pMsgCat
= m_pMsgCat
->m_pNext
;
2364 // restore old locale pointer
2365 wxSetLocale(m_pOldLocale
);
2367 wxSetlocale(LC_ALL
, m_pszOldLocale
);
2368 free((wxChar
*)m_pszOldLocale
); // const_cast
2371 // get the translation of given string in current locale
2372 const wxString
& wxLocale::GetString(const wxString
& origString
,
2373 const wxString
& domain
) const
2375 return GetString(origString
, origString
, size_t(-1), domain
);
2378 const wxString
& wxLocale::GetString(const wxString
& origString
,
2379 const wxString
& origString2
,
2381 const wxString
& domain
) const
2383 if ( origString
.empty() )
2384 return GetUntranslatedString(origString
);
2386 const wxString
*trans
= NULL
;
2387 wxMsgCatalog
*pMsgCat
;
2389 if ( !domain
.empty() )
2391 pMsgCat
= FindCatalog(domain
);
2393 // does the catalog exist?
2394 if ( pMsgCat
!= NULL
)
2395 trans
= pMsgCat
->GetString(origString
, n
);
2399 // search in all domains
2400 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2402 trans
= pMsgCat
->GetString(origString
, n
);
2403 if ( trans
!= NULL
) // take the first found
2408 if ( trans
== NULL
)
2410 wxLogTrace(TRACE_I18N
,
2411 wxS("string \"%s\"[%ld] not found in %slocale '%s'."),
2412 origString
, (long)n
,
2413 wxString::Format(wxS("domain '%s' "), domain
).c_str(),
2414 m_strLocale
.c_str());
2416 if (n
== size_t(-1))
2417 return GetUntranslatedString(origString
);
2419 return GetUntranslatedString(n
== 1 ? origString
: origString2
);
2425 WX_DECLARE_HASH_SET(wxString
, wxStringHash
, wxStringEqual
,
2426 wxLocaleUntranslatedStrings
);
2429 const wxString
& wxLocale::GetUntranslatedString(const wxString
& str
)
2431 static wxLocaleUntranslatedStrings s_strings
;
2433 wxLocaleUntranslatedStrings::iterator i
= s_strings
.find(str
);
2434 if ( i
== s_strings
.end() )
2435 return *s_strings
.insert(str
).first
;
2440 wxString
wxLocale::GetHeaderValue(const wxString
& header
,
2441 const wxString
& domain
) const
2443 if ( header
.empty() )
2444 return wxEmptyString
;
2446 const wxString
*trans
= NULL
;
2447 wxMsgCatalog
*pMsgCat
;
2449 if ( !domain
.empty() )
2451 pMsgCat
= FindCatalog(domain
);
2453 // does the catalog exist?
2454 if ( pMsgCat
== NULL
)
2455 return wxEmptyString
;
2457 trans
= pMsgCat
->GetString(wxEmptyString
, (size_t)-1);
2461 // search in all domains
2462 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2464 trans
= pMsgCat
->GetString(wxEmptyString
, (size_t)-1);
2465 if ( trans
!= NULL
) // take the first found
2470 if ( !trans
|| trans
->empty() )
2471 return wxEmptyString
;
2473 size_t found
= trans
->find(header
);
2474 if ( found
== wxString::npos
)
2475 return wxEmptyString
;
2477 found
+= header
.length() + 2 /* ': ' */;
2479 // Every header is separated by \n
2481 size_t endLine
= trans
->find(wxS('\n'), found
);
2482 size_t len
= (endLine
== wxString::npos
) ?
2483 wxString::npos
: (endLine
- found
);
2485 return trans
->substr(found
, len
);
2489 // find catalog by name in a linked list, return NULL if !found
2490 wxMsgCatalog
*wxLocale::FindCatalog(const wxString
& domain
) const
2492 // linear search in the linked list
2493 wxMsgCatalog
*pMsgCat
;
2494 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
)
2496 if ( pMsgCat
->GetName() == domain
)
2503 // check if the given locale is provided by OS and C run time
2505 bool wxLocale::IsAvailable(int lang
)
2507 const wxLanguageInfo
*info
= wxLocale::GetLanguageInfo(lang
);
2508 wxCHECK_MSG( info
, false, wxS("invalid language") );
2510 #if defined(__WIN32__)
2511 if ( !info
->WinLang
)
2514 if ( !::IsValidLocale(info
->GetLCID(), LCID_INSTALLED
) )
2517 #elif defined(__UNIX__)
2519 // Test if setting the locale works, then set it back.
2520 const char *oldLocale
= wxSetlocale(LC_ALL
, "");
2521 const char *tmp
= wxSetlocaleTryUTF8(LC_ALL
, info
->CanonicalName
);
2524 // Some C libraries don't like xx_YY form and require xx only
2525 tmp
= wxSetlocaleTryUTF8(LC_ALL
, ExtractLang(info
->CanonicalName
));
2529 // restore the original locale
2530 wxSetlocale(LC_ALL
, oldLocale
);
2536 // check if the given catalog is loaded
2537 bool wxLocale::IsLoaded(const wxString
& szDomain
) const
2539 return FindCatalog(szDomain
) != NULL
;
2542 // add a catalog to our linked list
2543 bool wxLocale::AddCatalog(const wxString
& szDomain
)
2545 return AddCatalog(szDomain
, wxLANGUAGE_ENGLISH_US
, wxEmptyString
);
2548 // add a catalog to our linked list
2549 bool wxLocale::AddCatalog(const wxString
& szDomain
,
2550 wxLanguage msgIdLanguage
,
2551 const wxString
& msgIdCharset
)
2554 wxCHECK_MSG( !m_strShort
.empty(), false, "must initialize catalog first" );
2557 // It is OK to not load catalog if the msgid language and m_language match,
2558 // in which case we can directly display the texts embedded in program's
2560 if ( msgIdLanguage
== m_language
)
2564 wxMsgCatalog
*pMsgCat
= new wxMsgCatalog
;
2566 if ( pMsgCat
->Load(m_strShort
, szDomain
, msgIdCharset
, m_bConvertEncoding
) )
2568 // add it to the head of the list so that in GetString it will
2569 // be searched before the catalogs added earlier
2570 pMsgCat
->m_pNext
= m_pMsgCat
;
2571 m_pMsgCat
= pMsgCat
;
2576 // don't add it because it couldn't be loaded anyway
2580 // If there's no exact match, we may still get partial match where the
2581 // (basic) language is same, but the country differs. For example, it's
2582 // permitted to use en_US strings from sources even if m_language is en_GB:
2583 const wxLanguageInfo
*msgIdLangInfo
= GetLanguageInfo(msgIdLanguage
);
2584 if ( msgIdLangInfo
&&
2585 ExtractLang(msgIdLangInfo
->CanonicalName
) == ExtractLang(m_strShort
) )
2593 // ----------------------------------------------------------------------------
2594 // accessors for locale-dependent data
2595 // ----------------------------------------------------------------------------
2597 #if defined(__WXMSW__) || defined(__WXOSX__)
2602 // This function translates from Unicode date formats described at
2604 // http://unicode.org/reports/tr35/tr35-6.html#Date_Format_Patterns
2606 // to strftime()-like syntax. This translation is not lossless but we try to do
2609 static wxString
TranslateFromUnicodeFormat(const wxString
& fmt
)
2612 fmtWX
.reserve(fmt
.length());
2615 size_t lastCount
= 0;
2617 const char* formatchars
=
2625 for ( wxString::const_iterator p
= fmt
.begin(); /* end handled inside */; ++p
)
2627 if ( p
!= fmt
.end() )
2635 const wxUniChar ch
= (*p
).GetValue();
2636 if ( ch
.IsAscii() && strchr(formatchars
, ch
) )
2638 // these characters come in groups, start counting them
2645 // interpret any special characters we collected so far
2651 switch ( lastCount
)
2655 // these two are the same as we don't distinguish
2656 // between 1 and 2 digits for days
2669 wxFAIL_MSG( "too many 'd's" );
2674 switch ( lastCount
)
2683 wxFAIL_MSG( "wrong number of 'D's" );
2687 switch ( lastCount
)
2695 wxFAIL_MSG( "wrong number of 'w's" );
2699 switch ( lastCount
)
2714 wxFAIL_MSG( "wrong number of 'E's" );
2719 switch ( lastCount
)
2723 // as for 'd' and 'dd' above
2736 wxFAIL_MSG( "too many 'M's" );
2741 switch ( lastCount
)
2753 wxFAIL_MSG( "wrong number of 'y's" );
2758 switch ( lastCount
)
2766 wxFAIL_MSG( "wrong number of 'H's" );
2771 switch ( lastCount
)
2779 wxFAIL_MSG( "wrong number of 'h's" );
2784 switch ( lastCount
)
2792 wxFAIL_MSG( "wrong number of 'm's" );
2797 switch ( lastCount
)
2805 wxFAIL_MSG( "wrong number of 's's" );
2810 // strftime() doesn't have era string,
2811 // ignore this format
2812 wxASSERT_MSG( lastCount
<= 2, "too many 'g's" );
2822 switch ( lastCount
)
2830 wxFAIL_MSG( "too many 't's" );
2835 wxFAIL_MSG( "unreachable" );
2842 if ( p
== fmt
.end() )
2845 // not a special character so must be just a separator, treat as is
2846 if ( *p
== _T('%') )
2848 // this one needs to be escaped
2858 } // anonymous namespace
2860 #endif // __WXMSW__ || __WXOSX__
2862 #if defined(__WXMSW__)
2867 LCTYPE
GetLCTYPEFormatFromLocalInfo(wxLocaleInfo index
)
2871 case wxLOCALE_SHORT_DATE_FMT
:
2872 return LOCALE_SSHORTDATE
;
2874 case wxLOCALE_LONG_DATE_FMT
:
2875 return LOCALE_SLONGDATE
;
2877 case wxLOCALE_TIME_FMT
:
2878 return LOCALE_STIMEFORMAT
;
2881 wxFAIL_MSG( "no matching LCTYPE" );
2887 } // anonymous namespace
2890 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory
WXUNUSED(cat
))
2892 wxUint32 lcid
= LOCALE_USER_DEFAULT
;
2893 if ( wxGetLocale() )
2895 const wxLanguageInfo
* const
2896 info
= GetLanguageInfo(wxGetLocale()->GetLanguage());
2898 lcid
= info
->GetLCID();
2908 case wxLOCALE_DECIMAL_POINT
:
2909 if ( ::GetLocaleInfo(lcid
, LOCALE_SDECIMAL
, buf
, WXSIZEOF(buf
)) )
2913 case wxLOCALE_SHORT_DATE_FMT
:
2914 case wxLOCALE_LONG_DATE_FMT
:
2915 case wxLOCALE_TIME_FMT
:
2916 if ( ::GetLocaleInfo(lcid
, GetLCTYPEFormatFromLocalInfo(index
),
2917 buf
, WXSIZEOF(buf
)) )
2919 return TranslateFromUnicodeFormat(buf
);
2923 case wxLOCALE_DATE_TIME_FMT
:
2924 // there doesn't seem to be any specific setting for this, so just
2925 // combine date and time ones
2927 // we use the short date because this is what "%c" uses by default
2928 // ("%#c" uses long date but we have no way to specify the
2929 // alternate representation here)
2931 const wxString datefmt
= GetInfo(wxLOCALE_SHORT_DATE_FMT
);
2932 if ( datefmt
.empty() )
2935 const wxString timefmt
= GetInfo(wxLOCALE_TIME_FMT
);
2936 if ( timefmt
.empty() )
2939 str
<< datefmt
<< ' ' << timefmt
;
2944 wxFAIL_MSG( "unknown wxLocaleInfo" );
2950 #elif defined(__WXOSX__)
2953 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory
WXUNUSED(cat
))
2955 CFLocaleRef userLocaleRefRaw
;
2956 if ( wxGetLocale() )
2958 userLocaleRefRaw
= CFLocaleCreate
2960 kCFAllocatorDefault
,
2961 wxCFStringRef(wxGetLocale()->GetCanonicalName())
2964 else // no current locale, use the default one
2966 userLocaleRefRaw
= CFLocaleCopyCurrent();
2969 wxCFRef
<CFLocaleRef
> userLocaleRef(userLocaleRefRaw
);
2971 CFStringRef cfstr
= 0;
2974 case wxLOCALE_THOUSANDS_SEP
:
2975 cfstr
= (CFStringRef
) CFLocaleGetValue(userLocaleRef
, kCFLocaleGroupingSeparator
);
2978 case wxLOCALE_DECIMAL_POINT
:
2979 cfstr
= (CFStringRef
) CFLocaleGetValue(userLocaleRef
, kCFLocaleDecimalSeparator
);
2982 case wxLOCALE_SHORT_DATE_FMT
:
2983 case wxLOCALE_LONG_DATE_FMT
:
2984 case wxLOCALE_DATE_TIME_FMT
:
2985 case wxLOCALE_TIME_FMT
:
2987 CFDateFormatterStyle dateStyle
= kCFDateFormatterNoStyle
;
2988 CFDateFormatterStyle timeStyle
= kCFDateFormatterNoStyle
;
2991 case wxLOCALE_SHORT_DATE_FMT
:
2992 dateStyle
= kCFDateFormatterShortStyle
;
2994 case wxLOCALE_LONG_DATE_FMT
:
2995 dateStyle
= kCFDateFormatterFullStyle
;
2997 case wxLOCALE_DATE_TIME_FMT
:
2998 dateStyle
= kCFDateFormatterFullStyle
;
2999 timeStyle
= kCFDateFormatterMediumStyle
;
3001 case wxLOCALE_TIME_FMT
:
3002 timeStyle
= kCFDateFormatterMediumStyle
;
3005 wxFAIL_MSG( "unexpected time locale" );
3008 wxCFRef
<CFDateFormatterRef
> dateFormatter( CFDateFormatterCreate
3009 (NULL
, userLocaleRef
, dateStyle
, timeStyle
));
3010 wxCFStringRef cfs
= wxCFRetain( CFDateFormatterGetFormat(dateFormatter
));
3011 wxString format
= TranslateFromUnicodeFormat(cfs
.AsString());
3012 // we always want full years
3013 format
.Replace("%y","%Y");
3019 wxFAIL_MSG( "Unknown locale info" );
3023 wxCFStringRef
str(wxCFRetain(cfstr
));
3024 return str
.AsString();
3027 #else // !__WXMSW__ && !__WXOSX__, assume generic POSIX
3032 wxString
GetDateFormatFromLangInfo(wxLocaleInfo index
)
3034 #ifdef HAVE_LANGINFO_H
3035 // array containing parameters for nl_langinfo() indexes by offset of index
3036 // from wxLOCALE_SHORT_DATE_FMT
3037 static const nl_item items
[] =
3039 D_FMT
, D_T_FMT
, D_T_FMT
, T_FMT
,
3042 const int nlidx
= index
- wxLOCALE_SHORT_DATE_FMT
;
3043 if ( nlidx
< 0 || nlidx
>= (int)WXSIZEOF(items
) )
3045 wxFAIL_MSG( "logic error in GetInfo() code" );
3049 const wxString
fmt(nl_langinfo(items
[nlidx
]));
3051 // just return the format returned by nl_langinfo() except for long date
3052 // format which we need to recover from date/time format ourselves (but not
3053 // if we failed completely)
3054 if ( fmt
.empty() || index
!= wxLOCALE_LONG_DATE_FMT
)
3057 // this is not 100% precise but the idea is that a typical date/time format
3058 // under POSIX systems is a combination of a long date format with time one
3059 // so we should be able to get just the long date format by removing all
3060 // time-specific format specifiers
3061 static const char *timeFmtSpecs
= "HIklMpPrRsSTXzZ";
3062 static const char *timeSep
= " :./-";
3064 wxString fmtDateOnly
;
3065 const wxString::const_iterator end
= fmt
.end();
3066 wxString::const_iterator lastSep
= end
;
3067 for ( wxString::const_iterator p
= fmt
.begin(); p
!= end
; ++p
)
3069 if ( strchr(timeSep
, *p
) )
3071 if ( lastSep
== end
)
3074 // skip it for now, we'll discard it if it's followed by a time
3075 // specifier later or add it to fmtDateOnly if it is not
3080 (p
+ 1 != end
) && strchr(timeFmtSpecs
, p
[1]) )
3082 // time specified found: skip it and any preceding separators
3088 if ( lastSep
!= end
)
3090 fmtDateOnly
+= wxString(lastSep
, p
);
3098 #else // !HAVE_LANGINFO_H
3099 // no fallback, let the application deal with unavailability of
3100 // nl_langinfo() itself as there is no good way for us to do it (well, we
3101 // could try to reverse engineer the format from strftime() output but this
3102 // looks like too much trouble considering the relatively small number of
3103 // systems without nl_langinfo() still in use)
3105 #endif // HAVE_LANGINFO_H/!HAVE_LANGINFO_H
3108 } // anonymous namespace
3111 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory cat
)
3113 lconv
* const lc
= localeconv();
3119 case wxLOCALE_THOUSANDS_SEP
:
3120 if ( cat
== wxLOCALE_CAT_NUMBER
)
3121 return lc
->thousands_sep
;
3122 else if ( cat
== wxLOCALE_CAT_MONEY
)
3123 return lc
->mon_thousands_sep
;
3125 wxFAIL_MSG( "invalid wxLocaleCategory" );
3129 case wxLOCALE_DECIMAL_POINT
:
3130 if ( cat
== wxLOCALE_CAT_NUMBER
)
3131 return lc
->decimal_point
;
3132 else if ( cat
== wxLOCALE_CAT_MONEY
)
3133 return lc
->mon_decimal_point
;
3135 wxFAIL_MSG( "invalid wxLocaleCategory" );
3138 case wxLOCALE_SHORT_DATE_FMT
:
3139 case wxLOCALE_LONG_DATE_FMT
:
3140 case wxLOCALE_DATE_TIME_FMT
:
3141 case wxLOCALE_TIME_FMT
:
3142 if ( cat
!= wxLOCALE_CAT_DATE
&& cat
!= wxLOCALE_CAT_DEFAULT
)
3144 wxFAIL_MSG( "invalid wxLocaleCategory" );
3148 return GetDateFormatFromLangInfo(index
);
3152 wxFAIL_MSG( "unknown wxLocaleInfo value" );
3160 // ----------------------------------------------------------------------------
3161 // global functions and variables
3162 // ----------------------------------------------------------------------------
3164 // retrieve/change current locale
3165 // ------------------------------
3167 // the current locale object
3168 static wxLocale
*g_pLocale
= NULL
;
3170 wxLocale
*wxGetLocale()
3175 wxLocale
*wxSetLocale(wxLocale
*pLocale
)
3177 wxLocale
*pOld
= g_pLocale
;
3178 g_pLocale
= pLocale
;
3184 // ----------------------------------------------------------------------------
3185 // wxLocale module (for lazy destruction of languagesDB)
3186 // ----------------------------------------------------------------------------
3188 class wxLocaleModule
: public wxModule
3190 DECLARE_DYNAMIC_CLASS(wxLocaleModule
)
3193 bool OnInit() { return true; }
3194 void OnExit() { wxLocale::DestroyLanguagesDB(); }
3197 IMPLEMENT_DYNAMIC_CLASS(wxLocaleModule
, wxModule
)
3201 // ----------------------------------------------------------------------------
3202 // default languages table & initialization
3203 // ----------------------------------------------------------------------------
3207 // --- --- --- generated code begins here --- --- ---
3209 // This table is generated by misc/languages/genlang.py
3210 // When making changes, please put them into misc/languages/langtabl.txt
3212 #if !defined(__WIN32__) || defined(__WXMICROWIN__)
3214 #define SETWINLANG(info,lang,sublang)
3218 #define SETWINLANG(info,lang,sublang) \
3219 info.WinLang = lang, info.WinSublang = sublang;
3221 #ifndef LANG_AFRIKAANS
3222 #define LANG_AFRIKAANS (0)
3224 #ifndef LANG_ALBANIAN
3225 #define LANG_ALBANIAN (0)
3228 #define LANG_ARABIC (0)
3230 #ifndef LANG_ARMENIAN
3231 #define LANG_ARMENIAN (0)
3233 #ifndef LANG_ASSAMESE
3234 #define LANG_ASSAMESE (0)
3237 #define LANG_AZERI (0)
3240 #define LANG_BASQUE (0)
3242 #ifndef LANG_BELARUSIAN
3243 #define LANG_BELARUSIAN (0)
3245 #ifndef LANG_BENGALI
3246 #define LANG_BENGALI (0)
3248 #ifndef LANG_BULGARIAN
3249 #define LANG_BULGARIAN (0)
3251 #ifndef LANG_CATALAN
3252 #define LANG_CATALAN (0)
3254 #ifndef LANG_CHINESE
3255 #define LANG_CHINESE (0)
3257 #ifndef LANG_CROATIAN
3258 #define LANG_CROATIAN (0)
3261 #define LANG_CZECH (0)
3264 #define LANG_DANISH (0)
3267 #define LANG_DUTCH (0)
3269 #ifndef LANG_ENGLISH
3270 #define LANG_ENGLISH (0)
3272 #ifndef LANG_ESTONIAN
3273 #define LANG_ESTONIAN (0)
3275 #ifndef LANG_FAEROESE
3276 #define LANG_FAEROESE (0)
3279 #define LANG_FARSI (0)
3281 #ifndef LANG_FINNISH
3282 #define LANG_FINNISH (0)
3285 #define LANG_FRENCH (0)
3287 #ifndef LANG_GEORGIAN
3288 #define LANG_GEORGIAN (0)
3291 #define LANG_GERMAN (0)
3294 #define LANG_GREEK (0)
3296 #ifndef LANG_GUJARATI
3297 #define LANG_GUJARATI (0)
3300 #define LANG_HEBREW (0)
3303 #define LANG_HINDI (0)
3305 #ifndef LANG_HUNGARIAN
3306 #define LANG_HUNGARIAN (0)
3308 #ifndef LANG_ICELANDIC
3309 #define LANG_ICELANDIC (0)
3311 #ifndef LANG_INDONESIAN
3312 #define LANG_INDONESIAN (0)
3314 #ifndef LANG_ITALIAN
3315 #define LANG_ITALIAN (0)
3317 #ifndef LANG_JAPANESE
3318 #define LANG_JAPANESE (0)
3320 #ifndef LANG_KANNADA
3321 #define LANG_KANNADA (0)
3323 #ifndef LANG_KASHMIRI
3324 #define LANG_KASHMIRI (0)
3327 #define LANG_KAZAK (0)
3329 #ifndef LANG_KONKANI
3330 #define LANG_KONKANI (0)
3333 #define LANG_KOREAN (0)
3335 #ifndef LANG_LATVIAN
3336 #define LANG_LATVIAN (0)
3338 #ifndef LANG_LITHUANIAN
3339 #define LANG_LITHUANIAN (0)
3341 #ifndef LANG_MACEDONIAN
3342 #define LANG_MACEDONIAN (0)
3345 #define LANG_MALAY (0)
3347 #ifndef LANG_MALAYALAM
3348 #define LANG_MALAYALAM (0)
3350 #ifndef LANG_MANIPURI
3351 #define LANG_MANIPURI (0)
3353 #ifndef LANG_MARATHI
3354 #define LANG_MARATHI (0)
3357 #define LANG_NEPALI (0)
3359 #ifndef LANG_NORWEGIAN
3360 #define LANG_NORWEGIAN (0)
3363 #define LANG_ORIYA (0)
3366 #define LANG_POLISH (0)
3368 #ifndef LANG_PORTUGUESE
3369 #define LANG_PORTUGUESE (0)
3371 #ifndef LANG_PUNJABI
3372 #define LANG_PUNJABI (0)
3374 #ifndef LANG_ROMANIAN
3375 #define LANG_ROMANIAN (0)
3377 #ifndef LANG_RUSSIAN
3378 #define LANG_RUSSIAN (0)
3381 #define LANG_SAMI (0)
3383 #ifndef LANG_SANSKRIT
3384 #define LANG_SANSKRIT (0)
3386 #ifndef LANG_SERBIAN
3387 #define LANG_SERBIAN (0)
3390 #define LANG_SINDHI (0)
3393 #define LANG_SLOVAK (0)
3395 #ifndef LANG_SLOVENIAN
3396 #define LANG_SLOVENIAN (0)
3398 #ifndef LANG_SPANISH
3399 #define LANG_SPANISH (0)
3401 #ifndef LANG_SWAHILI
3402 #define LANG_SWAHILI (0)
3404 #ifndef LANG_SWEDISH
3405 #define LANG_SWEDISH (0)
3408 #define LANG_TAMIL (0)
3411 #define LANG_TATAR (0)
3414 #define LANG_TELUGU (0)
3417 #define LANG_THAI (0)
3419 #ifndef LANG_TURKISH
3420 #define LANG_TURKISH (0)
3422 #ifndef LANG_UKRAINIAN
3423 #define LANG_UKRAINIAN (0)
3426 #define LANG_URDU (0)
3429 #define LANG_UZBEK (0)
3431 #ifndef LANG_VIETNAMESE
3432 #define LANG_VIETNAMESE (0)
3434 #ifndef SUBLANG_ARABIC_ALGERIA
3435 #define SUBLANG_ARABIC_ALGERIA SUBLANG_DEFAULT
3437 #ifndef SUBLANG_ARABIC_BAHRAIN
3438 #define SUBLANG_ARABIC_BAHRAIN SUBLANG_DEFAULT
3440 #ifndef SUBLANG_ARABIC_EGYPT
3441 #define SUBLANG_ARABIC_EGYPT SUBLANG_DEFAULT
3443 #ifndef SUBLANG_ARABIC_IRAQ
3444 #define SUBLANG_ARABIC_IRAQ SUBLANG_DEFAULT
3446 #ifndef SUBLANG_ARABIC_JORDAN
3447 #define SUBLANG_ARABIC_JORDAN SUBLANG_DEFAULT
3449 #ifndef SUBLANG_ARABIC_KUWAIT
3450 #define SUBLANG_ARABIC_KUWAIT SUBLANG_DEFAULT
3452 #ifndef SUBLANG_ARABIC_LEBANON
3453 #define SUBLANG_ARABIC_LEBANON SUBLANG_DEFAULT
3455 #ifndef SUBLANG_ARABIC_LIBYA
3456 #define SUBLANG_ARABIC_LIBYA SUBLANG_DEFAULT
3458 #ifndef SUBLANG_ARABIC_MOROCCO
3459 #define SUBLANG_ARABIC_MOROCCO SUBLANG_DEFAULT
3461 #ifndef SUBLANG_ARABIC_OMAN
3462 #define SUBLANG_ARABIC_OMAN SUBLANG_DEFAULT
3464 #ifndef SUBLANG_ARABIC_QATAR
3465 #define SUBLANG_ARABIC_QATAR SUBLANG_DEFAULT
3467 #ifndef SUBLANG_ARABIC_SAUDI_ARABIA
3468 #define SUBLANG_ARABIC_SAUDI_ARABIA SUBLANG_DEFAULT
3470 #ifndef SUBLANG_ARABIC_SYRIA
3471 #define SUBLANG_ARABIC_SYRIA SUBLANG_DEFAULT
3473 #ifndef SUBLANG_ARABIC_TUNISIA
3474 #define SUBLANG_ARABIC_TUNISIA SUBLANG_DEFAULT
3476 #ifndef SUBLANG_ARABIC_UAE
3477 #define SUBLANG_ARABIC_UAE SUBLANG_DEFAULT
3479 #ifndef SUBLANG_ARABIC_YEMEN
3480 #define SUBLANG_ARABIC_YEMEN SUBLANG_DEFAULT
3482 #ifndef SUBLANG_AZERI_CYRILLIC
3483 #define SUBLANG_AZERI_CYRILLIC SUBLANG_DEFAULT
3485 #ifndef SUBLANG_AZERI_LATIN
3486 #define SUBLANG_AZERI_LATIN SUBLANG_DEFAULT
3488 #ifndef SUBLANG_CHINESE_SIMPLIFIED
3489 #define SUBLANG_CHINESE_SIMPLIFIED SUBLANG_DEFAULT
3491 #ifndef SUBLANG_CHINESE_TRADITIONAL
3492 #define SUBLANG_CHINESE_TRADITIONAL SUBLANG_DEFAULT
3494 #ifndef SUBLANG_CHINESE_HONGKONG
3495 #define SUBLANG_CHINESE_HONGKONG SUBLANG_DEFAULT
3497 #ifndef SUBLANG_CHINESE_MACAU
3498 #define SUBLANG_CHINESE_MACAU SUBLANG_DEFAULT
3500 #ifndef SUBLANG_CHINESE_SINGAPORE
3501 #define SUBLANG_CHINESE_SINGAPORE SUBLANG_DEFAULT
3503 #ifndef SUBLANG_DUTCH
3504 #define SUBLANG_DUTCH SUBLANG_DEFAULT
3506 #ifndef SUBLANG_DUTCH_BELGIAN
3507 #define SUBLANG_DUTCH_BELGIAN SUBLANG_DEFAULT
3509 #ifndef SUBLANG_ENGLISH_UK
3510 #define SUBLANG_ENGLISH_UK SUBLANG_DEFAULT
3512 #ifndef SUBLANG_ENGLISH_US
3513 #define SUBLANG_ENGLISH_US SUBLANG_DEFAULT
3515 #ifndef SUBLANG_ENGLISH_AUS
3516 #define SUBLANG_ENGLISH_AUS SUBLANG_DEFAULT
3518 #ifndef SUBLANG_ENGLISH_BELIZE
3519 #define SUBLANG_ENGLISH_BELIZE SUBLANG_DEFAULT
3521 #ifndef SUBLANG_ENGLISH_CAN
3522 #define SUBLANG_ENGLISH_CAN SUBLANG_DEFAULT
3524 #ifndef SUBLANG_ENGLISH_CARIBBEAN
3525 #define SUBLANG_ENGLISH_CARIBBEAN SUBLANG_DEFAULT
3527 #ifndef SUBLANG_ENGLISH_EIRE
3528 #define SUBLANG_ENGLISH_EIRE SUBLANG_DEFAULT
3530 #ifndef SUBLANG_ENGLISH_JAMAICA
3531 #define SUBLANG_ENGLISH_JAMAICA SUBLANG_DEFAULT
3533 #ifndef SUBLANG_ENGLISH_NZ
3534 #define SUBLANG_ENGLISH_NZ SUBLANG_DEFAULT
3536 #ifndef SUBLANG_ENGLISH_PHILIPPINES
3537 #define SUBLANG_ENGLISH_PHILIPPINES SUBLANG_DEFAULT
3539 #ifndef SUBLANG_ENGLISH_SOUTH_AFRICA
3540 #define SUBLANG_ENGLISH_SOUTH_AFRICA SUBLANG_DEFAULT
3542 #ifndef SUBLANG_ENGLISH_TRINIDAD
3543 #define SUBLANG_ENGLISH_TRINIDAD SUBLANG_DEFAULT
3545 #ifndef SUBLANG_ENGLISH_ZIMBABWE
3546 #define SUBLANG_ENGLISH_ZIMBABWE SUBLANG_DEFAULT
3548 #ifndef SUBLANG_FRENCH
3549 #define SUBLANG_FRENCH SUBLANG_DEFAULT
3551 #ifndef SUBLANG_FRENCH_BELGIAN
3552 #define SUBLANG_FRENCH_BELGIAN SUBLANG_DEFAULT
3554 #ifndef SUBLANG_FRENCH_CANADIAN
3555 #define SUBLANG_FRENCH_CANADIAN SUBLANG_DEFAULT
3557 #ifndef SUBLANG_FRENCH_LUXEMBOURG
3558 #define SUBLANG_FRENCH_LUXEMBOURG SUBLANG_DEFAULT
3560 #ifndef SUBLANG_FRENCH_MONACO
3561 #define SUBLANG_FRENCH_MONACO SUBLANG_DEFAULT
3563 #ifndef SUBLANG_FRENCH_SWISS
3564 #define SUBLANG_FRENCH_SWISS SUBLANG_DEFAULT
3566 #ifndef SUBLANG_GERMAN
3567 #define SUBLANG_GERMAN SUBLANG_DEFAULT
3569 #ifndef SUBLANG_GERMAN_AUSTRIAN
3570 #define SUBLANG_GERMAN_AUSTRIAN SUBLANG_DEFAULT
3572 #ifndef SUBLANG_GERMAN_LIECHTENSTEIN
3573 #define SUBLANG_GERMAN_LIECHTENSTEIN SUBLANG_DEFAULT
3575 #ifndef SUBLANG_GERMAN_LUXEMBOURG
3576 #define SUBLANG_GERMAN_LUXEMBOURG SUBLANG_DEFAULT
3578 #ifndef SUBLANG_GERMAN_SWISS
3579 #define SUBLANG_GERMAN_SWISS SUBLANG_DEFAULT
3581 #ifndef SUBLANG_ITALIAN
3582 #define SUBLANG_ITALIAN SUBLANG_DEFAULT
3584 #ifndef SUBLANG_ITALIAN_SWISS
3585 #define SUBLANG_ITALIAN_SWISS SUBLANG_DEFAULT
3587 #ifndef SUBLANG_KASHMIRI_INDIA
3588 #define SUBLANG_KASHMIRI_INDIA SUBLANG_DEFAULT
3590 #ifndef SUBLANG_KOREAN
3591 #define SUBLANG_KOREAN SUBLANG_DEFAULT
3593 #ifndef SUBLANG_LITHUANIAN
3594 #define SUBLANG_LITHUANIAN SUBLANG_DEFAULT
3596 #ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM
3597 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM SUBLANG_DEFAULT
3599 #ifndef SUBLANG_MALAY_MALAYSIA
3600 #define SUBLANG_MALAY_MALAYSIA SUBLANG_DEFAULT
3602 #ifndef SUBLANG_NEPALI_INDIA
3603 #define SUBLANG_NEPALI_INDIA SUBLANG_DEFAULT
3605 #ifndef SUBLANG_NORWEGIAN_BOKMAL
3606 #define SUBLANG_NORWEGIAN_BOKMAL SUBLANG_DEFAULT
3608 #ifndef SUBLANG_NORWEGIAN_NYNORSK
3609 #define SUBLANG_NORWEGIAN_NYNORSK SUBLANG_DEFAULT
3611 #ifndef SUBLANG_PORTUGUESE
3612 #define SUBLANG_PORTUGUESE SUBLANG_DEFAULT
3614 #ifndef SUBLANG_PORTUGUESE_BRAZILIAN
3615 #define SUBLANG_PORTUGUESE_BRAZILIAN SUBLANG_DEFAULT
3617 #ifndef SUBLANG_SERBIAN_CYRILLIC
3618 #define SUBLANG_SERBIAN_CYRILLIC SUBLANG_DEFAULT
3620 #ifndef SUBLANG_SERBIAN_LATIN
3621 #define SUBLANG_SERBIAN_LATIN SUBLANG_DEFAULT
3623 #ifndef SUBLANG_SPANISH
3624 #define SUBLANG_SPANISH SUBLANG_DEFAULT
3626 #ifndef SUBLANG_SPANISH_ARGENTINA
3627 #define SUBLANG_SPANISH_ARGENTINA SUBLANG_DEFAULT
3629 #ifndef SUBLANG_SPANISH_BOLIVIA
3630 #define SUBLANG_SPANISH_BOLIVIA SUBLANG_DEFAULT
3632 #ifndef SUBLANG_SPANISH_CHILE
3633 #define SUBLANG_SPANISH_CHILE SUBLANG_DEFAULT
3635 #ifndef SUBLANG_SPANISH_COLOMBIA
3636 #define SUBLANG_SPANISH_COLOMBIA SUBLANG_DEFAULT
3638 #ifndef SUBLANG_SPANISH_COSTA_RICA
3639 #define SUBLANG_SPANISH_COSTA_RICA SUBLANG_DEFAULT
3641 #ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC
3642 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC SUBLANG_DEFAULT
3644 #ifndef SUBLANG_SPANISH_ECUADOR
3645 #define SUBLANG_SPANISH_ECUADOR SUBLANG_DEFAULT
3647 #ifndef SUBLANG_SPANISH_EL_SALVADOR
3648 #define SUBLANG_SPANISH_EL_SALVADOR SUBLANG_DEFAULT
3650 #ifndef SUBLANG_SPANISH_GUATEMALA
3651 #define SUBLANG_SPANISH_GUATEMALA SUBLANG_DEFAULT
3653 #ifndef SUBLANG_SPANISH_HONDURAS
3654 #define SUBLANG_SPANISH_HONDURAS SUBLANG_DEFAULT
3656 #ifndef SUBLANG_SPANISH_MEXICAN
3657 #define SUBLANG_SPANISH_MEXICAN SUBLANG_DEFAULT
3659 #ifndef SUBLANG_SPANISH_MODERN
3660 #define SUBLANG_SPANISH_MODERN SUBLANG_DEFAULT
3662 #ifndef SUBLANG_SPANISH_NICARAGUA
3663 #define SUBLANG_SPANISH_NICARAGUA SUBLANG_DEFAULT
3665 #ifndef SUBLANG_SPANISH_PANAMA
3666 #define SUBLANG_SPANISH_PANAMA SUBLANG_DEFAULT
3668 #ifndef SUBLANG_SPANISH_PARAGUAY
3669 #define SUBLANG_SPANISH_PARAGUAY SUBLANG_DEFAULT
3671 #ifndef SUBLANG_SPANISH_PERU
3672 #define SUBLANG_SPANISH_PERU SUBLANG_DEFAULT
3674 #ifndef SUBLANG_SPANISH_PUERTO_RICO
3675 #define SUBLANG_SPANISH_PUERTO_RICO SUBLANG_DEFAULT
3677 #ifndef SUBLANG_SPANISH_URUGUAY
3678 #define SUBLANG_SPANISH_URUGUAY SUBLANG_DEFAULT
3680 #ifndef SUBLANG_SPANISH_VENEZUELA
3681 #define SUBLANG_SPANISH_VENEZUELA SUBLANG_DEFAULT
3683 #ifndef SUBLANG_SWEDISH
3684 #define SUBLANG_SWEDISH SUBLANG_DEFAULT
3686 #ifndef SUBLANG_SWEDISH_FINLAND
3687 #define SUBLANG_SWEDISH_FINLAND SUBLANG_DEFAULT
3689 #ifndef SUBLANG_URDU_INDIA
3690 #define SUBLANG_URDU_INDIA SUBLANG_DEFAULT
3692 #ifndef SUBLANG_URDU_PAKISTAN
3693 #define SUBLANG_URDU_PAKISTAN SUBLANG_DEFAULT
3695 #ifndef SUBLANG_UZBEK_CYRILLIC
3696 #define SUBLANG_UZBEK_CYRILLIC SUBLANG_DEFAULT
3698 #ifndef SUBLANG_UZBEK_LATIN
3699 #define SUBLANG_UZBEK_LATIN SUBLANG_DEFAULT
3705 #define LNG(wxlang, canonical, winlang, winsublang, layout, desc) \
3706 info.Language = wxlang; \
3707 info.CanonicalName = wxS(canonical); \
3708 info.LayoutDirection = layout; \
3709 info.Description = wxS(desc); \
3710 SETWINLANG(info, winlang, winsublang) \
3713 void wxLocale::InitLanguagesDB()
3715 wxLanguageInfo info
;
3716 wxStringTokenizer tkn
;
3718 LNG(wxLANGUAGE_ABKHAZIAN
, "ab" , 0 , 0 , wxLayout_LeftToRight
, "Abkhazian")
3719 LNG(wxLANGUAGE_AFAR
, "aa" , 0 , 0 , wxLayout_LeftToRight
, "Afar")
3720 LNG(wxLANGUAGE_AFRIKAANS
, "af_ZA", LANG_AFRIKAANS
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Afrikaans")
3721 LNG(wxLANGUAGE_ALBANIAN
, "sq_AL", LANG_ALBANIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Albanian")
3722 LNG(wxLANGUAGE_AMHARIC
, "am" , 0 , 0 , wxLayout_LeftToRight
, "Amharic")
3723 LNG(wxLANGUAGE_ARABIC
, "ar" , LANG_ARABIC
, SUBLANG_DEFAULT
, wxLayout_RightToLeft
, "Arabic")
3724 LNG(wxLANGUAGE_ARABIC_ALGERIA
, "ar_DZ", LANG_ARABIC
, SUBLANG_ARABIC_ALGERIA
, wxLayout_RightToLeft
, "Arabic (Algeria)")
3725 LNG(wxLANGUAGE_ARABIC_BAHRAIN
, "ar_BH", LANG_ARABIC
, SUBLANG_ARABIC_BAHRAIN
, wxLayout_RightToLeft
, "Arabic (Bahrain)")
3726 LNG(wxLANGUAGE_ARABIC_EGYPT
, "ar_EG", LANG_ARABIC
, SUBLANG_ARABIC_EGYPT
, wxLayout_RightToLeft
, "Arabic (Egypt)")
3727 LNG(wxLANGUAGE_ARABIC_IRAQ
, "ar_IQ", LANG_ARABIC
, SUBLANG_ARABIC_IRAQ
, wxLayout_RightToLeft
, "Arabic (Iraq)")
3728 LNG(wxLANGUAGE_ARABIC_JORDAN
, "ar_JO", LANG_ARABIC
, SUBLANG_ARABIC_JORDAN
, wxLayout_RightToLeft
, "Arabic (Jordan)")
3729 LNG(wxLANGUAGE_ARABIC_KUWAIT
, "ar_KW", LANG_ARABIC
, SUBLANG_ARABIC_KUWAIT
, wxLayout_RightToLeft
, "Arabic (Kuwait)")
3730 LNG(wxLANGUAGE_ARABIC_LEBANON
, "ar_LB", LANG_ARABIC
, SUBLANG_ARABIC_LEBANON
, wxLayout_RightToLeft
, "Arabic (Lebanon)")
3731 LNG(wxLANGUAGE_ARABIC_LIBYA
, "ar_LY", LANG_ARABIC
, SUBLANG_ARABIC_LIBYA
, wxLayout_RightToLeft
, "Arabic (Libya)")
3732 LNG(wxLANGUAGE_ARABIC_MOROCCO
, "ar_MA", LANG_ARABIC
, SUBLANG_ARABIC_MOROCCO
, wxLayout_RightToLeft
, "Arabic (Morocco)")
3733 LNG(wxLANGUAGE_ARABIC_OMAN
, "ar_OM", LANG_ARABIC
, SUBLANG_ARABIC_OMAN
, wxLayout_RightToLeft
, "Arabic (Oman)")
3734 LNG(wxLANGUAGE_ARABIC_QATAR
, "ar_QA", LANG_ARABIC
, SUBLANG_ARABIC_QATAR
, wxLayout_RightToLeft
, "Arabic (Qatar)")
3735 LNG(wxLANGUAGE_ARABIC_SAUDI_ARABIA
, "ar_SA", LANG_ARABIC
, SUBLANG_ARABIC_SAUDI_ARABIA
, wxLayout_RightToLeft
, "Arabic (Saudi Arabia)")
3736 LNG(wxLANGUAGE_ARABIC_SUDAN
, "ar_SD", 0 , 0 , wxLayout_RightToLeft
, "Arabic (Sudan)")
3737 LNG(wxLANGUAGE_ARABIC_SYRIA
, "ar_SY", LANG_ARABIC
, SUBLANG_ARABIC_SYRIA
, wxLayout_RightToLeft
, "Arabic (Syria)")
3738 LNG(wxLANGUAGE_ARABIC_TUNISIA
, "ar_TN", LANG_ARABIC
, SUBLANG_ARABIC_TUNISIA
, wxLayout_RightToLeft
, "Arabic (Tunisia)")
3739 LNG(wxLANGUAGE_ARABIC_UAE
, "ar_AE", LANG_ARABIC
, SUBLANG_ARABIC_UAE
, wxLayout_RightToLeft
, "Arabic (Uae)")
3740 LNG(wxLANGUAGE_ARABIC_YEMEN
, "ar_YE", LANG_ARABIC
, SUBLANG_ARABIC_YEMEN
, wxLayout_RightToLeft
, "Arabic (Yemen)")
3741 LNG(wxLANGUAGE_ARMENIAN
, "hy" , LANG_ARMENIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Armenian")
3742 LNG(wxLANGUAGE_ASSAMESE
, "as" , LANG_ASSAMESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Assamese")
3743 LNG(wxLANGUAGE_AYMARA
, "ay" , 0 , 0 , wxLayout_LeftToRight
, "Aymara")
3744 LNG(wxLANGUAGE_AZERI
, "az" , LANG_AZERI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Azeri")
3745 LNG(wxLANGUAGE_AZERI_CYRILLIC
, "az" , LANG_AZERI
, SUBLANG_AZERI_CYRILLIC
, wxLayout_LeftToRight
, "Azeri (Cyrillic)")
3746 LNG(wxLANGUAGE_AZERI_LATIN
, "az" , LANG_AZERI
, SUBLANG_AZERI_LATIN
, wxLayout_LeftToRight
, "Azeri (Latin)")
3747 LNG(wxLANGUAGE_BASHKIR
, "ba" , 0 , 0 , wxLayout_LeftToRight
, "Bashkir")
3748 LNG(wxLANGUAGE_BASQUE
, "eu_ES", LANG_BASQUE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Basque")
3749 LNG(wxLANGUAGE_BELARUSIAN
, "be_BY", LANG_BELARUSIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Belarusian")
3750 LNG(wxLANGUAGE_BENGALI
, "bn" , LANG_BENGALI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Bengali")
3751 LNG(wxLANGUAGE_BHUTANI
, "dz" , 0 , 0 , wxLayout_LeftToRight
, "Bhutani")
3752 LNG(wxLANGUAGE_BIHARI
, "bh" , 0 , 0 , wxLayout_LeftToRight
, "Bihari")
3753 LNG(wxLANGUAGE_BISLAMA
, "bi" , 0 , 0 , wxLayout_LeftToRight
, "Bislama")
3754 LNG(wxLANGUAGE_BRETON
, "br" , 0 , 0 , wxLayout_LeftToRight
, "Breton")
3755 LNG(wxLANGUAGE_BULGARIAN
, "bg_BG", LANG_BULGARIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Bulgarian")
3756 LNG(wxLANGUAGE_BURMESE
, "my" , 0 , 0 , wxLayout_LeftToRight
, "Burmese")
3757 LNG(wxLANGUAGE_CAMBODIAN
, "km" , 0 , 0 , wxLayout_LeftToRight
, "Cambodian")
3758 LNG(wxLANGUAGE_CATALAN
, "ca_ES", LANG_CATALAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Catalan")
3759 LNG(wxLANGUAGE_CHINESE
, "zh_TW", LANG_CHINESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Chinese")
3760 LNG(wxLANGUAGE_CHINESE_SIMPLIFIED
, "zh_CN", LANG_CHINESE
, SUBLANG_CHINESE_SIMPLIFIED
, wxLayout_LeftToRight
, "Chinese (Simplified)")
3761 LNG(wxLANGUAGE_CHINESE_TRADITIONAL
, "zh_TW", LANG_CHINESE
, SUBLANG_CHINESE_TRADITIONAL
, wxLayout_LeftToRight
, "Chinese (Traditional)")
3762 LNG(wxLANGUAGE_CHINESE_HONGKONG
, "zh_HK", LANG_CHINESE
, SUBLANG_CHINESE_HONGKONG
, wxLayout_LeftToRight
, "Chinese (Hongkong)")
3763 LNG(wxLANGUAGE_CHINESE_MACAU
, "zh_MO", LANG_CHINESE
, SUBLANG_CHINESE_MACAU
, wxLayout_LeftToRight
, "Chinese (Macau)")
3764 LNG(wxLANGUAGE_CHINESE_SINGAPORE
, "zh_SG", LANG_CHINESE
, SUBLANG_CHINESE_SINGAPORE
, wxLayout_LeftToRight
, "Chinese (Singapore)")
3765 LNG(wxLANGUAGE_CHINESE_TAIWAN
, "zh_TW", LANG_CHINESE
, SUBLANG_CHINESE_TRADITIONAL
, wxLayout_LeftToRight
, "Chinese (Taiwan)")
3766 LNG(wxLANGUAGE_CORSICAN
, "co" , 0 , 0 , wxLayout_LeftToRight
, "Corsican")
3767 LNG(wxLANGUAGE_CROATIAN
, "hr_HR", LANG_CROATIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Croatian")
3768 LNG(wxLANGUAGE_CZECH
, "cs_CZ", LANG_CZECH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Czech")
3769 LNG(wxLANGUAGE_DANISH
, "da_DK", LANG_DANISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Danish")
3770 LNG(wxLANGUAGE_DUTCH
, "nl_NL", LANG_DUTCH
, SUBLANG_DUTCH
, wxLayout_LeftToRight
, "Dutch")
3771 LNG(wxLANGUAGE_DUTCH_BELGIAN
, "nl_BE", LANG_DUTCH
, SUBLANG_DUTCH_BELGIAN
, wxLayout_LeftToRight
, "Dutch (Belgian)")
3772 LNG(wxLANGUAGE_ENGLISH
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, wxLayout_LeftToRight
, "English")
3773 LNG(wxLANGUAGE_ENGLISH_UK
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, wxLayout_LeftToRight
, "English (U.K.)")
3774 LNG(wxLANGUAGE_ENGLISH_US
, "en_US", LANG_ENGLISH
, SUBLANG_ENGLISH_US
, wxLayout_LeftToRight
, "English (U.S.)")
3775 LNG(wxLANGUAGE_ENGLISH_AUSTRALIA
, "en_AU", LANG_ENGLISH
, SUBLANG_ENGLISH_AUS
, wxLayout_LeftToRight
, "English (Australia)")
3776 LNG(wxLANGUAGE_ENGLISH_BELIZE
, "en_BZ", LANG_ENGLISH
, SUBLANG_ENGLISH_BELIZE
, wxLayout_LeftToRight
, "English (Belize)")
3777 LNG(wxLANGUAGE_ENGLISH_BOTSWANA
, "en_BW", 0 , 0 , wxLayout_LeftToRight
, "English (Botswana)")
3778 LNG(wxLANGUAGE_ENGLISH_CANADA
, "en_CA", LANG_ENGLISH
, SUBLANG_ENGLISH_CAN
, wxLayout_LeftToRight
, "English (Canada)")
3779 LNG(wxLANGUAGE_ENGLISH_CARIBBEAN
, "en_CB", LANG_ENGLISH
, SUBLANG_ENGLISH_CARIBBEAN
, wxLayout_LeftToRight
, "English (Caribbean)")
3780 LNG(wxLANGUAGE_ENGLISH_DENMARK
, "en_DK", 0 , 0 , wxLayout_LeftToRight
, "English (Denmark)")
3781 LNG(wxLANGUAGE_ENGLISH_EIRE
, "en_IE", LANG_ENGLISH
, SUBLANG_ENGLISH_EIRE
, wxLayout_LeftToRight
, "English (Eire)")
3782 LNG(wxLANGUAGE_ENGLISH_JAMAICA
, "en_JM", LANG_ENGLISH
, SUBLANG_ENGLISH_JAMAICA
, wxLayout_LeftToRight
, "English (Jamaica)")
3783 LNG(wxLANGUAGE_ENGLISH_NEW_ZEALAND
, "en_NZ", LANG_ENGLISH
, SUBLANG_ENGLISH_NZ
, wxLayout_LeftToRight
, "English (New Zealand)")
3784 LNG(wxLANGUAGE_ENGLISH_PHILIPPINES
, "en_PH", LANG_ENGLISH
, SUBLANG_ENGLISH_PHILIPPINES
, wxLayout_LeftToRight
, "English (Philippines)")
3785 LNG(wxLANGUAGE_ENGLISH_SOUTH_AFRICA
, "en_ZA", LANG_ENGLISH
, SUBLANG_ENGLISH_SOUTH_AFRICA
, wxLayout_LeftToRight
, "English (South Africa)")
3786 LNG(wxLANGUAGE_ENGLISH_TRINIDAD
, "en_TT", LANG_ENGLISH
, SUBLANG_ENGLISH_TRINIDAD
, wxLayout_LeftToRight
, "English (Trinidad)")
3787 LNG(wxLANGUAGE_ENGLISH_ZIMBABWE
, "en_ZW", LANG_ENGLISH
, SUBLANG_ENGLISH_ZIMBABWE
, wxLayout_LeftToRight
, "English (Zimbabwe)")
3788 LNG(wxLANGUAGE_ESPERANTO
, "eo" , 0 , 0 , wxLayout_LeftToRight
, "Esperanto")
3789 LNG(wxLANGUAGE_ESTONIAN
, "et_EE", LANG_ESTONIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Estonian")
3790 LNG(wxLANGUAGE_FAEROESE
, "fo_FO", LANG_FAEROESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Faeroese")
3791 LNG(wxLANGUAGE_FARSI
, "fa_IR", LANG_FARSI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Farsi")
3792 LNG(wxLANGUAGE_FIJI
, "fj" , 0 , 0 , wxLayout_LeftToRight
, "Fiji")
3793 LNG(wxLANGUAGE_FINNISH
, "fi_FI", LANG_FINNISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Finnish")
3794 LNG(wxLANGUAGE_FRENCH
, "fr_FR", LANG_FRENCH
, SUBLANG_FRENCH
, wxLayout_LeftToRight
, "French")
3795 LNG(wxLANGUAGE_FRENCH_BELGIAN
, "fr_BE", LANG_FRENCH
, SUBLANG_FRENCH_BELGIAN
, wxLayout_LeftToRight
, "French (Belgian)")
3796 LNG(wxLANGUAGE_FRENCH_CANADIAN
, "fr_CA", LANG_FRENCH
, SUBLANG_FRENCH_CANADIAN
, wxLayout_LeftToRight
, "French (Canadian)")
3797 LNG(wxLANGUAGE_FRENCH_LUXEMBOURG
, "fr_LU", LANG_FRENCH
, SUBLANG_FRENCH_LUXEMBOURG
, wxLayout_LeftToRight
, "French (Luxembourg)")
3798 LNG(wxLANGUAGE_FRENCH_MONACO
, "fr_MC", LANG_FRENCH
, SUBLANG_FRENCH_MONACO
, wxLayout_LeftToRight
, "French (Monaco)")
3799 LNG(wxLANGUAGE_FRENCH_SWISS
, "fr_CH", LANG_FRENCH
, SUBLANG_FRENCH_SWISS
, wxLayout_LeftToRight
, "French (Swiss)")
3800 LNG(wxLANGUAGE_FRISIAN
, "fy" , 0 , 0 , wxLayout_LeftToRight
, "Frisian")
3801 LNG(wxLANGUAGE_GALICIAN
, "gl_ES", 0 , 0 , wxLayout_LeftToRight
, "Galician")
3802 LNG(wxLANGUAGE_GEORGIAN
, "ka_GE", LANG_GEORGIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Georgian")
3803 LNG(wxLANGUAGE_GERMAN
, "de_DE", LANG_GERMAN
, SUBLANG_GERMAN
, wxLayout_LeftToRight
, "German")
3804 LNG(wxLANGUAGE_GERMAN_AUSTRIAN
, "de_AT", LANG_GERMAN
, SUBLANG_GERMAN_AUSTRIAN
, wxLayout_LeftToRight
, "German (Austrian)")
3805 LNG(wxLANGUAGE_GERMAN_BELGIUM
, "de_BE", 0 , 0 , wxLayout_LeftToRight
, "German (Belgium)")
3806 LNG(wxLANGUAGE_GERMAN_LIECHTENSTEIN
, "de_LI", LANG_GERMAN
, SUBLANG_GERMAN_LIECHTENSTEIN
, wxLayout_LeftToRight
, "German (Liechtenstein)")
3807 LNG(wxLANGUAGE_GERMAN_LUXEMBOURG
, "de_LU", LANG_GERMAN
, SUBLANG_GERMAN_LUXEMBOURG
, wxLayout_LeftToRight
, "German (Luxembourg)")
3808 LNG(wxLANGUAGE_GERMAN_SWISS
, "de_CH", LANG_GERMAN
, SUBLANG_GERMAN_SWISS
, wxLayout_LeftToRight
, "German (Swiss)")
3809 LNG(wxLANGUAGE_GREEK
, "el_GR", LANG_GREEK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Greek")
3810 LNG(wxLANGUAGE_GREENLANDIC
, "kl_GL", 0 , 0 , wxLayout_LeftToRight
, "Greenlandic")
3811 LNG(wxLANGUAGE_GUARANI
, "gn" , 0 , 0 , wxLayout_LeftToRight
, "Guarani")
3812 LNG(wxLANGUAGE_GUJARATI
, "gu" , LANG_GUJARATI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Gujarati")
3813 LNG(wxLANGUAGE_HAUSA
, "ha" , 0 , 0 , wxLayout_LeftToRight
, "Hausa")
3814 LNG(wxLANGUAGE_HEBREW
, "he_IL", LANG_HEBREW
, SUBLANG_DEFAULT
, wxLayout_RightToLeft
, "Hebrew")
3815 LNG(wxLANGUAGE_HINDI
, "hi_IN", LANG_HINDI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Hindi")
3816 LNG(wxLANGUAGE_HUNGARIAN
, "hu_HU", LANG_HUNGARIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Hungarian")
3817 LNG(wxLANGUAGE_ICELANDIC
, "is_IS", LANG_ICELANDIC
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Icelandic")
3818 LNG(wxLANGUAGE_INDONESIAN
, "id_ID", LANG_INDONESIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Indonesian")
3819 LNG(wxLANGUAGE_INTERLINGUA
, "ia" , 0 , 0 , wxLayout_LeftToRight
, "Interlingua")
3820 LNG(wxLANGUAGE_INTERLINGUE
, "ie" , 0 , 0 , wxLayout_LeftToRight
, "Interlingue")
3821 LNG(wxLANGUAGE_INUKTITUT
, "iu" , 0 , 0 , wxLayout_LeftToRight
, "Inuktitut")
3822 LNG(wxLANGUAGE_INUPIAK
, "ik" , 0 , 0 , wxLayout_LeftToRight
, "Inupiak")
3823 LNG(wxLANGUAGE_IRISH
, "ga_IE", 0 , 0 , wxLayout_LeftToRight
, "Irish")
3824 LNG(wxLANGUAGE_ITALIAN
, "it_IT", LANG_ITALIAN
, SUBLANG_ITALIAN
, wxLayout_LeftToRight
, "Italian")
3825 LNG(wxLANGUAGE_ITALIAN_SWISS
, "it_CH", LANG_ITALIAN
, SUBLANG_ITALIAN_SWISS
, wxLayout_LeftToRight
, "Italian (Swiss)")
3826 LNG(wxLANGUAGE_JAPANESE
, "ja_JP", LANG_JAPANESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Japanese")
3827 LNG(wxLANGUAGE_JAVANESE
, "jw" , 0 , 0 , wxLayout_LeftToRight
, "Javanese")
3828 LNG(wxLANGUAGE_KANNADA
, "kn" , LANG_KANNADA
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Kannada")
3829 LNG(wxLANGUAGE_KASHMIRI
, "ks" , LANG_KASHMIRI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Kashmiri")
3830 LNG(wxLANGUAGE_KASHMIRI_INDIA
, "ks_IN", LANG_KASHMIRI
, SUBLANG_KASHMIRI_INDIA
, wxLayout_LeftToRight
, "Kashmiri (India)")
3831 LNG(wxLANGUAGE_KAZAKH
, "kk" , LANG_KAZAK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Kazakh")
3832 LNG(wxLANGUAGE_KERNEWEK
, "kw_GB", 0 , 0 , wxLayout_LeftToRight
, "Kernewek")
3833 LNG(wxLANGUAGE_KINYARWANDA
, "rw" , 0 , 0 , wxLayout_LeftToRight
, "Kinyarwanda")
3834 LNG(wxLANGUAGE_KIRGHIZ
, "ky" , 0 , 0 , wxLayout_LeftToRight
, "Kirghiz")
3835 LNG(wxLANGUAGE_KIRUNDI
, "rn" , 0 , 0 , wxLayout_LeftToRight
, "Kirundi")
3836 LNG(wxLANGUAGE_KONKANI
, "" , LANG_KONKANI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Konkani")
3837 LNG(wxLANGUAGE_KOREAN
, "ko_KR", LANG_KOREAN
, SUBLANG_KOREAN
, wxLayout_LeftToRight
, "Korean")
3838 LNG(wxLANGUAGE_KURDISH
, "ku_TR", 0 , 0 , wxLayout_LeftToRight
, "Kurdish")
3839 LNG(wxLANGUAGE_LAOTHIAN
, "lo" , 0 , 0 , wxLayout_LeftToRight
, "Laothian")
3840 LNG(wxLANGUAGE_LATIN
, "la" , 0 , 0 , wxLayout_LeftToRight
, "Latin")
3841 LNG(wxLANGUAGE_LATVIAN
, "lv_LV", LANG_LATVIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Latvian")
3842 LNG(wxLANGUAGE_LINGALA
, "ln" , 0 , 0 , wxLayout_LeftToRight
, "Lingala")
3843 LNG(wxLANGUAGE_LITHUANIAN
, "lt_LT", LANG_LITHUANIAN
, SUBLANG_LITHUANIAN
, wxLayout_LeftToRight
, "Lithuanian")
3844 LNG(wxLANGUAGE_MACEDONIAN
, "mk_MK", LANG_MACEDONIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Macedonian")
3845 LNG(wxLANGUAGE_MALAGASY
, "mg" , 0 , 0 , wxLayout_LeftToRight
, "Malagasy")
3846 LNG(wxLANGUAGE_MALAY
, "ms_MY", LANG_MALAY
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Malay")
3847 LNG(wxLANGUAGE_MALAYALAM
, "ml" , LANG_MALAYALAM
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Malayalam")
3848 LNG(wxLANGUAGE_MALAY_BRUNEI_DARUSSALAM
, "ms_BN", LANG_MALAY
, SUBLANG_MALAY_BRUNEI_DARUSSALAM
, wxLayout_LeftToRight
, "Malay (Brunei Darussalam)")
3849 LNG(wxLANGUAGE_MALAY_MALAYSIA
, "ms_MY", LANG_MALAY
, SUBLANG_MALAY_MALAYSIA
, wxLayout_LeftToRight
, "Malay (Malaysia)")
3850 LNG(wxLANGUAGE_MALTESE
, "mt_MT", 0 , 0 , wxLayout_LeftToRight
, "Maltese")
3851 LNG(wxLANGUAGE_MANIPURI
, "" , LANG_MANIPURI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Manipuri")
3852 LNG(wxLANGUAGE_MAORI
, "mi" , 0 , 0 , wxLayout_LeftToRight
, "Maori")
3853 LNG(wxLANGUAGE_MARATHI
, "mr_IN", LANG_MARATHI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Marathi")
3854 LNG(wxLANGUAGE_MOLDAVIAN
, "mo" , 0 , 0 , wxLayout_LeftToRight
, "Moldavian")
3855 LNG(wxLANGUAGE_MONGOLIAN
, "mn" , 0 , 0 , wxLayout_LeftToRight
, "Mongolian")
3856 LNG(wxLANGUAGE_NAURU
, "na" , 0 , 0 , wxLayout_LeftToRight
, "Nauru")
3857 LNG(wxLANGUAGE_NEPALI
, "ne_NP", LANG_NEPALI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Nepali")
3858 LNG(wxLANGUAGE_NEPALI_INDIA
, "ne_IN", LANG_NEPALI
, SUBLANG_NEPALI_INDIA
, wxLayout_LeftToRight
, "Nepali (India)")
3859 LNG(wxLANGUAGE_NORWEGIAN_BOKMAL
, "nb_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_BOKMAL
, wxLayout_LeftToRight
, "Norwegian (Bokmal)")
3860 LNG(wxLANGUAGE_NORWEGIAN_NYNORSK
, "nn_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_NYNORSK
, wxLayout_LeftToRight
, "Norwegian (Nynorsk)")
3861 LNG(wxLANGUAGE_OCCITAN
, "oc" , 0 , 0 , wxLayout_LeftToRight
, "Occitan")
3862 LNG(wxLANGUAGE_ORIYA
, "or" , LANG_ORIYA
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Oriya")
3863 LNG(wxLANGUAGE_OROMO
, "om" , 0 , 0 , wxLayout_LeftToRight
, "(Afan) Oromo")
3864 LNG(wxLANGUAGE_PASHTO
, "ps" , 0 , 0 , wxLayout_LeftToRight
, "Pashto, Pushto")
3865 LNG(wxLANGUAGE_POLISH
, "pl_PL", LANG_POLISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Polish")
3866 LNG(wxLANGUAGE_PORTUGUESE
, "pt_PT", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE
, wxLayout_LeftToRight
, "Portuguese")
3867 LNG(wxLANGUAGE_PORTUGUESE_BRAZILIAN
, "pt_BR", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE_BRAZILIAN
, wxLayout_LeftToRight
, "Portuguese (Brazilian)")
3868 LNG(wxLANGUAGE_PUNJABI
, "pa" , LANG_PUNJABI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Punjabi")
3869 LNG(wxLANGUAGE_QUECHUA
, "qu" , 0 , 0 , wxLayout_LeftToRight
, "Quechua")
3870 LNG(wxLANGUAGE_RHAETO_ROMANCE
, "rm" , 0 , 0 , wxLayout_LeftToRight
, "Rhaeto-Romance")
3871 LNG(wxLANGUAGE_ROMANIAN
, "ro_RO", LANG_ROMANIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Romanian")
3872 LNG(wxLANGUAGE_RUSSIAN
, "ru_RU", LANG_RUSSIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Russian")
3873 LNG(wxLANGUAGE_RUSSIAN_UKRAINE
, "ru_UA", 0 , 0 , wxLayout_LeftToRight
, "Russian (Ukraine)")
3874 LNG(wxLANGUAGE_SAMI
, "se_NO", LANG_SAMI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Northern Sami")
3875 LNG(wxLANGUAGE_SAMOAN
, "sm" , 0 , 0 , wxLayout_LeftToRight
, "Samoan")
3876 LNG(wxLANGUAGE_SANGHO
, "sg" , 0 , 0 , wxLayout_LeftToRight
, "Sangho")
3877 LNG(wxLANGUAGE_SANSKRIT
, "sa" , LANG_SANSKRIT
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Sanskrit")
3878 LNG(wxLANGUAGE_SCOTS_GAELIC
, "gd" , 0 , 0 , wxLayout_LeftToRight
, "Scots Gaelic")
3879 LNG(wxLANGUAGE_SERBIAN
, "sr_RS", LANG_SERBIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Serbian")
3880 LNG(wxLANGUAGE_SERBIAN_CYRILLIC
, "sr_RS", LANG_SERBIAN
, SUBLANG_SERBIAN_CYRILLIC
, wxLayout_LeftToRight
, "Serbian (Cyrillic)")
3881 LNG(wxLANGUAGE_SERBIAN_LATIN
, "sr_RS@latin", LANG_SERBIAN
, SUBLANG_SERBIAN_LATIN
, wxLayout_LeftToRight
, "Serbian (Latin)")
3882 LNG(wxLANGUAGE_SERBIAN_CYRILLIC
, "sr_YU", LANG_SERBIAN
, SUBLANG_SERBIAN_CYRILLIC
, wxLayout_LeftToRight
, "Serbian (Cyrillic)")
3883 LNG(wxLANGUAGE_SERBIAN_LATIN
, "sr_YU@latin", LANG_SERBIAN
, SUBLANG_SERBIAN_LATIN
, wxLayout_LeftToRight
, "Serbian (Latin)")
3884 LNG(wxLANGUAGE_SERBO_CROATIAN
, "sh" , 0 , 0 , wxLayout_LeftToRight
, "Serbo-Croatian")
3885 LNG(wxLANGUAGE_SESOTHO
, "st" , 0 , 0 , wxLayout_LeftToRight
, "Sesotho")
3886 LNG(wxLANGUAGE_SETSWANA
, "tn" , 0 , 0 , wxLayout_LeftToRight
, "Setswana")
3887 LNG(wxLANGUAGE_SHONA
, "sn" , 0 , 0 , wxLayout_LeftToRight
, "Shona")
3888 LNG(wxLANGUAGE_SINDHI
, "sd" , LANG_SINDHI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Sindhi")
3889 LNG(wxLANGUAGE_SINHALESE
, "si" , 0 , 0 , wxLayout_LeftToRight
, "Sinhalese")
3890 LNG(wxLANGUAGE_SISWATI
, "ss" , 0 , 0 , wxLayout_LeftToRight
, "Siswati")
3891 LNG(wxLANGUAGE_SLOVAK
, "sk_SK", LANG_SLOVAK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Slovak")
3892 LNG(wxLANGUAGE_SLOVENIAN
, "sl_SI", LANG_SLOVENIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Slovenian")
3893 LNG(wxLANGUAGE_SOMALI
, "so" , 0 , 0 , wxLayout_LeftToRight
, "Somali")
3894 LNG(wxLANGUAGE_SPANISH
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH
, wxLayout_LeftToRight
, "Spanish")
3895 LNG(wxLANGUAGE_SPANISH_ARGENTINA
, "es_AR", LANG_SPANISH
, SUBLANG_SPANISH_ARGENTINA
, wxLayout_LeftToRight
, "Spanish (Argentina)")
3896 LNG(wxLANGUAGE_SPANISH_BOLIVIA
, "es_BO", LANG_SPANISH
, SUBLANG_SPANISH_BOLIVIA
, wxLayout_LeftToRight
, "Spanish (Bolivia)")
3897 LNG(wxLANGUAGE_SPANISH_CHILE
, "es_CL", LANG_SPANISH
, SUBLANG_SPANISH_CHILE
, wxLayout_LeftToRight
, "Spanish (Chile)")
3898 LNG(wxLANGUAGE_SPANISH_COLOMBIA
, "es_CO", LANG_SPANISH
, SUBLANG_SPANISH_COLOMBIA
, wxLayout_LeftToRight
, "Spanish (Colombia)")
3899 LNG(wxLANGUAGE_SPANISH_COSTA_RICA
, "es_CR", LANG_SPANISH
, SUBLANG_SPANISH_COSTA_RICA
, wxLayout_LeftToRight
, "Spanish (Costa Rica)")
3900 LNG(wxLANGUAGE_SPANISH_DOMINICAN_REPUBLIC
, "es_DO", LANG_SPANISH
, SUBLANG_SPANISH_DOMINICAN_REPUBLIC
, wxLayout_LeftToRight
, "Spanish (Dominican republic)")
3901 LNG(wxLANGUAGE_SPANISH_ECUADOR
, "es_EC", LANG_SPANISH
, SUBLANG_SPANISH_ECUADOR
, wxLayout_LeftToRight
, "Spanish (Ecuador)")
3902 LNG(wxLANGUAGE_SPANISH_EL_SALVADOR
, "es_SV", LANG_SPANISH
, SUBLANG_SPANISH_EL_SALVADOR
, wxLayout_LeftToRight
, "Spanish (El Salvador)")
3903 LNG(wxLANGUAGE_SPANISH_GUATEMALA
, "es_GT", LANG_SPANISH
, SUBLANG_SPANISH_GUATEMALA
, wxLayout_LeftToRight
, "Spanish (Guatemala)")
3904 LNG(wxLANGUAGE_SPANISH_HONDURAS
, "es_HN", LANG_SPANISH
, SUBLANG_SPANISH_HONDURAS
, wxLayout_LeftToRight
, "Spanish (Honduras)")
3905 LNG(wxLANGUAGE_SPANISH_MEXICAN
, "es_MX", LANG_SPANISH
, SUBLANG_SPANISH_MEXICAN
, wxLayout_LeftToRight
, "Spanish (Mexican)")
3906 LNG(wxLANGUAGE_SPANISH_MODERN
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH_MODERN
, wxLayout_LeftToRight
, "Spanish (Modern)")
3907 LNG(wxLANGUAGE_SPANISH_NICARAGUA
, "es_NI", LANG_SPANISH
, SUBLANG_SPANISH_NICARAGUA
, wxLayout_LeftToRight
, "Spanish (Nicaragua)")
3908 LNG(wxLANGUAGE_SPANISH_PANAMA
, "es_PA", LANG_SPANISH
, SUBLANG_SPANISH_PANAMA
, wxLayout_LeftToRight
, "Spanish (Panama)")
3909 LNG(wxLANGUAGE_SPANISH_PARAGUAY
, "es_PY", LANG_SPANISH
, SUBLANG_SPANISH_PARAGUAY
, wxLayout_LeftToRight
, "Spanish (Paraguay)")
3910 LNG(wxLANGUAGE_SPANISH_PERU
, "es_PE", LANG_SPANISH
, SUBLANG_SPANISH_PERU
, wxLayout_LeftToRight
, "Spanish (Peru)")
3911 LNG(wxLANGUAGE_SPANISH_PUERTO_RICO
, "es_PR", LANG_SPANISH
, SUBLANG_SPANISH_PUERTO_RICO
, wxLayout_LeftToRight
, "Spanish (Puerto Rico)")
3912 LNG(wxLANGUAGE_SPANISH_URUGUAY
, "es_UY", LANG_SPANISH
, SUBLANG_SPANISH_URUGUAY
, wxLayout_LeftToRight
, "Spanish (Uruguay)")
3913 LNG(wxLANGUAGE_SPANISH_US
, "es_US", 0 , 0 , wxLayout_LeftToRight
, "Spanish (U.S.)")
3914 LNG(wxLANGUAGE_SPANISH_VENEZUELA
, "es_VE", LANG_SPANISH
, SUBLANG_SPANISH_VENEZUELA
, wxLayout_LeftToRight
, "Spanish (Venezuela)")
3915 LNG(wxLANGUAGE_SUNDANESE
, "su" , 0 , 0 , wxLayout_LeftToRight
, "Sundanese")
3916 LNG(wxLANGUAGE_SWAHILI
, "sw_KE", LANG_SWAHILI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Swahili")
3917 LNG(wxLANGUAGE_SWEDISH
, "sv_SE", LANG_SWEDISH
, SUBLANG_SWEDISH
, wxLayout_LeftToRight
, "Swedish")
3918 LNG(wxLANGUAGE_SWEDISH_FINLAND
, "sv_FI", LANG_SWEDISH
, SUBLANG_SWEDISH_FINLAND
, wxLayout_LeftToRight
, "Swedish (Finland)")
3919 LNG(wxLANGUAGE_TAGALOG
, "tl_PH", 0 , 0 , wxLayout_LeftToRight
, "Tagalog")
3920 LNG(wxLANGUAGE_TAJIK
, "tg" , 0 , 0 , wxLayout_LeftToRight
, "Tajik")
3921 LNG(wxLANGUAGE_TAMIL
, "ta" , LANG_TAMIL
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Tamil")
3922 LNG(wxLANGUAGE_TATAR
, "tt" , LANG_TATAR
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Tatar")
3923 LNG(wxLANGUAGE_TELUGU
, "te" , LANG_TELUGU
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Telugu")
3924 LNG(wxLANGUAGE_THAI
, "th_TH", LANG_THAI
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Thai")
3925 LNG(wxLANGUAGE_TIBETAN
, "bo" , 0 , 0 , wxLayout_LeftToRight
, "Tibetan")
3926 LNG(wxLANGUAGE_TIGRINYA
, "ti" , 0 , 0 , wxLayout_LeftToRight
, "Tigrinya")
3927 LNG(wxLANGUAGE_TONGA
, "to" , 0 , 0 , wxLayout_LeftToRight
, "Tonga")
3928 LNG(wxLANGUAGE_TSONGA
, "ts" , 0 , 0 , wxLayout_LeftToRight
, "Tsonga")
3929 LNG(wxLANGUAGE_TURKISH
, "tr_TR", LANG_TURKISH
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Turkish")
3930 LNG(wxLANGUAGE_TURKMEN
, "tk" , 0 , 0 , wxLayout_LeftToRight
, "Turkmen")
3931 LNG(wxLANGUAGE_TWI
, "tw" , 0 , 0 , wxLayout_LeftToRight
, "Twi")
3932 LNG(wxLANGUAGE_UIGHUR
, "ug" , 0 , 0 , wxLayout_LeftToRight
, "Uighur")
3933 LNG(wxLANGUAGE_UKRAINIAN
, "uk_UA", LANG_UKRAINIAN
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Ukrainian")
3934 LNG(wxLANGUAGE_URDU
, "ur" , LANG_URDU
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Urdu")
3935 LNG(wxLANGUAGE_URDU_INDIA
, "ur_IN", LANG_URDU
, SUBLANG_URDU_INDIA
, wxLayout_LeftToRight
, "Urdu (India)")
3936 LNG(wxLANGUAGE_URDU_PAKISTAN
, "ur_PK", LANG_URDU
, SUBLANG_URDU_PAKISTAN
, wxLayout_LeftToRight
, "Urdu (Pakistan)")
3937 LNG(wxLANGUAGE_UZBEK
, "uz" , LANG_UZBEK
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Uzbek")
3938 LNG(wxLANGUAGE_UZBEK_CYRILLIC
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_CYRILLIC
, wxLayout_LeftToRight
, "Uzbek (Cyrillic)")
3939 LNG(wxLANGUAGE_UZBEK_LATIN
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_LATIN
, wxLayout_LeftToRight
, "Uzbek (Latin)")
3940 LNG(wxLANGUAGE_VALENCIAN
, "ca_ES@valencia", 0 , 0 , wxLayout_LeftToRight
, "Valencian (Souternhern Catalan)")
3941 LNG(wxLANGUAGE_VIETNAMESE
, "vi_VN", LANG_VIETNAMESE
, SUBLANG_DEFAULT
, wxLayout_LeftToRight
, "Vietnamese")
3942 LNG(wxLANGUAGE_VOLAPUK
, "vo" , 0 , 0 , wxLayout_LeftToRight
, "Volapuk")
3943 LNG(wxLANGUAGE_WELSH
, "cy" , 0 , 0 , wxLayout_LeftToRight
, "Welsh")
3944 LNG(wxLANGUAGE_WOLOF
, "wo" , 0 , 0 , wxLayout_LeftToRight
, "Wolof")
3945 LNG(wxLANGUAGE_XHOSA
, "xh" , 0 , 0 , wxLayout_LeftToRight
, "Xhosa")
3946 LNG(wxLANGUAGE_YIDDISH
, "yi" , 0 , 0 , wxLayout_LeftToRight
, "Yiddish")
3947 LNG(wxLANGUAGE_YORUBA
, "yo" , 0 , 0 , wxLayout_LeftToRight
, "Yoruba")
3948 LNG(wxLANGUAGE_ZHUANG
, "za" , 0 , 0 , wxLayout_LeftToRight
, "Zhuang")
3949 LNG(wxLANGUAGE_ZULU
, "zu" , 0 , 0 , wxLayout_LeftToRight
, "Zulu")
3953 // --- --- --- generated code ends here --- --- ---
3955 #endif // wxUSE_INTL