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