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