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