]> git.saurik.com Git - wxWidgets.git/blob - src/common/intl.cpp
no changes
[wxWidgets.git] / src / common / intl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: intl.cpp
3 // Purpose: Internationalization and localisation for wxWindows
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 29/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declaration
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "intl.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #if wxUSE_INTL
32
33 // standard headers
34 #include <locale.h>
35 #include <ctype.h>
36
37 // wxWindows
38 #include "wx/defs.h"
39 #include "wx/string.h"
40 #include "wx/tokenzr.h"
41 #include "wx/intl.h"
42 #include "wx/file.h"
43 #include "wx/log.h"
44 #include "wx/debug.h"
45 #include "wx/utils.h"
46 #include "wx/dynarray.h"
47 #include "wx/module.h"
48 #ifdef __WIN32__
49 #include "wx/msw/private.h"
50 #endif
51
52
53 #include <stdlib.h>
54
55 // ----------------------------------------------------------------------------
56 // simple types
57 // ----------------------------------------------------------------------------
58
59 // this should *not* be wxChar, this type must have exactly 8 bits!
60 typedef unsigned char size_t8;
61
62 #ifdef __WXMSW__
63 #if defined(__WIN16__)
64 typedef unsigned long size_t32;
65 #elif defined(__WIN32__)
66 typedef unsigned int size_t32;
67 #else
68 // Win64 will have different type sizes
69 #error "Please define a 32 bit type"
70 #endif
71 #else // !Windows
72 // SIZEOF_XXX are defined by configure
73 #if defined(SIZEOF_INT) && (SIZEOF_INT == 4)
74 typedef unsigned int size_t32;
75 #elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 4)
76 typedef unsigned long size_t32;
77 #else
78 // assume sizeof(int) == 4 - what else can we do
79 typedef unsigned int size_t32;
80
81 // ... but at least check it during run time
82 static class IntSizeChecker
83 {
84 public:
85 IntSizeChecker()
86 {
87 // Asserting a sizeof directly causes some compilers to
88 // issue a "using constant in a conditional expression" warning
89 size_t intsize = sizeof(int);
90
91 wxASSERT_MSG( intsize == 4,
92 "size_t32 is incorrectly defined!" );
93 }
94 } intsizechecker;
95 #endif
96 #endif // Win/!Win
97
98 // ----------------------------------------------------------------------------
99 // constants
100 // ----------------------------------------------------------------------------
101
102 // magic number identifying the .mo format file
103 const size_t32 MSGCATALOG_MAGIC = 0x950412de;
104 const size_t32 MSGCATALOG_MAGIC_SW = 0xde120495;
105
106 // extension of ".mo" files
107 #define MSGCATALOG_EXTENSION _T(".mo")
108
109 // the constants describing the format of lang_LANG locale string
110 static const size_t LEN_LANG = 2;
111 static const size_t LEN_SUBLANG = 2;
112 static const size_t LEN_FULL = LEN_LANG + 1 + LEN_SUBLANG; // 1 for '_'
113
114 // ----------------------------------------------------------------------------
115 // global functions
116 // ----------------------------------------------------------------------------
117
118 #ifdef __WXDEBUG__
119
120 // small class to suppress the translation erros until exit from current scope
121 class NoTransErr
122 {
123 public:
124 NoTransErr() { ms_suppressCount++; }
125 ~NoTransErr() { ms_suppressCount--; }
126
127 static bool Suppress() { return ms_suppressCount > 0; }
128
129 private:
130 static size_t ms_suppressCount;
131 };
132
133 size_t NoTransErr::ms_suppressCount = 0;
134
135 #else // !Debug
136
137 class NoTransErr
138 {
139 public:
140 NoTransErr() { }
141 ~NoTransErr() { }
142 };
143
144 #endif // Debug/!Debug
145
146 static wxLocale *wxSetLocale(wxLocale *pLocale);
147
148 // helper functions of GetSystemLanguage()
149 #ifdef __UNIX__
150
151 // get just the language part
152 static inline wxString ExtractLang(const wxString& langFull)
153 {
154 return langFull.Left(LEN_LANG);
155 }
156
157 // get everything else (including the leading '_')
158 static inline wxString ExtractNotLang(const wxString& langFull)
159 {
160 return langFull.Mid(LEN_LANG);
161 }
162
163 #endif // __UNIX__
164
165 // ----------------------------------------------------------------------------
166 // wxMsgCatalog corresponds to one disk-file message catalog.
167 //
168 // This is a "low-level" class and is used only by wxLocale (that's why
169 // it's designed to be stored in a linked list)
170 // ----------------------------------------------------------------------------
171
172 class wxMsgCatalog
173 {
174 public:
175 // ctor & dtor
176 wxMsgCatalog();
177 ~wxMsgCatalog();
178
179 // load the catalog from disk (szDirPrefix corresponds to language)
180 bool Load(const wxChar *szDirPrefix, const wxChar *szName, bool bConvertEncoding = FALSE);
181 bool IsLoaded() const { return m_pData != NULL; }
182
183 // get name of the catalog
184 const wxChar *GetName() const { return m_pszName; }
185
186 // get the translated string: returns NULL if not found
187 const char *GetString(const char *sz) const;
188
189 // public variable pointing to the next element in a linked list (or NULL)
190 wxMsgCatalog *m_pNext;
191
192 private:
193 // this implementation is binary compatible with GNU gettext() version 0.10
194
195 // an entry in the string table
196 struct wxMsgTableEntry
197 {
198 size_t32 nLen; // length of the string
199 size_t32 ofsString; // pointer to the string
200 };
201
202 // header of a .mo file
203 struct wxMsgCatalogHeader
204 {
205 size_t32 magic, // offset +00: magic id
206 revision, // +04: revision
207 numStrings; // +08: number of strings in the file
208 size_t32 ofsOrigTable, // +0C: start of original string table
209 ofsTransTable; // +10: start of translated string table
210 size_t32 nHashSize, // +14: hash table size
211 ofsHashTable; // +18: offset of hash table start
212 };
213
214 // all data is stored here, NULL if no data loaded
215 size_t8 *m_pData;
216
217 // data description
218 size_t32 m_numStrings, // number of strings in this domain
219 m_nHashSize; // number of entries in hash table
220 size_t32 *m_pHashTable; // pointer to hash table
221 wxMsgTableEntry *m_pOrigTable, // pointer to original strings
222 *m_pTransTable; // translated
223
224 const char *StringAtOfs(wxMsgTableEntry *pTable, size_t32 index) const
225 { return (const char *)(m_pData + Swap(pTable[index].ofsString)); }
226
227 // convert encoding to platform native one, if neccessary
228 void ConvertEncoding();
229
230 // utility functions
231 // calculate the hash value of given string
232 static size_t32 GetHash(const char *sz);
233 // big<->little endian
234 inline size_t32 Swap(size_t32 ui) const;
235
236 // internal state
237 bool HasHashTable() const // true if hash table is present
238 { return m_nHashSize > 2 && m_pHashTable != NULL; }
239
240 bool m_bSwapped; // wrong endianness?
241
242 wxChar *m_pszName; // name of the domain
243 };
244
245 // ----------------------------------------------------------------------------
246 // global variables
247 // ----------------------------------------------------------------------------
248
249 // the list of the directories to search for message catalog files
250 static wxArrayString s_searchPrefixes;
251
252 // ============================================================================
253 // implementation
254 // ============================================================================
255
256 // ----------------------------------------------------------------------------
257 // wxMsgCatalog class
258 // ----------------------------------------------------------------------------
259
260 // calculate hash value using the so called hashpjw function by P.J. Weinberger
261 // [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools]
262 size_t32 wxMsgCatalog::GetHash(const char *sz)
263 {
264 #define HASHWORDBITS 32 // the length of size_t32
265
266 size_t32 hval = 0;
267 size_t32 g;
268 while ( *sz != '\0' ) {
269 hval <<= 4;
270 hval += (size_t32)*sz++;
271 g = hval & ((size_t32)0xf << (HASHWORDBITS - 4));
272 if ( g != 0 ) {
273 hval ^= g >> (HASHWORDBITS - 8);
274 hval ^= g;
275 }
276 }
277
278 return hval;
279 }
280
281 // swap the 2 halves of 32 bit integer if needed
282 size_t32 wxMsgCatalog::Swap(size_t32 ui) const
283 {
284 return m_bSwapped ? (ui << 24) | ((ui & 0xff00) << 8) |
285 ((ui >> 8) & 0xff00) | (ui >> 24)
286 : ui;
287 }
288
289 wxMsgCatalog::wxMsgCatalog()
290 {
291 m_pData = NULL;
292 m_pszName = NULL;
293 }
294
295 wxMsgCatalog::~wxMsgCatalog()
296 {
297 wxDELETEA(m_pData);
298 wxDELETEA(m_pszName);
299 }
300
301 // return all directories to search for given prefix
302 static wxString GetAllMsgCatalogSubdirs(const wxChar *prefix,
303 const wxChar *lang)
304 {
305 wxString searchPath;
306
307 // search first in prefix/fr/LC_MESSAGES, then in prefix/fr and finally in
308 // prefix (assuming the language is 'fr')
309 searchPath << prefix << wxFILE_SEP_PATH << lang << wxFILE_SEP_PATH
310 << wxT("LC_MESSAGES") << wxPATH_SEP
311 << prefix << wxFILE_SEP_PATH << lang << wxPATH_SEP
312 << prefix << wxPATH_SEP;
313
314 return searchPath;
315 }
316
317 // construct the search path for the given language
318 static wxString GetFullSearchPath(const wxChar *lang)
319 {
320 wxString searchPath;
321
322 // first take the entries explicitly added by the program
323 size_t count = s_searchPrefixes.Count();
324 for ( size_t n = 0; n < count; n++ )
325 {
326 searchPath << GetAllMsgCatalogSubdirs(s_searchPrefixes[n], lang)
327 << wxPATH_SEP;
328 }
329
330 // LC_PATH is a standard env var containing the search path for the .mo
331 // files
332 const wxChar *pszLcPath = wxGetenv(wxT("LC_PATH"));
333 if ( pszLcPath != NULL )
334 searchPath << GetAllMsgCatalogSubdirs(pszLcPath, lang);
335
336 // then take the current directory
337 // FIXME it should be the directory of the executable
338 searchPath << GetAllMsgCatalogSubdirs(wxT("."), lang);
339
340 // and finally add some standard ones
341 searchPath
342 << GetAllMsgCatalogSubdirs(wxT("/usr/share/locale"), lang)
343 << GetAllMsgCatalogSubdirs(wxT("/usr/lib/locale"), lang)
344 << GetAllMsgCatalogSubdirs(wxT("/usr/local/share/locale"), lang);
345
346 return searchPath;
347 }
348
349 // open disk file and read in it's contents
350 bool wxMsgCatalog::Load(const wxChar *szDirPrefix, const wxChar *szName0, bool bConvertEncoding)
351 {
352 /* We need to handle locales like de_AT.iso-8859-1
353 For this we first chop off the .CHARSET specifier and ignore it.
354 FIXME: UNICODE SUPPORT: must use CHARSET specifier!
355 */
356 wxString szName = szName0;
357 if(szName.Find(wxT('.')) != -1) // contains a dot
358 szName = szName.Left(szName.Find(wxT('.')));
359
360 wxString searchPath = GetFullSearchPath(szDirPrefix);
361 const wxChar *sublocale = wxStrchr(szDirPrefix, wxT('_'));
362 if ( sublocale )
363 {
364 // also add just base locale name: for things like "fr_BE" (belgium
365 // french) we should use "fr" if no belgium specific message catalogs
366 // exist
367 searchPath << GetFullSearchPath(wxString(szDirPrefix).
368 Left((size_t)(sublocale - szDirPrefix)))
369 << wxPATH_SEP;
370 }
371
372 wxString strFile = szName;
373 strFile += MSGCATALOG_EXTENSION;
374
375 // don't give translation errors here because the wxstd catalog might
376 // not yet be loaded (and it's normal)
377 //
378 // (we're using an object because we have several return paths)
379
380 NoTransErr noTransErr;
381 wxLogVerbose(_("looking for catalog '%s' in path '%s'."),
382 szName.c_str(), searchPath.c_str());
383
384 wxString strFullName;
385 if ( !wxFindFileInPath(&strFullName, searchPath, strFile) ) {
386 wxLogVerbose(_("catalog file for domain '%s' not found."), szName.c_str());
387 return FALSE;
388 }
389
390 // open file
391 wxLogVerbose(_("using catalog '%s' from '%s'."),
392 szName.c_str(), strFullName.c_str());
393
394 wxFile fileMsg(strFullName);
395 if ( !fileMsg.IsOpened() )
396 return FALSE;
397
398 // get the file size
399 off_t nSize = fileMsg.Length();
400 if ( nSize == wxInvalidOffset )
401 return FALSE;
402
403 // read the whole file in memory
404 m_pData = new size_t8[nSize];
405 if ( fileMsg.Read(m_pData, nSize) != nSize ) {
406 wxDELETEA(m_pData);
407 return FALSE;
408 }
409
410 // examine header
411 bool bValid = (size_t)nSize > sizeof(wxMsgCatalogHeader);
412
413 wxMsgCatalogHeader *pHeader = (wxMsgCatalogHeader *)m_pData;
414 if ( bValid ) {
415 // we'll have to swap all the integers if it's true
416 m_bSwapped = pHeader->magic == MSGCATALOG_MAGIC_SW;
417
418 // check the magic number
419 bValid = m_bSwapped || pHeader->magic == MSGCATALOG_MAGIC;
420 }
421
422 if ( !bValid ) {
423 // it's either too short or has incorrect magic number
424 wxLogWarning(_("'%s' is not a valid message catalog."), strFullName.c_str());
425
426 wxDELETEA(m_pData);
427 return FALSE;
428 }
429
430 // initialize
431 m_numStrings = Swap(pHeader->numStrings);
432 m_pOrigTable = (wxMsgTableEntry *)(m_pData +
433 Swap(pHeader->ofsOrigTable));
434 m_pTransTable = (wxMsgTableEntry *)(m_pData +
435 Swap(pHeader->ofsTransTable));
436
437 m_nHashSize = Swap(pHeader->nHashSize);
438 m_pHashTable = (size_t32 *)(m_pData + Swap(pHeader->ofsHashTable));
439
440 m_pszName = new wxChar[wxStrlen(szName) + 1];
441 wxStrcpy(m_pszName, szName);
442
443 if (bConvertEncoding)
444 ConvertEncoding();
445
446 // everything is fine
447 return TRUE;
448 }
449
450 // search for a string
451 const char *wxMsgCatalog::GetString(const char *szOrig) const
452 {
453 if ( szOrig == NULL )
454 return NULL;
455
456 if ( HasHashTable() ) { // use hash table for lookup if possible
457 size_t32 nHashVal = GetHash(szOrig);
458 size_t32 nIndex = nHashVal % m_nHashSize;
459
460 size_t32 nIncr = 1 + (nHashVal % (m_nHashSize - 2));
461
462 for ( ;; ) {
463 size_t32 nStr = Swap(m_pHashTable[nIndex]);
464 if ( nStr == 0 )
465 return NULL;
466
467 if ( strcmp(szOrig, StringAtOfs(m_pOrigTable, nStr - 1)) == 0 ) {
468 // work around for BC++ 5.5 bug: without a temp var, the optimizer
469 // breaks the code and the return value is incorrect
470 const char *tmp = StringAtOfs(m_pTransTable, nStr - 1);
471 return tmp;
472 }
473
474 if ( nIndex >= m_nHashSize - nIncr)
475 nIndex -= m_nHashSize - nIncr;
476 else
477 nIndex += nIncr;
478 }
479 }
480 else { // no hash table: use default binary search
481 size_t32 bottom = 0,
482 top = m_numStrings,
483 current;
484 while ( bottom < top ) {
485 current = (bottom + top) / 2;
486 int res = strcmp(szOrig, StringAtOfs(m_pOrigTable, current));
487 if ( res < 0 )
488 top = current;
489 else if ( res > 0 )
490 bottom = current + 1;
491 else { // found!
492 // work around the same BC++ 5.5 bug as above
493 const char *tmp = StringAtOfs(m_pTransTable, current);
494 return tmp;
495 }
496 }
497 }
498
499 // not found
500 return NULL;
501 }
502
503
504 #if wxUSE_GUI
505 #include "wx/fontmap.h"
506 #include "wx/encconv.h"
507 #endif
508
509 void wxMsgCatalog::ConvertEncoding()
510 {
511 #if wxUSE_GUI
512 wxFontEncoding enc;
513
514 // first, find encoding header:
515 const char *hdr = StringAtOfs(m_pOrigTable, 0);
516 if ( hdr == NULL || hdr[0] != 0 ) {
517 // not supported by this catalog, does not have non-fuzzy header
518 return;
519 }
520
521 /*
522 we support catalogs with header (msgid "") that is _not_ marked as "#,
523 fuzzy" (otherwise the string would not be included into compiled
524 catalog)
525 */
526 wxString header(StringAtOfs(m_pTransTable, 0));
527 wxString charset;
528 int pos = header.Find(wxT("Content-Type: text/plain; charset="));
529 if (pos == wxNOT_FOUND)
530 return; // incorrectly filled Content-Type header
531 size_t n = pos + 34; /*strlen("Content-Type: text/plain; charset=")*/
532 while (header[n] != wxT('\n'))
533 charset << header[n++];
534
535 enc = wxTheFontMapper->CharsetToEncoding(charset, FALSE);
536 if ( enc == wxFONTENCODING_SYSTEM )
537 return; // unknown encoding
538
539 wxFontEncoding targetEnc = wxFONTENCODING_SYSTEM;
540 #ifdef __UNIX__
541 wxString langFull;
542 if (wxGetEnv(wxT("LC_ALL"), &langFull) ||
543 wxGetEnv(wxT("LC_CTYPE"), &langFull) ||
544 wxGetEnv(wxT("LANG"), &langFull))
545 {
546 wxString lcharset = langFull.AfterFirst(wxT('.')).BeforeFirst(wxT('@'));
547 if (!lcharset.IsEmpty())
548 targetEnc = wxTheFontMapper->CharsetToEncoding(lcharset, FALSE);
549 }
550 #endif
551
552 if (targetEnc == wxFONTENCODING_SYSTEM)
553 {
554 wxFontEncodingArray a = wxEncodingConverter::GetPlatformEquivalents(enc);
555 if (a[0] == enc)
556 return; // no conversion needed, locale uses native encoding
557 if (a.GetCount() == 0)
558 return; // we don't know common equiv. under this platform
559 targetEnc = a[0];
560 }
561
562 wxEncodingConverter converter;
563 converter.Init(enc, targetEnc);
564
565 for (size_t i = 0; i < m_numStrings; i++)
566 converter.Convert((char*)StringAtOfs(m_pTransTable, i));
567 #endif // wxUSE_GUI
568 }
569
570
571 // ----------------------------------------------------------------------------
572 // wxLocale
573 // ----------------------------------------------------------------------------
574
575 #include "wx/arrimpl.cpp"
576 WX_DECLARE_EXPORTED_OBJARRAY(wxLanguageInfo, wxLanguageInfoArray);
577 WX_DEFINE_OBJARRAY(wxLanguageInfoArray);
578
579 wxLanguageInfoArray *wxLocale::ms_languagesDB = NULL;
580
581 /*static*/ void wxLocale::CreateLanguagesDB()
582 {
583 if (ms_languagesDB == NULL)
584 {
585 ms_languagesDB = new wxLanguageInfoArray;
586 InitLanguagesDB();
587 }
588 }
589
590 /*static*/ void wxLocale::DestroyLanguagesDB()
591 {
592 delete ms_languagesDB;
593 ms_languagesDB = NULL;
594 }
595
596
597 wxLocale::wxLocale()
598 {
599 m_pszOldLocale = NULL;
600 m_pMsgCat = NULL;
601 m_language = wxLANGUAGE_UNKNOWN;
602 }
603
604 // NB: this function has (desired) side effect of changing current locale
605 bool wxLocale::Init(const wxChar *szName,
606 const wxChar *szShort,
607 const wxChar *szLocale,
608 bool bLoadDefault,
609 bool bConvertEncoding)
610 {
611 m_strLocale = szName;
612 m_strShort = szShort;
613 m_bConvertEncoding = bConvertEncoding;
614 m_language = wxLANGUAGE_UNKNOWN;
615
616 // change current locale (default: same as long name)
617 if ( szLocale == NULL )
618 {
619 // the argument to setlocale()
620 szLocale = szShort;
621 }
622 m_pszOldLocale = wxSetlocale(LC_ALL, szLocale);
623 if ( m_pszOldLocale == NULL )
624 wxLogError(_("locale '%s' can not be set."), szLocale);
625
626 // the short name will be used to look for catalog files as well,
627 // so we need something here
628 if ( m_strShort.IsEmpty() ) {
629 // FIXME I don't know how these 2 letter abbreviations are formed,
630 // this wild guess is surely wrong
631 m_strShort = tolower(szLocale[0]) + tolower(szLocale[1]);
632 }
633
634 // save the old locale to be able to restore it later
635 m_pOldLocale = wxSetLocale(this);
636
637 // load the default catalog with wxWindows standard messages
638 m_pMsgCat = NULL;
639 bool bOk = TRUE;
640 if ( bLoadDefault )
641 bOk = AddCatalog(wxT("wxstd"));
642
643 return bOk;
644 }
645
646 bool wxLocale::Init(int language, int flags)
647 {
648 wxLanguageInfo *info = NULL;
649 int lang = language;
650
651 CreateLanguagesDB();
652
653 if (lang == wxLANGUAGE_DEFAULT)
654 {
655 // auto detect the language
656 lang = GetSystemLanguage();
657 }
658
659 // We failed to detect system language, so we will use English:
660 if (lang == wxLANGUAGE_UNKNOWN)
661 {
662 return FALSE;
663 }
664
665 if (lang != wxLANGUAGE_DEFAULT)
666 {
667 for (size_t i = 0; i < ms_languagesDB->GetCount(); i++)
668 {
669 if (ms_languagesDB->Item(i).Language == lang)
670 {
671 info = &ms_languagesDB->Item(i);
672 break;
673 }
674 }
675 }
676
677 // Unknown language:
678 if (info == NULL)
679 {
680 wxLogError(wxT("Unknown language %i."), lang);
681 return FALSE;
682 }
683
684 wxString name = info->Description;
685 wxString canonical = info->CanonicalName;
686 wxString locale;
687 wxChar *retloc;
688
689 // Set the locale:
690 #ifdef __UNIX__
691 if (language == wxLANGUAGE_DEFAULT)
692 locale = wxEmptyString;
693 else
694 locale = info->CanonicalName;
695
696 retloc = wxSetlocale(LC_ALL, locale);
697
698 if (retloc == NULL)
699 {
700 // Some C libraries don't like xx_YY form and require xx only
701 retloc = wxSetlocale(LC_ALL, locale.Mid(0,2));
702 }
703 if (retloc == NULL)
704 {
705 // Some C libraries (namely glibc) still use old ISO 639,
706 // so will translate the abbrev for them
707 wxString mid = locale.Mid(0,2);
708 if (mid == wxT("he")) locale = wxT("iw") + locale.Mid(3);
709 else if (mid == wxT("id")) locale = wxT("in") + locale.Mid(3);
710 else if (mid == wxT("yi")) locale = wxT("ji") + locale.Mid(3);
711 retloc = wxSetlocale(LC_ALL, locale);
712 }
713 if (retloc == NULL)
714 {
715 // (This time, we changed locale in previous if-branch, so try again.)
716 // Some C libraries don't like xx_YY form and require xx only
717 retloc = wxSetlocale(LC_ALL, locale.Mid(0,2));
718 }
719 if (retloc == NULL)
720 {
721 wxLogError(wxT("Cannot set locale to '%s'."), locale.c_str());
722 return FALSE;
723 }
724 #elif defined(__WIN32__)
725 if (language != wxLANGUAGE_DEFAULT)
726 {
727 if (info->WinLang == 0)
728 {
729 wxLogWarning(wxT("Locale '%s' not supported by OS."), name.c_str());
730 retloc = wxT("C");
731 }
732 else
733 {
734 wxUint32 lcid = MAKELCID(MAKELANGID(info->WinLang, info->WinSublang),
735 SORT_DEFAULT);
736 if (SetThreadLocale(lcid))
737 retloc = wxSetlocale(LC_ALL, wxEmptyString);
738 else
739 {
740 // Windows9X doesn't support SetThreadLocale, so we must
741 // translate LCID to CRT's setlocale string ourselves
742 locale.Empty();
743 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
744 {
745 wxChar buffer[256];
746 buffer[0] = wxT('\0');
747 GetLocaleInfo(lcid, LOCALE_SENGLANGUAGE, buffer, 256);
748 locale << buffer;
749 if (GetLocaleInfo(lcid, LOCALE_SENGCOUNTRY, buffer, 256) > 0)
750 locale << wxT("_") << buffer;
751 }
752 if (locale.IsEmpty())
753 {
754 wxLogLastError(wxT("SetThreadLocale"));
755 wxLogError(wxT("Cannot set locale to language %s."), name.c_str());
756 return FALSE;
757 }
758 else
759 retloc = wxSetlocale(LC_ALL, locale);
760 }
761 }
762 }
763 else
764 retloc = wxSetlocale(LC_ALL, wxEmptyString);
765
766 if (retloc == NULL)
767 {
768 wxLogError(wxT("Cannot set locale to language %s."), name.c_str());
769 return FALSE;
770 }
771
772 #else
773 return FALSE;
774 #endif
775
776 return Init(name, canonical, wxString(retloc),
777 (flags & wxLOCALE_LOAD_DEFAULT) != 0,
778 (flags & wxLOCALE_CONV_ENCODING) != 0);
779 }
780
781
782
783 void wxLocale::AddCatalogLookupPathPrefix(const wxString& prefix)
784 {
785 if ( s_searchPrefixes.Index(prefix) == wxNOT_FOUND )
786 {
787 s_searchPrefixes.Add(prefix);
788 }
789 //else: already have it
790 }
791
792 /*static*/ int wxLocale::GetSystemLanguage()
793 {
794 CreateLanguagesDB();
795
796 // init i to avoid compiler warning
797 size_t i = 0,
798 count = ms_languagesDB->GetCount();
799
800 #if defined(__UNIX__)
801 // first get the string identifying the language from the environment
802 wxString langFull;
803 if (!wxGetEnv(wxT("LC_ALL"), &langFull) &&
804 !wxGetEnv(wxT("LC_MESSAGES"), &langFull) &&
805 !wxGetEnv(wxT("LANG"), &langFull))
806 {
807 // no language specified, threat it as English
808 return wxLANGUAGE_ENGLISH;
809 }
810
811 if ( langFull == _T("C") )
812 {
813 // default C locale
814 return wxLANGUAGE_ENGLISH;
815 }
816
817 // the language string has the following form
818 //
819 // lang[_LANG[.encoding]]
820 //
821 // where lang is the primary language, LANG is a sublang
822 //
823 // for example, the following strings are valid:
824 // fr
825 // fr_FR
826 // de_DE.iso88591
827
828 // for now we don't use the encoding, although we probably should (doing
829 // translations of the msg catalogs on the fly as required) (TODO)
830 langFull = langFull.BeforeFirst(_T('.'));
831
832 // in addition to the format above, we also can have full language names
833 // in LANG env var - for example, SuSE is known to use LANG="german" - so
834 // check for this
835
836 // do we have just the language (or sublang too)?
837 bool justLang = langFull.Len() == LEN_LANG;
838 if ( justLang ||
839 (langFull.Len() == LEN_FULL && langFull[LEN_LANG] == wxT('_')) )
840 {
841 // 0. Make sure the lang is according to latest ISO 639
842 // (this is neccessary because glibc uses iw and in instead
843 // of he and id respectively).
844
845 // the language itself (second part is the dialect/sublang)
846 wxString langOrig = ExtractLang(langFull);
847
848 wxString lang;
849 if ( langOrig == wxT("iw"))
850 lang = _T("he");
851 else if ( langOrig == wxT("in") )
852 lang = wxT("id");
853 else if ( langOrig == wxT("ji") )
854 lang = wxT("yi");
855 else
856 lang = langOrig;
857
858 // did we change it?
859 if ( lang != langOrig )
860 {
861 langFull = lang + ExtractNotLang(langFull);
862 }
863
864 // 1. Try to find the language either as is:
865 for ( i = 0; i < count; i++ )
866 {
867 if ( ms_languagesDB->Item(i).CanonicalName == langFull )
868 {
869 break;
870 }
871 }
872
873 // 2. If langFull is of the form xx_YY, try to find xx:
874 if ( i == count && !justLang )
875 {
876 for ( i = 0; i < count; i++ )
877 {
878 if ( ms_languagesDB->Item(i).CanonicalName == lang )
879 {
880 break;
881 }
882 }
883 }
884
885 // 3. If langFull is of the form xx, try to find any xx_YY record:
886 if ( i == count && justLang )
887 {
888 for ( i = 0; i < count; i++ )
889 {
890 if ( ExtractLang(ms_languagesDB->Item(i).CanonicalName)
891 == langFull )
892 {
893 break;
894 }
895 }
896 }
897 }
898 else // not standard format
899 {
900 // try to find the name in verbose description
901 for ( i = 0; i < count; i++ )
902 {
903 if (ms_languagesDB->Item(i).Description.CmpNoCase(langFull) == 0)
904 {
905 break;
906 }
907 }
908 }
909 #elif defined(__WIN32__)
910 LCID lcid = GetUserDefaultLCID();
911 if ( lcid != 0 )
912 {
913 wxUint32 lang = PRIMARYLANGID(LANGIDFROMLCID(lcid));
914 wxUint32 sublang = SUBLANGID(LANGIDFROMLCID(lcid));
915
916 for ( i = 0; i < count; i++ )
917 {
918 if (ms_languagesDB->Item(i).WinLang == lang &&
919 ms_languagesDB->Item(i).WinSublang == sublang)
920 {
921 break;
922 }
923 }
924 }
925 //else: leave wxlang == wxLANGUAGE_UNKNOWN
926 #endif // Unix/Win32
927
928 if ( i < count )
929 {
930 // we did find a matching entry, use it
931 return ms_languagesDB->Item(i).Language;
932 }
933
934 // no info about this language in the database
935 return wxLANGUAGE_UNKNOWN;
936 }
937
938 /*static*/ void wxLocale::AddLanguage(const wxLanguageInfo& info)
939 {
940 CreateLanguagesDB();
941 ms_languagesDB->Add(info);
942 }
943
944 wxString wxLocale::GetSysName() const
945 {
946 return wxSetlocale(LC_ALL, NULL);
947 }
948
949 // clean up
950 wxLocale::~wxLocale()
951 {
952 // free memory
953 wxMsgCatalog *pTmpCat;
954 while ( m_pMsgCat != NULL ) {
955 pTmpCat = m_pMsgCat;
956 m_pMsgCat = m_pMsgCat->m_pNext;
957 delete pTmpCat;
958 }
959
960 // restore old locale
961 wxSetLocale(m_pOldLocale);
962 wxSetlocale(LC_ALL, m_pszOldLocale);
963 }
964
965 // get the translation of given string in current locale
966 const wxMB2WXbuf wxLocale::GetString(const wxChar *szOrigString,
967 const wxChar *szDomain) const
968 {
969 if ( wxIsEmpty(szOrigString) )
970 return szDomain;
971
972 const char *pszTrans = NULL;
973 #if wxUSE_UNICODE
974 const wxWX2MBbuf szOrgString = wxConvCurrent->cWX2MB(szOrigString);
975 #else // ANSI
976 #define szOrgString szOrigString
977 #endif // Unicode/ANSI
978
979 wxMsgCatalog *pMsgCat;
980 if ( szDomain != NULL ) {
981 pMsgCat = FindCatalog(szDomain);
982
983 // does the catalog exist?
984 if ( pMsgCat != NULL )
985 pszTrans = pMsgCat->GetString(szOrgString);
986 }
987 else {
988 // search in all domains
989 for ( pMsgCat = m_pMsgCat; pMsgCat != NULL; pMsgCat = pMsgCat->m_pNext ) {
990 pszTrans = pMsgCat->GetString(szOrgString);
991 if ( pszTrans != NULL ) // take the first found
992 break;
993 }
994 }
995
996 if ( pszTrans == NULL ) {
997 #ifdef __WXDEBUG__
998 if ( !NoTransErr::Suppress() ) {
999 NoTransErr noTransErr;
1000
1001 if ( szDomain != NULL )
1002 {
1003 wxLogDebug(_T("string '%s' not found in domain '%s' for locale '%s'."),
1004 szOrigString, szDomain, m_strLocale.c_str());
1005 }
1006 else
1007 {
1008 wxLogDebug(_T("string '%s' not found in locale '%s'."),
1009 szOrigString, m_strLocale.c_str());
1010 }
1011 }
1012 #endif // __WXDEBUG__
1013
1014 return (wxMB2WXbuf)(szOrigString);
1015 }
1016 else
1017 {
1018 return wxConvertMB2WX(pszTrans); // or preferably wxCSConv(charset).cMB2WX(pszTrans) or something,
1019 // a macro similar to wxConvertMB2WX could be written for that
1020 }
1021
1022 #undef szOrgString
1023 }
1024
1025 // find catalog by name in a linked list, return NULL if !found
1026 wxMsgCatalog *wxLocale::FindCatalog(const wxChar *szDomain) const
1027 {
1028 // linear search in the linked list
1029 wxMsgCatalog *pMsgCat;
1030 for ( pMsgCat = m_pMsgCat; pMsgCat != NULL; pMsgCat = pMsgCat->m_pNext ) {
1031 if ( wxStricmp(pMsgCat->GetName(), szDomain) == 0 )
1032 return pMsgCat;
1033 }
1034
1035 return NULL;
1036 }
1037
1038 // check if the given catalog is loaded
1039 bool wxLocale::IsLoaded(const wxChar *szDomain) const
1040 {
1041 return FindCatalog(szDomain) != NULL;
1042 }
1043
1044 // add a catalog to our linked list
1045 bool wxLocale::AddCatalog(const wxChar *szDomain)
1046 {
1047 wxMsgCatalog *pMsgCat = new wxMsgCatalog;
1048
1049 if ( pMsgCat->Load(m_strShort, szDomain, m_bConvertEncoding) ) {
1050 // add it to the head of the list so that in GetString it will
1051 // be searched before the catalogs added earlier
1052 pMsgCat->m_pNext = m_pMsgCat;
1053 m_pMsgCat = pMsgCat;
1054
1055 return TRUE;
1056 }
1057 else {
1058 // don't add it because it couldn't be loaded anyway
1059 delete pMsgCat;
1060
1061 return FALSE;
1062 }
1063 }
1064
1065 // ----------------------------------------------------------------------------
1066 // global functions and variables
1067 // ----------------------------------------------------------------------------
1068
1069 // retrieve/change current locale
1070 // ------------------------------
1071
1072 // the current locale object
1073 static wxLocale *g_pLocale = NULL;
1074
1075 wxLocale *wxGetLocale()
1076 {
1077 return g_pLocale;
1078 }
1079
1080 wxLocale *wxSetLocale(wxLocale *pLocale)
1081 {
1082 wxLocale *pOld = g_pLocale;
1083 g_pLocale = pLocale;
1084 return pOld;
1085 }
1086
1087
1088
1089 // ----------------------------------------------------------------------------
1090 // wxLocale module (for lazy destruction of languagesDB)
1091 // ----------------------------------------------------------------------------
1092
1093 class wxLocaleModule: public wxModule
1094 {
1095 DECLARE_DYNAMIC_CLASS(wxLocaleModule)
1096 public:
1097 wxLocaleModule() {}
1098 bool OnInit() { return TRUE; }
1099 void OnExit() { wxLocale::DestroyLanguagesDB(); }
1100 };
1101
1102 IMPLEMENT_DYNAMIC_CLASS(wxLocaleModule, wxModule)
1103
1104
1105
1106 // ----------------------------------------------------------------------------
1107 // default languages table & initialization
1108 // ----------------------------------------------------------------------------
1109
1110
1111
1112 // --- --- --- generated code begins here --- --- ---
1113
1114 // This table is generated by misc/languages/genlang.py
1115 // When making changes, please put them into misc/languages/langtabl.txt
1116
1117 #ifndef __WIN32__
1118
1119 #define SETWINLANG(info,lang,sublang)
1120
1121 #else
1122
1123 #define SETWINLANG(info,lang,sublang) \
1124 info.WinLang = lang, info.WinSublang = sublang;
1125
1126 #ifndef LANG_AFRIKAANS
1127 #define LANG_AFRIKAANS (0)
1128 #endif
1129 #ifndef LANG_ALBANIAN
1130 #define LANG_ALBANIAN (0)
1131 #endif
1132 #ifndef LANG_ARABIC
1133 #define LANG_ARABIC (0)
1134 #endif
1135 #ifndef LANG_ARMENIAN
1136 #define LANG_ARMENIAN (0)
1137 #endif
1138 #ifndef LANG_ASSAMESE
1139 #define LANG_ASSAMESE (0)
1140 #endif
1141 #ifndef LANG_AZERI
1142 #define LANG_AZERI (0)
1143 #endif
1144 #ifndef LANG_BASQUE
1145 #define LANG_BASQUE (0)
1146 #endif
1147 #ifndef LANG_BELARUSIAN
1148 #define LANG_BELARUSIAN (0)
1149 #endif
1150 #ifndef LANG_BENGALI
1151 #define LANG_BENGALI (0)
1152 #endif
1153 #ifndef LANG_BULGARIAN
1154 #define LANG_BULGARIAN (0)
1155 #endif
1156 #ifndef LANG_CATALAN
1157 #define LANG_CATALAN (0)
1158 #endif
1159 #ifndef LANG_CHINESE
1160 #define LANG_CHINESE (0)
1161 #endif
1162 #ifndef LANG_CROATIAN
1163 #define LANG_CROATIAN (0)
1164 #endif
1165 #ifndef LANG_CZECH
1166 #define LANG_CZECH (0)
1167 #endif
1168 #ifndef LANG_DANISH
1169 #define LANG_DANISH (0)
1170 #endif
1171 #ifndef LANG_DUTCH
1172 #define LANG_DUTCH (0)
1173 #endif
1174 #ifndef LANG_ENGLISH
1175 #define LANG_ENGLISH (0)
1176 #endif
1177 #ifndef LANG_ESTONIAN
1178 #define LANG_ESTONIAN (0)
1179 #endif
1180 #ifndef LANG_FAEROESE
1181 #define LANG_FAEROESE (0)
1182 #endif
1183 #ifndef LANG_FARSI
1184 #define LANG_FARSI (0)
1185 #endif
1186 #ifndef LANG_FINNISH
1187 #define LANG_FINNISH (0)
1188 #endif
1189 #ifndef LANG_FRENCH
1190 #define LANG_FRENCH (0)
1191 #endif
1192 #ifndef LANG_GEORGIAN
1193 #define LANG_GEORGIAN (0)
1194 #endif
1195 #ifndef LANG_GERMAN
1196 #define LANG_GERMAN (0)
1197 #endif
1198 #ifndef LANG_GREEK
1199 #define LANG_GREEK (0)
1200 #endif
1201 #ifndef LANG_GUJARATI
1202 #define LANG_GUJARATI (0)
1203 #endif
1204 #ifndef LANG_HEBREW
1205 #define LANG_HEBREW (0)
1206 #endif
1207 #ifndef LANG_HINDI
1208 #define LANG_HINDI (0)
1209 #endif
1210 #ifndef LANG_HUNGARIAN
1211 #define LANG_HUNGARIAN (0)
1212 #endif
1213 #ifndef LANG_ICELANDIC
1214 #define LANG_ICELANDIC (0)
1215 #endif
1216 #ifndef LANG_INDONESIAN
1217 #define LANG_INDONESIAN (0)
1218 #endif
1219 #ifndef LANG_ITALIAN
1220 #define LANG_ITALIAN (0)
1221 #endif
1222 #ifndef LANG_JAPANESE
1223 #define LANG_JAPANESE (0)
1224 #endif
1225 #ifndef LANG_KANNADA
1226 #define LANG_KANNADA (0)
1227 #endif
1228 #ifndef LANG_KASHMIRI
1229 #define LANG_KASHMIRI (0)
1230 #endif
1231 #ifndef LANG_KAZAK
1232 #define LANG_KAZAK (0)
1233 #endif
1234 #ifndef LANG_KONKANI
1235 #define LANG_KONKANI (0)
1236 #endif
1237 #ifndef LANG_KOREAN
1238 #define LANG_KOREAN (0)
1239 #endif
1240 #ifndef LANG_LATVIAN
1241 #define LANG_LATVIAN (0)
1242 #endif
1243 #ifndef LANG_LITHUANIAN
1244 #define LANG_LITHUANIAN (0)
1245 #endif
1246 #ifndef LANG_MACEDONIAN
1247 #define LANG_MACEDONIAN (0)
1248 #endif
1249 #ifndef LANG_MALAY
1250 #define LANG_MALAY (0)
1251 #endif
1252 #ifndef LANG_MALAYALAM
1253 #define LANG_MALAYALAM (0)
1254 #endif
1255 #ifndef LANG_MANIPURI
1256 #define LANG_MANIPURI (0)
1257 #endif
1258 #ifndef LANG_MARATHI
1259 #define LANG_MARATHI (0)
1260 #endif
1261 #ifndef LANG_NEPALI
1262 #define LANG_NEPALI (0)
1263 #endif
1264 #ifndef LANG_NORWEGIAN
1265 #define LANG_NORWEGIAN (0)
1266 #endif
1267 #ifndef LANG_ORIYA
1268 #define LANG_ORIYA (0)
1269 #endif
1270 #ifndef LANG_POLISH
1271 #define LANG_POLISH (0)
1272 #endif
1273 #ifndef LANG_PORTUGUESE
1274 #define LANG_PORTUGUESE (0)
1275 #endif
1276 #ifndef LANG_PUNJABI
1277 #define LANG_PUNJABI (0)
1278 #endif
1279 #ifndef LANG_ROMANIAN
1280 #define LANG_ROMANIAN (0)
1281 #endif
1282 #ifndef LANG_RUSSIAN
1283 #define LANG_RUSSIAN (0)
1284 #endif
1285 #ifndef LANG_SANSKRIT
1286 #define LANG_SANSKRIT (0)
1287 #endif
1288 #ifndef LANG_SERBIAN
1289 #define LANG_SERBIAN (0)
1290 #endif
1291 #ifndef LANG_SINDHI
1292 #define LANG_SINDHI (0)
1293 #endif
1294 #ifndef LANG_SLOVAK
1295 #define LANG_SLOVAK (0)
1296 #endif
1297 #ifndef LANG_SLOVENIAN
1298 #define LANG_SLOVENIAN (0)
1299 #endif
1300 #ifndef LANG_SPANISH
1301 #define LANG_SPANISH (0)
1302 #endif
1303 #ifndef LANG_SWAHILI
1304 #define LANG_SWAHILI (0)
1305 #endif
1306 #ifndef LANG_SWEDISH
1307 #define LANG_SWEDISH (0)
1308 #endif
1309 #ifndef LANG_TAMIL
1310 #define LANG_TAMIL (0)
1311 #endif
1312 #ifndef LANG_TATAR
1313 #define LANG_TATAR (0)
1314 #endif
1315 #ifndef LANG_TELUGU
1316 #define LANG_TELUGU (0)
1317 #endif
1318 #ifndef LANG_THAI
1319 #define LANG_THAI (0)
1320 #endif
1321 #ifndef LANG_TURKISH
1322 #define LANG_TURKISH (0)
1323 #endif
1324 #ifndef LANG_UKRAINIAN
1325 #define LANG_UKRAINIAN (0)
1326 #endif
1327 #ifndef LANG_URDU
1328 #define LANG_URDU (0)
1329 #endif
1330 #ifndef LANG_UZBEK
1331 #define LANG_UZBEK (0)
1332 #endif
1333 #ifndef LANG_VIETNAMESE
1334 #define LANG_VIETNAMESE (0)
1335 #endif
1336 #ifndef SUBLANG_ARABIC_ALGERIA
1337 #define SUBLANG_ARABIC_ALGERIA SUBLANG_DEFAULT
1338 #endif
1339 #ifndef SUBLANG_ARABIC_BAHRAIN
1340 #define SUBLANG_ARABIC_BAHRAIN SUBLANG_DEFAULT
1341 #endif
1342 #ifndef SUBLANG_ARABIC_EGYPT
1343 #define SUBLANG_ARABIC_EGYPT SUBLANG_DEFAULT
1344 #endif
1345 #ifndef SUBLANG_ARABIC_IRAQ
1346 #define SUBLANG_ARABIC_IRAQ SUBLANG_DEFAULT
1347 #endif
1348 #ifndef SUBLANG_ARABIC_JORDAN
1349 #define SUBLANG_ARABIC_JORDAN SUBLANG_DEFAULT
1350 #endif
1351 #ifndef SUBLANG_ARABIC_KUWAIT
1352 #define SUBLANG_ARABIC_KUWAIT SUBLANG_DEFAULT
1353 #endif
1354 #ifndef SUBLANG_ARABIC_LEBANON
1355 #define SUBLANG_ARABIC_LEBANON SUBLANG_DEFAULT
1356 #endif
1357 #ifndef SUBLANG_ARABIC_LIBYA
1358 #define SUBLANG_ARABIC_LIBYA SUBLANG_DEFAULT
1359 #endif
1360 #ifndef SUBLANG_ARABIC_MOROCCO
1361 #define SUBLANG_ARABIC_MOROCCO SUBLANG_DEFAULT
1362 #endif
1363 #ifndef SUBLANG_ARABIC_OMAN
1364 #define SUBLANG_ARABIC_OMAN SUBLANG_DEFAULT
1365 #endif
1366 #ifndef SUBLANG_ARABIC_QATAR
1367 #define SUBLANG_ARABIC_QATAR SUBLANG_DEFAULT
1368 #endif
1369 #ifndef SUBLANG_ARABIC_SAUDI_ARABIA
1370 #define SUBLANG_ARABIC_SAUDI_ARABIA SUBLANG_DEFAULT
1371 #endif
1372 #ifndef SUBLANG_ARABIC_SYRIA
1373 #define SUBLANG_ARABIC_SYRIA SUBLANG_DEFAULT
1374 #endif
1375 #ifndef SUBLANG_ARABIC_TUNISIA
1376 #define SUBLANG_ARABIC_TUNISIA SUBLANG_DEFAULT
1377 #endif
1378 #ifndef SUBLANG_ARABIC_UAE
1379 #define SUBLANG_ARABIC_UAE SUBLANG_DEFAULT
1380 #endif
1381 #ifndef SUBLANG_ARABIC_YEMEN
1382 #define SUBLANG_ARABIC_YEMEN SUBLANG_DEFAULT
1383 #endif
1384 #ifndef SUBLANG_AZERI_CYRILLIC
1385 #define SUBLANG_AZERI_CYRILLIC SUBLANG_DEFAULT
1386 #endif
1387 #ifndef SUBLANG_AZERI_LATIN
1388 #define SUBLANG_AZERI_LATIN SUBLANG_DEFAULT
1389 #endif
1390 #ifndef SUBLANG_CHINESE_SIMPLIFIED
1391 #define SUBLANG_CHINESE_SIMPLIFIED SUBLANG_DEFAULT
1392 #endif
1393 #ifndef SUBLANG_CHINESE_TRADITIONAL
1394 #define SUBLANG_CHINESE_TRADITIONAL SUBLANG_DEFAULT
1395 #endif
1396 #ifndef SUBLANG_CHINESE_HONGKONG
1397 #define SUBLANG_CHINESE_HONGKONG SUBLANG_DEFAULT
1398 #endif
1399 #ifndef SUBLANG_CHINESE_MACAU
1400 #define SUBLANG_CHINESE_MACAU SUBLANG_DEFAULT
1401 #endif
1402 #ifndef SUBLANG_CHINESE_SINGAPORE
1403 #define SUBLANG_CHINESE_SINGAPORE SUBLANG_DEFAULT
1404 #endif
1405 #ifndef SUBLANG_DUTCH
1406 #define SUBLANG_DUTCH SUBLANG_DEFAULT
1407 #endif
1408 #ifndef SUBLANG_DUTCH_BELGIAN
1409 #define SUBLANG_DUTCH_BELGIAN SUBLANG_DEFAULT
1410 #endif
1411 #ifndef SUBLANG_ENGLISH_UK
1412 #define SUBLANG_ENGLISH_UK SUBLANG_DEFAULT
1413 #endif
1414 #ifndef SUBLANG_ENGLISH_US
1415 #define SUBLANG_ENGLISH_US SUBLANG_DEFAULT
1416 #endif
1417 #ifndef SUBLANG_ENGLISH_AUS
1418 #define SUBLANG_ENGLISH_AUS SUBLANG_DEFAULT
1419 #endif
1420 #ifndef SUBLANG_ENGLISH_BELIZE
1421 #define SUBLANG_ENGLISH_BELIZE SUBLANG_DEFAULT
1422 #endif
1423 #ifndef SUBLANG_ENGLISH_CAN
1424 #define SUBLANG_ENGLISH_CAN SUBLANG_DEFAULT
1425 #endif
1426 #ifndef SUBLANG_ENGLISH_CARIBBEAN
1427 #define SUBLANG_ENGLISH_CARIBBEAN SUBLANG_DEFAULT
1428 #endif
1429 #ifndef SUBLANG_ENGLISH_EIRE
1430 #define SUBLANG_ENGLISH_EIRE SUBLANG_DEFAULT
1431 #endif
1432 #ifndef SUBLANG_ENGLISH_JAMAICA
1433 #define SUBLANG_ENGLISH_JAMAICA SUBLANG_DEFAULT
1434 #endif
1435 #ifndef SUBLANG_ENGLISH_NZ
1436 #define SUBLANG_ENGLISH_NZ SUBLANG_DEFAULT
1437 #endif
1438 #ifndef SUBLANG_ENGLISH_PHILIPPINES
1439 #define SUBLANG_ENGLISH_PHILIPPINES SUBLANG_DEFAULT
1440 #endif
1441 #ifndef SUBLANG_ENGLISH_SOUTH_AFRICA
1442 #define SUBLANG_ENGLISH_SOUTH_AFRICA SUBLANG_DEFAULT
1443 #endif
1444 #ifndef SUBLANG_ENGLISH_TRINIDAD
1445 #define SUBLANG_ENGLISH_TRINIDAD SUBLANG_DEFAULT
1446 #endif
1447 #ifndef SUBLANG_ENGLISH_ZIMBABWE
1448 #define SUBLANG_ENGLISH_ZIMBABWE SUBLANG_DEFAULT
1449 #endif
1450 #ifndef SUBLANG_FRENCH
1451 #define SUBLANG_FRENCH SUBLANG_DEFAULT
1452 #endif
1453 #ifndef SUBLANG_FRENCH_BELGIAN
1454 #define SUBLANG_FRENCH_BELGIAN SUBLANG_DEFAULT
1455 #endif
1456 #ifndef SUBLANG_FRENCH_CANADIAN
1457 #define SUBLANG_FRENCH_CANADIAN SUBLANG_DEFAULT
1458 #endif
1459 #ifndef SUBLANG_FRENCH_LUXEMBOURG
1460 #define SUBLANG_FRENCH_LUXEMBOURG SUBLANG_DEFAULT
1461 #endif
1462 #ifndef SUBLANG_FRENCH_MONACO
1463 #define SUBLANG_FRENCH_MONACO SUBLANG_DEFAULT
1464 #endif
1465 #ifndef SUBLANG_FRENCH_SWISS
1466 #define SUBLANG_FRENCH_SWISS SUBLANG_DEFAULT
1467 #endif
1468 #ifndef SUBLANG_GERMAN
1469 #define SUBLANG_GERMAN SUBLANG_DEFAULT
1470 #endif
1471 #ifndef SUBLANG_GERMAN_AUSTRIAN
1472 #define SUBLANG_GERMAN_AUSTRIAN SUBLANG_DEFAULT
1473 #endif
1474 #ifndef SUBLANG_GERMAN_LIECHTENSTEIN
1475 #define SUBLANG_GERMAN_LIECHTENSTEIN SUBLANG_DEFAULT
1476 #endif
1477 #ifndef SUBLANG_GERMAN_LUXEMBOURG
1478 #define SUBLANG_GERMAN_LUXEMBOURG SUBLANG_DEFAULT
1479 #endif
1480 #ifndef SUBLANG_GERMAN_SWISS
1481 #define SUBLANG_GERMAN_SWISS SUBLANG_DEFAULT
1482 #endif
1483 #ifndef SUBLANG_ITALIAN
1484 #define SUBLANG_ITALIAN SUBLANG_DEFAULT
1485 #endif
1486 #ifndef SUBLANG_ITALIAN_SWISS
1487 #define SUBLANG_ITALIAN_SWISS SUBLANG_DEFAULT
1488 #endif
1489 #ifndef SUBLANG_KASHMIRI_INDIA
1490 #define SUBLANG_KASHMIRI_INDIA SUBLANG_DEFAULT
1491 #endif
1492 #ifndef SUBLANG_KOREAN
1493 #define SUBLANG_KOREAN SUBLANG_DEFAULT
1494 #endif
1495 #ifndef SUBLANG_LITHUANIAN
1496 #define SUBLANG_LITHUANIAN SUBLANG_DEFAULT
1497 #endif
1498 #ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM
1499 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM SUBLANG_DEFAULT
1500 #endif
1501 #ifndef SUBLANG_MALAY_MALAYSIA
1502 #define SUBLANG_MALAY_MALAYSIA SUBLANG_DEFAULT
1503 #endif
1504 #ifndef SUBLANG_NEPALI_INDIA
1505 #define SUBLANG_NEPALI_INDIA SUBLANG_DEFAULT
1506 #endif
1507 #ifndef SUBLANG_NORWEGIAN_BOKMAL
1508 #define SUBLANG_NORWEGIAN_BOKMAL SUBLANG_DEFAULT
1509 #endif
1510 #ifndef SUBLANG_NORWEGIAN_NYNORSK
1511 #define SUBLANG_NORWEGIAN_NYNORSK SUBLANG_DEFAULT
1512 #endif
1513 #ifndef SUBLANG_PORTUGUESE
1514 #define SUBLANG_PORTUGUESE SUBLANG_DEFAULT
1515 #endif
1516 #ifndef SUBLANG_PORTUGUESE_BRAZILIAN
1517 #define SUBLANG_PORTUGUESE_BRAZILIAN SUBLANG_DEFAULT
1518 #endif
1519 #ifndef SUBLANG_SERBIAN_CYRILLIC
1520 #define SUBLANG_SERBIAN_CYRILLIC SUBLANG_DEFAULT
1521 #endif
1522 #ifndef SUBLANG_SERBIAN_LATIN
1523 #define SUBLANG_SERBIAN_LATIN SUBLANG_DEFAULT
1524 #endif
1525 #ifndef SUBLANG_SPANISH
1526 #define SUBLANG_SPANISH SUBLANG_DEFAULT
1527 #endif
1528 #ifndef SUBLANG_SPANISH_ARGENTINA
1529 #define SUBLANG_SPANISH_ARGENTINA SUBLANG_DEFAULT
1530 #endif
1531 #ifndef SUBLANG_SPANISH_BOLIVIA
1532 #define SUBLANG_SPANISH_BOLIVIA SUBLANG_DEFAULT
1533 #endif
1534 #ifndef SUBLANG_SPANISH_CHILE
1535 #define SUBLANG_SPANISH_CHILE SUBLANG_DEFAULT
1536 #endif
1537 #ifndef SUBLANG_SPANISH_COLOMBIA
1538 #define SUBLANG_SPANISH_COLOMBIA SUBLANG_DEFAULT
1539 #endif
1540 #ifndef SUBLANG_SPANISH_COSTA_RICA
1541 #define SUBLANG_SPANISH_COSTA_RICA SUBLANG_DEFAULT
1542 #endif
1543 #ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC
1544 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC SUBLANG_DEFAULT
1545 #endif
1546 #ifndef SUBLANG_SPANISH_ECUADOR
1547 #define SUBLANG_SPANISH_ECUADOR SUBLANG_DEFAULT
1548 #endif
1549 #ifndef SUBLANG_SPANISH_EL_SALVADOR
1550 #define SUBLANG_SPANISH_EL_SALVADOR SUBLANG_DEFAULT
1551 #endif
1552 #ifndef SUBLANG_SPANISH_GUATEMALA
1553 #define SUBLANG_SPANISH_GUATEMALA SUBLANG_DEFAULT
1554 #endif
1555 #ifndef SUBLANG_SPANISH_HONDURAS
1556 #define SUBLANG_SPANISH_HONDURAS SUBLANG_DEFAULT
1557 #endif
1558 #ifndef SUBLANG_SPANISH_MEXICAN
1559 #define SUBLANG_SPANISH_MEXICAN SUBLANG_DEFAULT
1560 #endif
1561 #ifndef SUBLANG_SPANISH_MODERN
1562 #define SUBLANG_SPANISH_MODERN SUBLANG_DEFAULT
1563 #endif
1564 #ifndef SUBLANG_SPANISH_NICARAGUA
1565 #define SUBLANG_SPANISH_NICARAGUA SUBLANG_DEFAULT
1566 #endif
1567 #ifndef SUBLANG_SPANISH_PANAMA
1568 #define SUBLANG_SPANISH_PANAMA SUBLANG_DEFAULT
1569 #endif
1570 #ifndef SUBLANG_SPANISH_PARAGUAY
1571 #define SUBLANG_SPANISH_PARAGUAY SUBLANG_DEFAULT
1572 #endif
1573 #ifndef SUBLANG_SPANISH_PERU
1574 #define SUBLANG_SPANISH_PERU SUBLANG_DEFAULT
1575 #endif
1576 #ifndef SUBLANG_SPANISH_PUERTO_RICO
1577 #define SUBLANG_SPANISH_PUERTO_RICO SUBLANG_DEFAULT
1578 #endif
1579 #ifndef SUBLANG_SPANISH_URUGUAY
1580 #define SUBLANG_SPANISH_URUGUAY SUBLANG_DEFAULT
1581 #endif
1582 #ifndef SUBLANG_SPANISH_VENEZUELA
1583 #define SUBLANG_SPANISH_VENEZUELA SUBLANG_DEFAULT
1584 #endif
1585 #ifndef SUBLANG_SWEDISH
1586 #define SUBLANG_SWEDISH SUBLANG_DEFAULT
1587 #endif
1588 #ifndef SUBLANG_SWEDISH_FINLAND
1589 #define SUBLANG_SWEDISH_FINLAND SUBLANG_DEFAULT
1590 #endif
1591 #ifndef SUBLANG_URDU_INDIA
1592 #define SUBLANG_URDU_INDIA SUBLANG_DEFAULT
1593 #endif
1594 #ifndef SUBLANG_URDU_PAKISTAN
1595 #define SUBLANG_URDU_PAKISTAN SUBLANG_DEFAULT
1596 #endif
1597 #ifndef SUBLANG_UZBEK_CYRILLIC
1598 #define SUBLANG_UZBEK_CYRILLIC SUBLANG_DEFAULT
1599 #endif
1600 #ifndef SUBLANG_UZBEK_LATIN
1601 #define SUBLANG_UZBEK_LATIN SUBLANG_DEFAULT
1602 #endif
1603
1604
1605 #endif // __WIN32__
1606
1607 #define LNG(wxlang, canonical, winlang, winsublang, desc) \
1608 info.Language = wxlang; \
1609 info.CanonicalName = wxT(canonical); \
1610 info.Description = desc; \
1611 SETWINLANG(info, winlang, winsublang) \
1612 AddLanguage(info);
1613
1614 void wxLocale::InitLanguagesDB()
1615 {
1616 wxLanguageInfo info;
1617 wxStringTokenizer tkn;
1618
1619 LNG(wxLANGUAGE_ABKHAZIAN, "ab" , 0 , 0 , "Abkhazian")
1620 LNG(wxLANGUAGE_AFAR, "aa" , 0 , 0 , "Afar")
1621 LNG(wxLANGUAGE_AFRIKAANS, "af_ZA", LANG_AFRIKAANS , SUBLANG_DEFAULT , "Afrikaans")
1622 LNG(wxLANGUAGE_ALBANIAN, "sq_AL", LANG_ALBANIAN , SUBLANG_DEFAULT , "Albanian")
1623 LNG(wxLANGUAGE_AMHARIC, "am" , 0 , 0 , "Amharic")
1624 LNG(wxLANGUAGE_ARABIC, "ar" , LANG_ARABIC , SUBLANG_DEFAULT , "Arabic")
1625 LNG(wxLANGUAGE_ARABIC_ALGERIA, "ar_DZ", LANG_ARABIC , SUBLANG_ARABIC_ALGERIA , "Arabic (Algeria)")
1626 LNG(wxLANGUAGE_ARABIC_BAHRAIN, "ar_BH", LANG_ARABIC , SUBLANG_ARABIC_BAHRAIN , "Arabic (Bahrain)")
1627 LNG(wxLANGUAGE_ARABIC_EGYPT, "ar_EG", LANG_ARABIC , SUBLANG_ARABIC_EGYPT , "Arabic (Egypt)")
1628 LNG(wxLANGUAGE_ARABIC_IRAQ, "ar_IQ", LANG_ARABIC , SUBLANG_ARABIC_IRAQ , "Arabic (Iraq)")
1629 LNG(wxLANGUAGE_ARABIC_JORDAN, "ar_JO", LANG_ARABIC , SUBLANG_ARABIC_JORDAN , "Arabic (Jordan)")
1630 LNG(wxLANGUAGE_ARABIC_KUWAIT, "ar_KW", LANG_ARABIC , SUBLANG_ARABIC_KUWAIT , "Arabic (Kuwait)")
1631 LNG(wxLANGUAGE_ARABIC_LEBANON, "ar_LB", LANG_ARABIC , SUBLANG_ARABIC_LEBANON , "Arabic (Lebanon)")
1632 LNG(wxLANGUAGE_ARABIC_LIBYA, "ar_LY", LANG_ARABIC , SUBLANG_ARABIC_LIBYA , "Arabic (Libya)")
1633 LNG(wxLANGUAGE_ARABIC_MOROCCO, "ar_MA", LANG_ARABIC , SUBLANG_ARABIC_MOROCCO , "Arabic (Morocco)")
1634 LNG(wxLANGUAGE_ARABIC_OMAN, "ar_OM", LANG_ARABIC , SUBLANG_ARABIC_OMAN , "Arabic (Oman)")
1635 LNG(wxLANGUAGE_ARABIC_QATAR, "ar_QA", LANG_ARABIC , SUBLANG_ARABIC_QATAR , "Arabic (Qatar)")
1636 LNG(wxLANGUAGE_ARABIC_SAUDI_ARABIA, "ar_SA", LANG_ARABIC , SUBLANG_ARABIC_SAUDI_ARABIA , "Arabic (Saudi Arabia)")
1637 LNG(wxLANGUAGE_ARABIC_SUDAN, "ar_SD", 0 , 0 , "Arabic (Sudan)")
1638 LNG(wxLANGUAGE_ARABIC_SYRIA, "ar_SY", LANG_ARABIC , SUBLANG_ARABIC_SYRIA , "Arabic (Syria)")
1639 LNG(wxLANGUAGE_ARABIC_TUNISIA, "ar_TN", LANG_ARABIC , SUBLANG_ARABIC_TUNISIA , "Arabic (Tunisia)")
1640 LNG(wxLANGUAGE_ARABIC_UAE, "ar_AE", LANG_ARABIC , SUBLANG_ARABIC_UAE , "Arabic (Uae)")
1641 LNG(wxLANGUAGE_ARABIC_YEMEN, "ar_YE", LANG_ARABIC , SUBLANG_ARABIC_YEMEN , "Arabic (Yemen)")
1642 LNG(wxLANGUAGE_ARMENIAN, "hy" , LANG_ARMENIAN , SUBLANG_DEFAULT , "Armenian")
1643 LNG(wxLANGUAGE_ASSAMESE, "as" , LANG_ASSAMESE , SUBLANG_DEFAULT , "Assamese")
1644 LNG(wxLANGUAGE_AYMARA, "ay" , 0 , 0 , "Aymara")
1645 LNG(wxLANGUAGE_AZERI, "az" , LANG_AZERI , SUBLANG_DEFAULT , "Azeri")
1646 LNG(wxLANGUAGE_AZERI_CYRILLIC, "az" , LANG_AZERI , SUBLANG_AZERI_CYRILLIC , "Azeri (Cyrillic)")
1647 LNG(wxLANGUAGE_AZERI_LATIN, "az" , LANG_AZERI , SUBLANG_AZERI_LATIN , "Azeri (Latin)")
1648 LNG(wxLANGUAGE_BASHKIR, "ba" , 0 , 0 , "Bashkir")
1649 LNG(wxLANGUAGE_BASQUE, "eu_ES", LANG_BASQUE , SUBLANG_DEFAULT , "Basque")
1650 LNG(wxLANGUAGE_BELARUSIAN, "be_BY", LANG_BELARUSIAN, SUBLANG_DEFAULT , "Belarusian")
1651 LNG(wxLANGUAGE_BENGALI, "bn" , LANG_BENGALI , SUBLANG_DEFAULT , "Bengali")
1652 LNG(wxLANGUAGE_BHUTANI, "dz" , 0 , 0 , "Bhutani")
1653 LNG(wxLANGUAGE_BIHARI, "bh" , 0 , 0 , "Bihari")
1654 LNG(wxLANGUAGE_BISLAMA, "bi" , 0 , 0 , "Bislama")
1655 LNG(wxLANGUAGE_BRETON, "br" , 0 , 0 , "Breton")
1656 LNG(wxLANGUAGE_BULGARIAN, "bg_BG", LANG_BULGARIAN , SUBLANG_DEFAULT , "Bulgarian")
1657 LNG(wxLANGUAGE_BURMESE, "my" , 0 , 0 , "Burmese")
1658 LNG(wxLANGUAGE_CAMBODIAN, "km" , 0 , 0 , "Cambodian")
1659 LNG(wxLANGUAGE_CATALAN, "ca_ES", LANG_CATALAN , SUBLANG_DEFAULT , "Catalan")
1660 LNG(wxLANGUAGE_CHINESE, "zh_CN", LANG_CHINESE , SUBLANG_DEFAULT , "Chinese")
1661 LNG(wxLANGUAGE_CHINESE_SIMPLIFIED, "zh_CN", LANG_CHINESE , SUBLANG_CHINESE_SIMPLIFIED , "Chinese (Simplified)")
1662 LNG(wxLANGUAGE_CHINESE_TRADITIONAL, "zh_CN", LANG_CHINESE , SUBLANG_CHINESE_TRADITIONAL , "Chinese (Traditional)")
1663 LNG(wxLANGUAGE_CHINESE_HONGKONG, "zh_HK", LANG_CHINESE , SUBLANG_CHINESE_HONGKONG , "Chinese (Hongkong)")
1664 LNG(wxLANGUAGE_CHINESE_MACAU, "zh_MO", LANG_CHINESE , SUBLANG_CHINESE_MACAU , "Chinese (Macau)")
1665 LNG(wxLANGUAGE_CHINESE_SINGAPORE, "zh_SG", LANG_CHINESE , SUBLANG_CHINESE_SINGAPORE , "Chinese (Singapore)")
1666 LNG(wxLANGUAGE_CHINESE_TAIWAN, "zh_TW", 0 , 0 , "Chinese (Taiwan)")
1667 LNG(wxLANGUAGE_CORSICAN, "co" , 0 , 0 , "Corsican")
1668 LNG(wxLANGUAGE_CROATIAN, "hr_HR", LANG_CROATIAN , SUBLANG_DEFAULT , "Croatian")
1669 LNG(wxLANGUAGE_CZECH, "cs_CZ", LANG_CZECH , SUBLANG_DEFAULT , "Czech")
1670 LNG(wxLANGUAGE_DANISH, "da_DK", LANG_DANISH , SUBLANG_DEFAULT , "Danish")
1671 LNG(wxLANGUAGE_DUTCH, "nl_NL", LANG_DUTCH , SUBLANG_DUTCH , "Dutch")
1672 LNG(wxLANGUAGE_DUTCH_BELGIAN, "nl_BE", LANG_DUTCH , SUBLANG_DUTCH_BELGIAN , "Dutch (Belgian)")
1673 LNG(wxLANGUAGE_ENGLISH, "en_GB", LANG_ENGLISH , SUBLANG_ENGLISH_UK , "English")
1674 LNG(wxLANGUAGE_ENGLISH_UK, "en_GB", LANG_ENGLISH , SUBLANG_ENGLISH_UK , "English (U.K.)")
1675 LNG(wxLANGUAGE_ENGLISH_US, "en_US", LANG_ENGLISH , SUBLANG_ENGLISH_US , "English (U.S.)")
1676 LNG(wxLANGUAGE_ENGLISH_AUSTRALIA, "en_AU", LANG_ENGLISH , SUBLANG_ENGLISH_AUS , "English (Australia)")
1677 LNG(wxLANGUAGE_ENGLISH_BELIZE, "en_BZ", LANG_ENGLISH , SUBLANG_ENGLISH_BELIZE , "English (Belize)")
1678 LNG(wxLANGUAGE_ENGLISH_BOTSWANA, "en_BW", 0 , 0 , "English (Botswana)")
1679 LNG(wxLANGUAGE_ENGLISH_CANADA, "en_CA", LANG_ENGLISH , SUBLANG_ENGLISH_CAN , "English (Canada)")
1680 LNG(wxLANGUAGE_ENGLISH_CARIBBEAN, "en_CB", LANG_ENGLISH , SUBLANG_ENGLISH_CARIBBEAN , "English (Caribbean)")
1681 LNG(wxLANGUAGE_ENGLISH_DENMARK, "en_DK", 0 , 0 , "English (Denmark)")
1682 LNG(wxLANGUAGE_ENGLISH_EIRE, "en_IE", LANG_ENGLISH , SUBLANG_ENGLISH_EIRE , "English (Eire)")
1683 LNG(wxLANGUAGE_ENGLISH_JAMAICA, "en_JM", LANG_ENGLISH , SUBLANG_ENGLISH_JAMAICA , "English (Jamaica)")
1684 LNG(wxLANGUAGE_ENGLISH_NEW_ZEALAND, "en_NZ", LANG_ENGLISH , SUBLANG_ENGLISH_NZ , "English (New Zealand)")
1685 LNG(wxLANGUAGE_ENGLISH_PHILIPPINES, "en_PH", LANG_ENGLISH , SUBLANG_ENGLISH_PHILIPPINES , "English (Philippines)")
1686 LNG(wxLANGUAGE_ENGLISH_SOUTH_AFRICA, "en_ZA", LANG_ENGLISH , SUBLANG_ENGLISH_SOUTH_AFRICA , "English (South Africa)")
1687 LNG(wxLANGUAGE_ENGLISH_TRINIDAD, "en_TT", LANG_ENGLISH , SUBLANG_ENGLISH_TRINIDAD , "English (Trinidad)")
1688 LNG(wxLANGUAGE_ENGLISH_ZIMBABWE, "en_ZW", LANG_ENGLISH , SUBLANG_ENGLISH_ZIMBABWE , "English (Zimbabwe)")
1689 LNG(wxLANGUAGE_ESPERANTO, "eo" , 0 , 0 , "Esperanto")
1690 LNG(wxLANGUAGE_ESTONIAN, "et_EE", LANG_ESTONIAN , SUBLANG_DEFAULT , "Estonian")
1691 LNG(wxLANGUAGE_FAEROESE, "fo_FO", LANG_FAEROESE , SUBLANG_DEFAULT , "Faeroese")
1692 LNG(wxLANGUAGE_FARSI, "fa_IR", LANG_FARSI , SUBLANG_DEFAULT , "Farsi")
1693 LNG(wxLANGUAGE_FIJI, "fj" , 0 , 0 , "Fiji")
1694 LNG(wxLANGUAGE_FINNISH, "fi_FI", LANG_FINNISH , SUBLANG_DEFAULT , "Finnish")
1695 LNG(wxLANGUAGE_FRENCH, "fr_FR", LANG_FRENCH , SUBLANG_FRENCH , "French")
1696 LNG(wxLANGUAGE_FRENCH_BELGIAN, "fr_BE", LANG_FRENCH , SUBLANG_FRENCH_BELGIAN , "French (Belgian)")
1697 LNG(wxLANGUAGE_FRENCH_CANADIAN, "fr_CA", LANG_FRENCH , SUBLANG_FRENCH_CANADIAN , "French (Canadian)")
1698 LNG(wxLANGUAGE_FRENCH_LUXEMBOURG, "fr_LU", LANG_FRENCH , SUBLANG_FRENCH_LUXEMBOURG , "French (Luxembourg)")
1699 LNG(wxLANGUAGE_FRENCH_MONACO, "fr_MC", LANG_FRENCH , SUBLANG_FRENCH_MONACO , "French (Monaco)")
1700 LNG(wxLANGUAGE_FRENCH_SWISS, "fr_CH", LANG_FRENCH , SUBLANG_FRENCH_SWISS , "French (Swiss)")
1701 LNG(wxLANGUAGE_FRISIAN, "fy" , 0 , 0 , "Frisian")
1702 LNG(wxLANGUAGE_GALICIAN, "gl_ES", 0 , 0 , "Galician")
1703 LNG(wxLANGUAGE_GEORGIAN, "ka" , LANG_GEORGIAN , SUBLANG_DEFAULT , "Georgian")
1704 LNG(wxLANGUAGE_GERMAN, "de_DE", LANG_GERMAN , SUBLANG_GERMAN , "German")
1705 LNG(wxLANGUAGE_GERMAN_AUSTRIAN, "de_AT", LANG_GERMAN , SUBLANG_GERMAN_AUSTRIAN , "German (Austrian)")
1706 LNG(wxLANGUAGE_GERMAN_BELGIUM, "de_BE", 0 , 0 , "German (Belgium)")
1707 LNG(wxLANGUAGE_GERMAN_LIECHTENSTEIN, "de_LI", LANG_GERMAN , SUBLANG_GERMAN_LIECHTENSTEIN , "German (Liechtenstein)")
1708 LNG(wxLANGUAGE_GERMAN_LUXEMBOURG, "de_LU", LANG_GERMAN , SUBLANG_GERMAN_LUXEMBOURG , "German (Luxembourg)")
1709 LNG(wxLANGUAGE_GERMAN_SWISS, "de_CH", LANG_GERMAN , SUBLANG_GERMAN_SWISS , "German (Swiss)")
1710 LNG(wxLANGUAGE_GREEK, "el_GR", LANG_GREEK , SUBLANG_DEFAULT , "Greek")
1711 LNG(wxLANGUAGE_GREENLANDIC, "kl_GL", 0 , 0 , "Greenlandic")
1712 LNG(wxLANGUAGE_GUARANI, "gn" , 0 , 0 , "Guarani")
1713 LNG(wxLANGUAGE_GUJARATI, "gu" , LANG_GUJARATI , SUBLANG_DEFAULT , "Gujarati")
1714 LNG(wxLANGUAGE_HAUSA, "ha" , 0 , 0 , "Hausa")
1715 LNG(wxLANGUAGE_HEBREW, "he_IL", LANG_HEBREW , SUBLANG_DEFAULT , "Hebrew")
1716 LNG(wxLANGUAGE_HINDI, "hi_IN", LANG_HINDI , SUBLANG_DEFAULT , "Hindi")
1717 LNG(wxLANGUAGE_HUNGARIAN, "hu_HU", LANG_HUNGARIAN , SUBLANG_DEFAULT , "Hungarian")
1718 LNG(wxLANGUAGE_ICELANDIC, "is_IS", LANG_ICELANDIC , SUBLANG_DEFAULT , "Icelandic")
1719 LNG(wxLANGUAGE_INDONESIAN, "id_ID", LANG_INDONESIAN, SUBLANG_DEFAULT , "Indonesian")
1720 LNG(wxLANGUAGE_INTERLINGUA, "ia" , 0 , 0 , "Interlingua")
1721 LNG(wxLANGUAGE_INTERLINGUE, "ie" , 0 , 0 , "Interlingue")
1722 LNG(wxLANGUAGE_INUKTITUT, "iu" , 0 , 0 , "Inuktitut")
1723 LNG(wxLANGUAGE_INUPIAK, "ik" , 0 , 0 , "Inupiak")
1724 LNG(wxLANGUAGE_IRISH, "ga_IE", 0 , 0 , "Irish")
1725 LNG(wxLANGUAGE_ITALIAN, "it_IT", LANG_ITALIAN , SUBLANG_ITALIAN , "Italian")
1726 LNG(wxLANGUAGE_ITALIAN_SWISS, "it_CH", LANG_ITALIAN , SUBLANG_ITALIAN_SWISS , "Italian (Swiss)")
1727 LNG(wxLANGUAGE_JAPANESE, "ja_JP", LANG_JAPANESE , SUBLANG_DEFAULT , "Japanese")
1728 LNG(wxLANGUAGE_JAVANESE, "jw" , 0 , 0 , "Javanese")
1729 LNG(wxLANGUAGE_KANNADA, "kn" , LANG_KANNADA , SUBLANG_DEFAULT , "Kannada")
1730 LNG(wxLANGUAGE_KASHMIRI, "ks" , LANG_KASHMIRI , SUBLANG_DEFAULT , "Kashmiri")
1731 LNG(wxLANGUAGE_KASHMIRI_INDIA, "ks_IN", LANG_KASHMIRI , SUBLANG_KASHMIRI_INDIA , "Kashmiri (India)")
1732 LNG(wxLANGUAGE_KAZAKH, "kk" , LANG_KAZAK , SUBLANG_DEFAULT , "Kazakh")
1733 LNG(wxLANGUAGE_KERNEWEK, "kw_GB", 0 , 0 , "Kernewek")
1734 LNG(wxLANGUAGE_KINYARWANDA, "rw" , 0 , 0 , "Kinyarwanda")
1735 LNG(wxLANGUAGE_KIRGHIZ, "ky" , 0 , 0 , "Kirghiz")
1736 LNG(wxLANGUAGE_KIRUNDI, "rn" , 0 , 0 , "Kirundi")
1737 LNG(wxLANGUAGE_KONKANI, "" , LANG_KONKANI , SUBLANG_DEFAULT , "Konkani")
1738 LNG(wxLANGUAGE_KOREAN, "ko_KR", LANG_KOREAN , SUBLANG_KOREAN , "Korean")
1739 LNG(wxLANGUAGE_KURDISH, "ku" , 0 , 0 , "Kurdish")
1740 LNG(wxLANGUAGE_LAOTHIAN, "lo" , 0 , 0 , "Laothian")
1741 LNG(wxLANGUAGE_LATIN, "la" , 0 , 0 , "Latin")
1742 LNG(wxLANGUAGE_LATVIAN, "lv_LV", LANG_LATVIAN , SUBLANG_DEFAULT , "Latvian")
1743 LNG(wxLANGUAGE_LINGALA, "ln" , 0 , 0 , "Lingala")
1744 LNG(wxLANGUAGE_LITHUANIAN, "lt_LT", LANG_LITHUANIAN, SUBLANG_LITHUANIAN , "Lithuanian")
1745 LNG(wxLANGUAGE_MACEDONIAN, "mk_MK", LANG_MACEDONIAN, SUBLANG_DEFAULT , "Macedonian")
1746 LNG(wxLANGUAGE_MALAGASY, "mg" , 0 , 0 , "Malagasy")
1747 LNG(wxLANGUAGE_MALAY, "ms_MY", LANG_MALAY , SUBLANG_DEFAULT , "Malay")
1748 LNG(wxLANGUAGE_MALAYALAM, "ml" , LANG_MALAYALAM , SUBLANG_DEFAULT , "Malayalam")
1749 LNG(wxLANGUAGE_MALAY_BRUNEI_DARUSSALAM, "ms_BN", LANG_MALAY , SUBLANG_MALAY_BRUNEI_DARUSSALAM , "Malay (Brunei Darussalam)")
1750 LNG(wxLANGUAGE_MALAY_MALAYSIA, "ms_MY", LANG_MALAY , SUBLANG_MALAY_MALAYSIA , "Malay (Malaysia)")
1751 LNG(wxLANGUAGE_MALTESE, "mt_MT", 0 , 0 , "Maltese")
1752 LNG(wxLANGUAGE_MANIPURI, "" , LANG_MANIPURI , SUBLANG_DEFAULT , "Manipuri")
1753 LNG(wxLANGUAGE_MAORI, "mi" , 0 , 0 , "Maori")
1754 LNG(wxLANGUAGE_MARATHI, "mr_IN", LANG_MARATHI , SUBLANG_DEFAULT , "Marathi")
1755 LNG(wxLANGUAGE_MOLDAVIAN, "mo" , 0 , 0 , "Moldavian")
1756 LNG(wxLANGUAGE_MONGOLIAN, "mn" , 0 , 0 , "Mongolian")
1757 LNG(wxLANGUAGE_NAURU, "na" , 0 , 0 , "Nauru")
1758 LNG(wxLANGUAGE_NEPALI, "ne" , LANG_NEPALI , SUBLANG_DEFAULT , "Nepali")
1759 LNG(wxLANGUAGE_NEPALI_INDIA, "ne_IN", LANG_NEPALI , SUBLANG_NEPALI_INDIA , "Nepali (India)")
1760 LNG(wxLANGUAGE_NORWEGIAN_BOKMAL, "no_NO", LANG_NORWEGIAN , SUBLANG_NORWEGIAN_BOKMAL , "Norwegian (Bokmal)")
1761 LNG(wxLANGUAGE_NORWEGIAN_NYNORSK, "nn_NO", LANG_NORWEGIAN , SUBLANG_NORWEGIAN_NYNORSK , "Norwegian (Nynorsk)")
1762 LNG(wxLANGUAGE_OCCITAN, "oc" , 0 , 0 , "Occitan")
1763 LNG(wxLANGUAGE_ORIYA, "or" , LANG_ORIYA , SUBLANG_DEFAULT , "Oriya")
1764 LNG(wxLANGUAGE_OROMO, "om" , 0 , 0 , "(Afan) Oromo")
1765 LNG(wxLANGUAGE_PASHTO, "ps" , 0 , 0 , "Pashto, Pushto")
1766 LNG(wxLANGUAGE_POLISH, "pl_PL", LANG_POLISH , SUBLANG_DEFAULT , "Polish")
1767 LNG(wxLANGUAGE_PORTUGUESE, "pt_PT", LANG_PORTUGUESE, SUBLANG_PORTUGUESE , "Portuguese")
1768 LNG(wxLANGUAGE_PORTUGUESE_BRAZILIAN, "pt_BR", LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN , "Portuguese (Brazilian)")
1769 LNG(wxLANGUAGE_PUNJABI, "pa" , LANG_PUNJABI , SUBLANG_DEFAULT , "Punjabi")
1770 LNG(wxLANGUAGE_QUECHUA, "qu" , 0 , 0 , "Quechua")
1771 LNG(wxLANGUAGE_RHAETO_ROMANCE, "rm" , 0 , 0 , "Rhaeto-Romance")
1772 LNG(wxLANGUAGE_ROMANIAN, "ro_RO", LANG_ROMANIAN , SUBLANG_DEFAULT , "Romanian")
1773 LNG(wxLANGUAGE_RUSSIAN, "ru_RU", LANG_RUSSIAN , SUBLANG_DEFAULT , "Russian")
1774 LNG(wxLANGUAGE_RUSSIAN_UKRAINE, "ru_UA", 0 , 0 , "Russian (Ukraine)")
1775 LNG(wxLANGUAGE_SAMOAN, "sm" , 0 , 0 , "Samoan")
1776 LNG(wxLANGUAGE_SANGHO, "sg" , 0 , 0 , "Sangho")
1777 LNG(wxLANGUAGE_SANSKRIT, "sa" , LANG_SANSKRIT , SUBLANG_DEFAULT , "Sanskrit")
1778 LNG(wxLANGUAGE_SCOTS_GAELIC, "gd" , 0 , 0 , "Scots Gaelic")
1779 LNG(wxLANGUAGE_SERBIAN, "sr_YU", LANG_SERBIAN , SUBLANG_DEFAULT , "Serbian")
1780 LNG(wxLANGUAGE_SERBIAN_CYRILLIC, "sr_YU", LANG_SERBIAN , SUBLANG_SERBIAN_CYRILLIC , "Serbian (Cyrillic)")
1781 LNG(wxLANGUAGE_SERBIAN_LATIN, "sr_YU", LANG_SERBIAN , SUBLANG_SERBIAN_LATIN , "Serbian (Latin)")
1782 LNG(wxLANGUAGE_SERBO_CROATIAN, "sh" , 0 , 0 , "Serbo-Croatian")
1783 LNG(wxLANGUAGE_SESOTHO, "st" , 0 , 0 , "Sesotho")
1784 LNG(wxLANGUAGE_SETSWANA, "tn" , 0 , 0 , "Setswana")
1785 LNG(wxLANGUAGE_SHONA, "sn" , 0 , 0 , "Shona")
1786 LNG(wxLANGUAGE_SINDHI, "sd" , LANG_SINDHI , SUBLANG_DEFAULT , "Sindhi")
1787 LNG(wxLANGUAGE_SINHALESE, "si" , 0 , 0 , "Sinhalese")
1788 LNG(wxLANGUAGE_SISWATI, "ss" , 0 , 0 , "Siswati")
1789 LNG(wxLANGUAGE_SLOVAK, "sk_SK", LANG_SLOVAK , SUBLANG_DEFAULT , "Slovak")
1790 LNG(wxLANGUAGE_SLOVENIAN, "sl_SI", LANG_SLOVENIAN , SUBLANG_DEFAULT , "Slovenian")
1791 LNG(wxLANGUAGE_SOMALI, "so" , 0 , 0 , "Somali")
1792 LNG(wxLANGUAGE_SPANISH, "es_ES", LANG_SPANISH , SUBLANG_SPANISH , "Spanish")
1793 LNG(wxLANGUAGE_SPANISH_ARGENTINA, "es_AR", LANG_SPANISH , SUBLANG_SPANISH_ARGENTINA , "Spanish (Argentina)")
1794 LNG(wxLANGUAGE_SPANISH_BOLIVIA, "es_BO", LANG_SPANISH , SUBLANG_SPANISH_BOLIVIA , "Spanish (Bolivia)")
1795 LNG(wxLANGUAGE_SPANISH_CHILE, "es_CL", LANG_SPANISH , SUBLANG_SPANISH_CHILE , "Spanish (Chile)")
1796 LNG(wxLANGUAGE_SPANISH_COLOMBIA, "es_CO", LANG_SPANISH , SUBLANG_SPANISH_COLOMBIA , "Spanish (Colombia)")
1797 LNG(wxLANGUAGE_SPANISH_COSTA_RICA, "es_CR", LANG_SPANISH , SUBLANG_SPANISH_COSTA_RICA , "Spanish (Costa Rica)")
1798 LNG(wxLANGUAGE_SPANISH_DOMINICAN_REPUBLIC, "es_DO", LANG_SPANISH , SUBLANG_SPANISH_DOMINICAN_REPUBLIC, "Spanish (Dominican republic)")
1799 LNG(wxLANGUAGE_SPANISH_ECUADOR, "es_EC", LANG_SPANISH , SUBLANG_SPANISH_ECUADOR , "Spanish (Ecuador)")
1800 LNG(wxLANGUAGE_SPANISH_EL_SALVADOR, "es_SV", LANG_SPANISH , SUBLANG_SPANISH_EL_SALVADOR , "Spanish (El Salvador)")
1801 LNG(wxLANGUAGE_SPANISH_GUATEMALA, "es_GT", LANG_SPANISH , SUBLANG_SPANISH_GUATEMALA , "Spanish (Guatemala)")
1802 LNG(wxLANGUAGE_SPANISH_HONDURAS, "es_HN", LANG_SPANISH , SUBLANG_SPANISH_HONDURAS , "Spanish (Honduras)")
1803 LNG(wxLANGUAGE_SPANISH_MEXICAN, "es_MX", LANG_SPANISH , SUBLANG_SPANISH_MEXICAN , "Spanish (Mexican)")
1804 LNG(wxLANGUAGE_SPANISH_MODERN, "es_ES", LANG_SPANISH , SUBLANG_SPANISH_MODERN , "Spanish (Modern)")
1805 LNG(wxLANGUAGE_SPANISH_NICARAGUA, "es_NI", LANG_SPANISH , SUBLANG_SPANISH_NICARAGUA , "Spanish (Nicaragua)")
1806 LNG(wxLANGUAGE_SPANISH_PANAMA, "es_PA", LANG_SPANISH , SUBLANG_SPANISH_PANAMA , "Spanish (Panama)")
1807 LNG(wxLANGUAGE_SPANISH_PARAGUAY, "es_PY", LANG_SPANISH , SUBLANG_SPANISH_PARAGUAY , "Spanish (Paraguay)")
1808 LNG(wxLANGUAGE_SPANISH_PERU, "es_PE", LANG_SPANISH , SUBLANG_SPANISH_PERU , "Spanish (Peru)")
1809 LNG(wxLANGUAGE_SPANISH_PUERTO_RICO, "es_PR", LANG_SPANISH , SUBLANG_SPANISH_PUERTO_RICO , "Spanish (Puerto Rico)")
1810 LNG(wxLANGUAGE_SPANISH_URUGUAY, "es_UY", LANG_SPANISH , SUBLANG_SPANISH_URUGUAY , "Spanish (Uruguay)")
1811 LNG(wxLANGUAGE_SPANISH_US, "es_US", 0 , 0 , "Spanish (U.S.)")
1812 LNG(wxLANGUAGE_SPANISH_VENEZUELA, "es_VE", LANG_SPANISH , SUBLANG_SPANISH_VENEZUELA , "Spanish (Venezuela)")
1813 LNG(wxLANGUAGE_SUNDANESE, "su" , 0 , 0 , "Sundanese")
1814 LNG(wxLANGUAGE_SWAHILI, "sw_KE", LANG_SWAHILI , SUBLANG_DEFAULT , "Swahili")
1815 LNG(wxLANGUAGE_SWEDISH, "sv_SE", LANG_SWEDISH , SUBLANG_SWEDISH , "Swedish")
1816 LNG(wxLANGUAGE_SWEDISH_FINLAND, "sv_FI", LANG_SWEDISH , SUBLANG_SWEDISH_FINLAND , "Swedish (Finland)")
1817 LNG(wxLANGUAGE_TAGALOG, "tl" , 0 , 0 , "Tagalog")
1818 LNG(wxLANGUAGE_TAJIK, "tg" , 0 , 0 , "Tajik")
1819 LNG(wxLANGUAGE_TAMIL, "ta" , LANG_TAMIL , SUBLANG_DEFAULT , "Tamil")
1820 LNG(wxLANGUAGE_TATAR, "tt" , LANG_TATAR , SUBLANG_DEFAULT , "Tatar")
1821 LNG(wxLANGUAGE_TELUGU, "te" , LANG_TELUGU , SUBLANG_DEFAULT , "Telugu")
1822 LNG(wxLANGUAGE_THAI, "th_TH", LANG_THAI , SUBLANG_DEFAULT , "Thai")
1823 LNG(wxLANGUAGE_TIBETAN, "bo" , 0 , 0 , "Tibetan")
1824 LNG(wxLANGUAGE_TIGRINYA, "ti" , 0 , 0 , "Tigrinya")
1825 LNG(wxLANGUAGE_TONGA, "to" , 0 , 0 , "Tonga")
1826 LNG(wxLANGUAGE_TSONGA, "ts" , 0 , 0 , "Tsonga")
1827 LNG(wxLANGUAGE_TURKISH, "tr_TR", LANG_TURKISH , SUBLANG_DEFAULT , "Turkish")
1828 LNG(wxLANGUAGE_TURKMEN, "tk" , 0 , 0 , "Turkmen")
1829 LNG(wxLANGUAGE_TWI, "tw" , 0 , 0 , "Twi")
1830 LNG(wxLANGUAGE_UIGHUR, "ug" , 0 , 0 , "Uighur")
1831 LNG(wxLANGUAGE_UKRAINIAN, "uk_UA", LANG_UKRAINIAN , SUBLANG_DEFAULT , "Ukrainian")
1832 LNG(wxLANGUAGE_URDU, "ur" , LANG_URDU , SUBLANG_DEFAULT , "Urdu")
1833 LNG(wxLANGUAGE_URDU_INDIA, "ur_IN", LANG_URDU , SUBLANG_URDU_INDIA , "Urdu (India)")
1834 LNG(wxLANGUAGE_URDU_PAKISTAN, "ur_PK", LANG_URDU , SUBLANG_URDU_PAKISTAN , "Urdu (Pakistan)")
1835 LNG(wxLANGUAGE_UZBEK, "uz" , LANG_UZBEK , SUBLANG_DEFAULT , "Uzbek")
1836 LNG(wxLANGUAGE_UZBEK_CYRILLIC, "uz" , LANG_UZBEK , SUBLANG_UZBEK_CYRILLIC , "Uzbek (Cyrillic)")
1837 LNG(wxLANGUAGE_UZBEK_LATIN, "uz" , LANG_UZBEK , SUBLANG_UZBEK_LATIN , "Uzbek (Latin)")
1838 LNG(wxLANGUAGE_VIETNAMESE, "vi_VN", LANG_VIETNAMESE, SUBLANG_DEFAULT , "Vietnamese")
1839 LNG(wxLANGUAGE_VOLAPUK, "vo" , 0 , 0 , "Volapuk")
1840 LNG(wxLANGUAGE_WELSH, "cy" , 0 , 0 , "Welsh")
1841 LNG(wxLANGUAGE_WOLOF, "wo" , 0 , 0 , "Wolof")
1842 LNG(wxLANGUAGE_XHOSA, "xh" , 0 , 0 , "Xhosa")
1843 LNG(wxLANGUAGE_YIDDISH, "yi" , 0 , 0 , "Yiddish")
1844 LNG(wxLANGUAGE_YORUBA, "yo" , 0 , 0 , "Yoruba")
1845 LNG(wxLANGUAGE_ZHUANG, "za" , 0 , 0 , "Zhuang")
1846 LNG(wxLANGUAGE_ZULU, "zu" , 0 , 0 , "Zulu")
1847
1848 };
1849 #undef LNG
1850
1851 // --- --- --- generated code ends here --- --- ---
1852
1853
1854
1855 #endif // wxUSE_INTL
1856