1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Internationalization and localisation for wxWindows
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "intl.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
39 #include "wx/string.h"
40 #include "wx/tokenzr.h"
46 #include "wx/dynarray.h"
48 #include "wx/msw/private.h"
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 // this should *not* be wxChar, this type must have exactly 8 bits!
59 typedef unsigned char size_t8
;
62 #if defined(__WIN16__)
63 typedef unsigned long size_t32
;
64 #elif defined(__WIN32__)
65 typedef unsigned int size_t32
;
67 // Win64 will have different type sizes
68 #error "Please define a 32 bit type"
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
;
77 // assume sizeof(int) == 4 - what else can we do
78 typedef unsigned int size_t32
;
80 // ... but at least check it during run time
81 static class IntSizeChecker
86 // Asserting a sizeof directly causes some compilers to
87 // issue a "using constant in a conditional expression" warning
88 size_t intsize
= sizeof(int);
90 wxASSERT_MSG( intsize
== 4,
91 "size_t32 is incorrectly defined!" );
97 // ----------------------------------------------------------------------------
99 // ----------------------------------------------------------------------------
101 // magic number identifying the .mo format file
102 const size_t32 MSGCATALOG_MAGIC
= 0x950412de;
103 const size_t32 MSGCATALOG_MAGIC_SW
= 0xde120495;
105 // extension of ".mo" files
106 #define MSGCATALOG_EXTENSION _T(".mo")
108 // ----------------------------------------------------------------------------
110 // ----------------------------------------------------------------------------
114 // small class to suppress the translation erros until exit from current scope
118 NoTransErr() { ms_suppressCount
++; }
119 ~NoTransErr() { ms_suppressCount
--; }
121 static bool Suppress() { return ms_suppressCount
> 0; }
124 static size_t ms_suppressCount
;
127 size_t NoTransErr::ms_suppressCount
= 0;
138 #endif // Debug/!Debug
140 static wxLocale
*wxSetLocale(wxLocale
*pLocale
);
142 // ----------------------------------------------------------------------------
143 // wxMsgCatalog corresponds to one disk-file message catalog.
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 // ----------------------------------------------------------------------------
156 // load the catalog from disk (szDirPrefix corresponds to language)
157 bool Load(const wxChar
*szDirPrefix
, const wxChar
*szName
, bool bConvertEncoding
= FALSE
);
158 bool IsLoaded() const { return m_pData
!= NULL
; }
160 // get name of the catalog
161 const wxChar
*GetName() const { return m_pszName
; }
163 // get the translated string: returns NULL if not found
164 const char *GetString(const char *sz
) const;
166 // public variable pointing to the next element in a linked list (or NULL)
167 wxMsgCatalog
*m_pNext
;
170 // this implementation is binary compatible with GNU gettext() version 0.10
172 // an entry in the string table
173 struct wxMsgTableEntry
175 size_t32 nLen
; // length of the string
176 size_t32 ofsString
; // pointer to the string
179 // header of a .mo file
180 struct wxMsgCatalogHeader
182 size_t32 magic
, // offset +00: magic id
183 revision
, // +04: revision
184 numStrings
; // +08: number of strings in the file
185 size_t32 ofsOrigTable
, // +0C: start of original string table
186 ofsTransTable
; // +10: start of translated string table
187 size_t32 nHashSize
, // +14: hash table size
188 ofsHashTable
; // +18: offset of hash table start
191 // all data is stored here, NULL if no data loaded
195 size_t32 m_numStrings
, // number of strings in this domain
196 m_nHashSize
; // number of entries in hash table
197 size_t32
*m_pHashTable
; // pointer to hash table
198 wxMsgTableEntry
*m_pOrigTable
, // pointer to original strings
199 *m_pTransTable
; // translated
201 const char *StringAtOfs(wxMsgTableEntry
*pTable
, size_t32 index
) const
202 { return (const char *)(m_pData
+ Swap(pTable
[index
].ofsString
)); }
204 // convert encoding to platform native one, if neccessary
205 void ConvertEncoding();
208 // calculate the hash value of given string
209 static size_t32
GetHash(const char *sz
);
210 // big<->little endian
211 inline size_t32
Swap(size_t32 ui
) const;
214 bool HasHashTable() const // true if hash table is present
215 { return m_nHashSize
> 2 && m_pHashTable
!= NULL
; }
217 bool m_bSwapped
; // wrong endianness?
219 wxChar
*m_pszName
; // name of the domain
222 // ----------------------------------------------------------------------------
224 // ----------------------------------------------------------------------------
226 // the list of the directories to search for message catalog files
227 static wxArrayString s_searchPrefixes
;
229 // ============================================================================
231 // ============================================================================
233 // ----------------------------------------------------------------------------
234 // wxMsgCatalog class
235 // ----------------------------------------------------------------------------
237 // calculate hash value using the so called hashpjw function by P.J. Weinberger
238 // [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools]
239 size_t32
wxMsgCatalog::GetHash(const char *sz
)
241 #define HASHWORDBITS 32 // the length of size_t32
245 while ( *sz
!= '\0' ) {
247 hval
+= (size_t32
)*sz
++;
248 g
= hval
& ((size_t32
)0xf << (HASHWORDBITS
- 4));
250 hval
^= g
>> (HASHWORDBITS
- 8);
258 // swap the 2 halves of 32 bit integer if needed
259 size_t32
wxMsgCatalog::Swap(size_t32 ui
) const
261 return m_bSwapped
? (ui
<< 24) | ((ui
& 0xff00) << 8) |
262 ((ui
>> 8) & 0xff00) | (ui
>> 24)
266 wxMsgCatalog::wxMsgCatalog()
272 wxMsgCatalog::~wxMsgCatalog()
275 wxDELETEA(m_pszName
);
278 // return all directories to search for given prefix
279 static wxString
GetAllMsgCatalogSubdirs(const wxChar
*prefix
,
284 // search first in prefix/fr/LC_MESSAGES, then in prefix/fr and finally in
285 // prefix (assuming the language is 'fr')
286 searchPath
<< prefix
<< wxFILE_SEP_PATH
<< lang
<< wxFILE_SEP_PATH
287 << wxT("LC_MESSAGES") << wxPATH_SEP
288 << prefix
<< wxFILE_SEP_PATH
<< lang
<< wxPATH_SEP
289 << prefix
<< wxPATH_SEP
;
294 // construct the search path for the given language
295 static wxString
GetFullSearchPath(const wxChar
*lang
)
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
++ )
303 searchPath
<< GetAllMsgCatalogSubdirs(s_searchPrefixes
[n
], lang
)
307 // LC_PATH is a standard env var containing the search path for the .mo
309 const wxChar
*pszLcPath
= wxGetenv(wxT("LC_PATH"));
310 if ( pszLcPath
!= NULL
)
311 searchPath
<< GetAllMsgCatalogSubdirs(pszLcPath
, lang
);
313 // then take the current directory
314 // FIXME it should be the directory of the executable
315 searchPath
<< GetAllMsgCatalogSubdirs(wxT("."), lang
);
317 // and finally add some standard ones
319 << GetAllMsgCatalogSubdirs(wxT("/usr/share/locale"), lang
)
320 << GetAllMsgCatalogSubdirs(wxT("/usr/lib/locale"), lang
)
321 << GetAllMsgCatalogSubdirs(wxT("/usr/local/share/locale"), lang
);
326 // open disk file and read in it's contents
327 bool wxMsgCatalog::Load(const wxChar
*szDirPrefix
, const wxChar
*szName0
, bool bConvertEncoding
)
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!
333 wxString szName
= szName0
;
334 if(szName
.Find(wxT('.')) != -1) // contains a dot
335 szName
= szName
.Left(szName
.Find(wxT('.')));
337 wxString searchPath
= GetFullSearchPath(szDirPrefix
);
338 const wxChar
*sublocale
= wxStrchr(szDirPrefix
, wxT('_'));
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
344 searchPath
<< GetFullSearchPath(wxString(szDirPrefix
).
345 Left((size_t)(sublocale
- szDirPrefix
)))
349 wxString strFile
= szName
;
350 strFile
+= MSGCATALOG_EXTENSION
;
352 // don't give translation errors here because the wxstd catalog might
353 // not yet be loaded (and it's normal)
355 // (we're using an object because we have several return paths)
357 NoTransErr noTransErr
;
358 wxLogVerbose(_("looking for catalog '%s' in path '%s'."),
359 szName
.c_str(), searchPath
.c_str());
361 wxString strFullName
;
362 if ( !wxFindFileInPath(&strFullName
, searchPath
, strFile
) ) {
363 wxLogVerbose(_("catalog file for domain '%s' not found."), szName
.c_str());
368 wxLogVerbose(_("using catalog '%s' from '%s'."),
369 szName
.c_str(), strFullName
.c_str());
371 wxFile
fileMsg(strFullName
);
372 if ( !fileMsg
.IsOpened() )
376 off_t nSize
= fileMsg
.Length();
377 if ( nSize
== wxInvalidOffset
)
380 // read the whole file in memory
381 m_pData
= new size_t8
[nSize
];
382 if ( fileMsg
.Read(m_pData
, nSize
) != nSize
) {
388 bool bValid
= (size_t)nSize
> sizeof(wxMsgCatalogHeader
);
390 wxMsgCatalogHeader
*pHeader
= (wxMsgCatalogHeader
*)m_pData
;
392 // we'll have to swap all the integers if it's true
393 m_bSwapped
= pHeader
->magic
== MSGCATALOG_MAGIC_SW
;
395 // check the magic number
396 bValid
= m_bSwapped
|| pHeader
->magic
== MSGCATALOG_MAGIC
;
400 // it's either too short or has incorrect magic number
401 wxLogWarning(_("'%s' is not a valid message catalog."), strFullName
.c_str());
408 m_numStrings
= Swap(pHeader
->numStrings
);
409 m_pOrigTable
= (wxMsgTableEntry
*)(m_pData
+
410 Swap(pHeader
->ofsOrigTable
));
411 m_pTransTable
= (wxMsgTableEntry
*)(m_pData
+
412 Swap(pHeader
->ofsTransTable
));
414 m_nHashSize
= Swap(pHeader
->nHashSize
);
415 m_pHashTable
= (size_t32
*)(m_pData
+ Swap(pHeader
->ofsHashTable
));
417 m_pszName
= new wxChar
[wxStrlen(szName
) + 1];
418 wxStrcpy(m_pszName
, szName
);
420 if (bConvertEncoding
)
423 // everything is fine
427 // search for a string
428 const char *wxMsgCatalog::GetString(const char *szOrig
) const
430 if ( szOrig
== NULL
)
433 if ( HasHashTable() ) { // use hash table for lookup if possible
434 size_t32 nHashVal
= GetHash(szOrig
);
435 size_t32 nIndex
= nHashVal
% m_nHashSize
;
437 size_t32 nIncr
= 1 + (nHashVal
% (m_nHashSize
- 2));
440 size_t32 nStr
= Swap(m_pHashTable
[nIndex
]);
444 if ( strcmp(szOrig
, StringAtOfs(m_pOrigTable
, nStr
- 1)) == 0 ) {
445 // work around for BC++ 5.5 bug: without a temp var, the optimizer
446 // breaks the code and the return value is incorrect
447 const char *tmp
= StringAtOfs(m_pTransTable
, nStr
- 1);
451 if ( nIndex
>= m_nHashSize
- nIncr
)
452 nIndex
-= m_nHashSize
- nIncr
;
457 else { // no hash table: use default binary search
461 while ( bottom
< top
) {
462 current
= (bottom
+ top
) / 2;
463 int res
= strcmp(szOrig
, StringAtOfs(m_pOrigTable
, current
));
467 bottom
= current
+ 1;
469 // work around the same BC++ 5.5 bug as above
470 const char *tmp
= StringAtOfs(m_pTransTable
, current
);
482 #include "wx/fontmap.h"
483 #include "wx/encconv.h"
486 void wxMsgCatalog::ConvertEncoding()
491 // first, find encoding header:
492 const char *hdr
= StringAtOfs(m_pOrigTable
, 0);
493 if ( hdr
== NULL
|| hdr
[0] != 0 ) {
494 // not supported by this catalog, does not have non-fuzzy header
499 we support catalogs with header (msgid "") that is _not_ marked as "#,
500 fuzzy" (otherwise the string would not be included into compiled
503 wxString
header(StringAtOfs(m_pTransTable
, 0));
505 int pos
= header
.Find(wxT("Content-Type: text/plain; charset="));
506 if (pos
== wxNOT_FOUND
)
507 return; // incorrectly filled Content-Type header
508 size_t n
= pos
+ 34; /*strlen("Content-Type: text/plain; charset=")*/
509 while (header
[n
] != wxT('\n'))
510 charset
<< header
[n
++];
512 enc
= wxTheFontMapper
->CharsetToEncoding(charset
, FALSE
);
513 if ( enc
== wxFONTENCODING_SYSTEM
)
514 return; // unknown encoding
516 wxFontEncodingArray a
= wxEncodingConverter::GetPlatformEquivalents(enc
);
518 return; // no conversion needed, locale uses native encoding
520 if (a
.GetCount() == 0)
521 return; // we don't know common equiv. under this platform
523 wxEncodingConverter converter
;
525 converter
.Init(enc
, a
[0]);
526 for (size_t i
= 0; i
< m_numStrings
; i
++)
527 converter
.Convert((char*)StringAtOfs(m_pTransTable
, i
));
532 // ----------------------------------------------------------------------------
534 // ----------------------------------------------------------------------------
536 #include "wx/arrimpl.cpp"
537 WX_DECLARE_EXPORTED_OBJARRAY(wxLanguageInfo
, wxLanguageInfoArray
);
538 WX_DEFINE_OBJARRAY(wxLanguageInfoArray
);
544 m_pszOldLocale
= NULL
;
546 m_languagesDB
= NULL
;
547 m_language
= wxLANGUAGE_UNKNOWN
;
550 // NB: this function has (desired) side effect of changing current locale
551 bool wxLocale::Init(const wxChar
*szName
,
552 const wxChar
*szShort
,
553 const wxChar
*szLocale
,
555 bool bConvertEncoding
)
557 m_strLocale
= szName
;
558 m_strShort
= szShort
;
559 m_bConvertEncoding
= bConvertEncoding
;
560 m_language
= wxLANGUAGE_UNKNOWN
;
562 // change current locale (default: same as long name)
563 if ( szLocale
== NULL
)
565 // the argument to setlocale()
568 m_pszOldLocale
= wxSetlocale(LC_ALL
, szLocale
);
569 if ( m_pszOldLocale
== NULL
)
570 wxLogError(_("locale '%s' can not be set."), szLocale
);
572 // the short name will be used to look for catalog files as well,
573 // so we need something here
574 if ( m_strShort
.IsEmpty() ) {
575 // FIXME I don't know how these 2 letter abbreviations are formed,
576 // this wild guess is surely wrong
577 m_strShort
= tolower(szLocale
[0]) + tolower(szLocale
[1]);
580 // save the old locale to be able to restore it later
581 m_pOldLocale
= wxSetLocale(this);
583 // load the default catalog with wxWindows standard messages
587 bOk
= AddCatalog(wxT("wxstd"));
594 bool wxLocale::Init(int language
, int flags
)
596 wxLanguageInfo
*info
= NULL
;
599 if (m_languagesDB
== NULL
)
601 m_languagesDB
= new wxLanguageInfoArray
;
605 if (lang
== wxLANGUAGE_DEFAULT
) lang
= GetSystemLanguage();
606 if (lang
!= wxLANGUAGE_UNKNOWN
)
608 for (size_t i
= 0; i
< m_languagesDB
->GetCount(); i
++)
610 if (m_languagesDB
->Item(i
).Language
== lang
)
612 info
= &m_languagesDB
->Item(i
);
618 // We failed to detect system language, so we will use English:
619 if (lang
== wxLANGUAGE_UNKNOWN
)
626 wxLogError(wxT("Unknown language %i."), lang
);
630 wxString name
= info
->Description
;
631 wxString canonical
= info
->CanonicalName
;
637 if (language
== wxLANGUAGE_DEFAULT
) locale
= wxEmptyString
;
638 else locale
= info
->CanonicalName
;
640 retloc
= wxSetlocale(LC_ALL
, locale
);
644 // Some C libraries don't like xx_YY form and require xx only
645 retloc
= wxSetlocale(LC_ALL
, locale
.Mid(0,2));
649 // Some C libraries (namely glibc) still use old ISO 639,
650 // so will translate the abbrev for them
651 wxString mid
= locale
.Mid(0,2);
652 if (mid
== wxT("he")) locale
= wxT("iw") + locale
.Mid(3);
653 else if (mid
== wxT("id")) locale
= wxT("in") + locale
.Mid(3);
654 else if (mid
== wxT("yi")) locale
= wxT("ji") + locale
.Mid(3);
655 retloc
= wxSetlocale(LC_ALL
, locale
);
659 // (This time, we changed locale in previous if-branch, so try again.)
660 // Some C libraries don't like xx_YY form and require xx only
661 retloc
= wxSetlocale(LC_ALL
, locale
.Mid(0,2));
665 wxLogError(wxT("Cannot set locale to '%s'."), locale
.c_str());
669 #elif defined(__WIN32__)
670 if (language
!= wxLANGUAGE_DEFAULT
)
672 if (info
->WinLang
== 0)
674 wxLogWarning(wxT("Locale '%s' not supported by OS."), name
.c_str());
679 wxUint32 lcid
= MAKELCID(MAKELANGID(info
->WinLang
, info
->WinSublang
),
681 if (SetThreadLocale(lcid
))
682 retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
685 // Windows9X doesn't support SetThreadLocale, so we must
686 // translate LCID to CRT's setlocale string ourselves
688 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
691 buffer
[0] = wxT('\0');
692 GetLocaleInfo(lcid
, LOCALE_SENGLANGUAGE
, buffer
, 256);
694 if (GetLocaleInfo(lcid
, LOCALE_SENGCOUNTRY
, buffer
, 256) > 0)
695 locale
<< wxT("_") << buffer
;
697 if (locale
.IsEmpty())
699 wxLogLastError(wxT("SetThreadLocale"));
700 wxLogError(wxT("Cannot set locale to language %s."), name
.c_str());
704 retloc
= wxSetlocale(LC_ALL
, locale
);
709 retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
713 wxLogError(wxT("Cannot set locale to language %s."), name
.c_str());
721 return Init(name
, canonical
, wxString(retloc
),
722 (flags
& wxLOCALE_LOAD_DEFAULT
) != 0,
723 (flags
& wxLOCALE_CONV_ENCODING
) != 0);
728 void wxLocale::AddCatalogLookupPathPrefix(const wxString
& prefix
)
730 if ( s_searchPrefixes
.Index(prefix
) == wxNOT_FOUND
)
732 s_searchPrefixes
.Add(prefix
);
734 //else: already have it
738 int wxLocale::GetSystemLanguage() const
740 int wxlang
= wxLANGUAGE_UNKNOWN
;
743 wxASSERT_MSG(m_languagesDB
!= NULL
, "Languages DB not initialized, call wxLocale::Init!");
745 #if defined(__UNIX__)
747 if (!wxGetEnv(wxT("LC_ALL"), &lang
) &&
748 !wxGetEnv(wxT("LC_MESSAGES"), &lang
) &&
749 !wxGetEnv(wxT("LANG"), &lang
))
750 return wxLANGUAGE_UNKNOWN
;
752 bool is_abbrev
= lang
.Len() == 2 ||
753 (lang
.Len() == 5 && lang
[2] == wxT('_'));
755 // 0. Make sure the abbrev is according to latest ISO 639
756 // (this is neccessary because glibc uses iw and in instead
757 // of he and id respectively).
760 wxString mid
= lang
.Mid(0,2);
761 if (mid
== wxT("iw")) lang
= wxT("he") + lang
.Mid(3);
762 else if (mid
== wxT("in")) lang
= wxT("id") + lang
.Mid(3);
763 else if (mid
== wxT("ji")) lang
= wxT("yi") + lang
.Mid(3);
766 // 1. Try to find the lang as is:
769 for (i
= 0; i
< m_languagesDB
->GetCount(); i
++)
771 if (m_languagesDB
->Item(i
).CanonicalName
== lang
)
773 wxlang
= m_languagesDB
->Item(i
).Language
;
779 // 2. If lang is of the form xx_YY, try to find xx:
780 if (wxlang
== wxLANGUAGE_UNKNOWN
&& is_abbrev
&& lang
.Len() == 5)
782 wxString lang2
= lang
.Mid(0,2);
783 for (i
= 0; i
< m_languagesDB
->GetCount(); i
++)
785 if (m_languagesDB
->Item(i
).CanonicalName
== lang2
)
787 wxlang
= m_languagesDB
->Item(i
).Language
;
793 // 3. If lang is of the form xx, try to find any xx_YY record:
794 if (wxlang
== wxLANGUAGE_UNKNOWN
&& is_abbrev
&& lang
.Len() == 2)
796 for (i
= 0; i
< m_languagesDB
->GetCount(); i
++)
798 if (m_languagesDB
->Item(i
).CanonicalName
.Mid(0,2) == lang
)
800 wxlang
= m_languagesDB
->Item(i
).Language
;
806 // 4. If everything failed, try to find the name in verbose description
807 // (SuSE is known to use LANG="german"):
808 if (wxlang
== wxLANGUAGE_UNKNOWN
&& !is_abbrev
)
810 for (i
= 0; i
< m_languagesDB
->GetCount(); i
++)
812 if (m_languagesDB
->Item(i
).Description
.CmpNoCase(lang
) == 0)
814 wxlang
= m_languagesDB
->Item(i
).Language
;
820 #elif defined(__WIN32__)
821 LCID lcid
= GetUserDefaultLCID();
822 if (lcid
== 0) return wxLANGUAGE_UNKNOWN
;
823 wxUint32 lang
= PRIMARYLANGID(LANGIDFROMLCID(lcid
));
824 wxUint32 sublang
= SUBLANGID(LANGIDFROMLCID(lcid
));
826 for (i
= 0; i
< m_languagesDB
->GetCount(); i
++)
828 if (m_languagesDB
->Item(i
).WinLang
== lang
&&
829 m_languagesDB
->Item(i
).WinSublang
== sublang
)
831 wxlang
= m_languagesDB
->Item(i
).Language
;
842 void wxLocale::AddLanguage(const wxLanguageInfo
& info
)
844 wxASSERT_MSG(m_languagesDB
!= NULL
, "Languages DB not initialized, call wxLocale::Init!");
845 m_languagesDB
->Add(info
);
850 wxString
wxLocale::GetSysName() const
852 return wxSetlocale(LC_ALL
, NULL
);
858 wxLocale::~wxLocale()
861 wxMsgCatalog
*pTmpCat
;
862 while ( m_pMsgCat
!= NULL
) {
864 m_pMsgCat
= m_pMsgCat
->m_pNext
;
868 delete m_languagesDB
;
870 // restore old locale
871 wxSetLocale(m_pOldLocale
);
872 wxSetlocale(LC_ALL
, m_pszOldLocale
);
875 // get the translation of given string in current locale
876 const wxMB2WXbuf
wxLocale::GetString(const wxChar
*szOrigString
,
877 const wxChar
*szDomain
) const
879 if ( wxIsEmpty(szOrigString
) )
882 const char *pszTrans
= NULL
;
884 const wxWX2MBbuf szOrgString
= wxConvCurrent
->cWX2MB(szOrigString
);
886 #define szOrgString szOrigString
887 #endif // Unicode/ANSI
889 wxMsgCatalog
*pMsgCat
;
890 if ( szDomain
!= NULL
) {
891 pMsgCat
= FindCatalog(szDomain
);
893 // does the catalog exist?
894 if ( pMsgCat
!= NULL
)
895 pszTrans
= pMsgCat
->GetString(szOrgString
);
898 // search in all domains
899 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
) {
900 pszTrans
= pMsgCat
->GetString(szOrgString
);
901 if ( pszTrans
!= NULL
) // take the first found
906 if ( pszTrans
== NULL
) {
908 if ( !NoTransErr::Suppress() ) {
909 NoTransErr noTransErr
;
911 if ( szDomain
!= NULL
)
913 wxLogDebug(_T("string '%s' not found in domain '%s' for locale '%s'."),
914 szOrigString
, szDomain
, m_strLocale
.c_str());
918 wxLogDebug(_T("string '%s' not found in locale '%s'."),
919 szOrigString
, m_strLocale
.c_str());
922 #endif // __WXDEBUG__
924 return (wxMB2WXbuf
)(szOrigString
);
928 return wxConvertMB2WX(pszTrans
); // or preferably wxCSConv(charset).cMB2WX(pszTrans) or something,
929 // a macro similar to wxConvertMB2WX could be written for that
935 // find catalog by name in a linked list, return NULL if !found
936 wxMsgCatalog
*wxLocale::FindCatalog(const wxChar
*szDomain
) const
938 // linear search in the linked list
939 wxMsgCatalog
*pMsgCat
;
940 for ( pMsgCat
= m_pMsgCat
; pMsgCat
!= NULL
; pMsgCat
= pMsgCat
->m_pNext
) {
941 if ( wxStricmp(pMsgCat
->GetName(), szDomain
) == 0 )
948 // check if the given catalog is loaded
949 bool wxLocale::IsLoaded(const wxChar
*szDomain
) const
951 return FindCatalog(szDomain
) != NULL
;
954 // add a catalog to our linked list
955 bool wxLocale::AddCatalog(const wxChar
*szDomain
)
957 wxMsgCatalog
*pMsgCat
= new wxMsgCatalog
;
959 if ( pMsgCat
->Load(m_strShort
, szDomain
, m_bConvertEncoding
) ) {
960 // add it to the head of the list so that in GetString it will
961 // be searched before the catalogs added earlier
962 pMsgCat
->m_pNext
= m_pMsgCat
;
968 // don't add it because it couldn't be loaded anyway
980 // ----------------------------------------------------------------------------
981 // global functions and variables
982 // ----------------------------------------------------------------------------
984 // retrieve/change current locale
985 // ------------------------------
987 // the current locale object
988 static wxLocale
*g_pLocale
= NULL
;
990 wxLocale
*wxGetLocale()
995 wxLocale
*wxSetLocale(wxLocale
*pLocale
)
997 wxLocale
*pOld
= g_pLocale
;
1005 // ----------------------------------------------------------------------------
1006 // default languages table & initialization
1007 // ----------------------------------------------------------------------------
1010 // This table is generated by misc/languages/genlang.py
1011 // When making changes, please put them into misc/languages/langtabl.txt
1015 #define SETWINLANG(info,lang,sublang)
1019 #define SETWINLANG(info,lang,sublang) \
1020 info.WinLang = lang, info.WinSublang = sublang;
1022 #ifndef LANG_AFRIKAANS
1023 #define LANG_AFRIKAANS (0)
1025 #ifndef LANG_ALBANIAN
1026 #define LANG_ALBANIAN (0)
1029 #define LANG_ARABIC (0)
1031 #ifndef LANG_ARMENIAN
1032 #define LANG_ARMENIAN (0)
1034 #ifndef LANG_ASSAMESE
1035 #define LANG_ASSAMESE (0)
1038 #define LANG_AZERI (0)
1041 #define LANG_BASQUE (0)
1043 #ifndef LANG_BELARUSIAN
1044 #define LANG_BELARUSIAN (0)
1046 #ifndef LANG_BENGALI
1047 #define LANG_BENGALI (0)
1049 #ifndef LANG_BULGARIAN
1050 #define LANG_BULGARIAN (0)
1052 #ifndef LANG_CATALAN
1053 #define LANG_CATALAN (0)
1055 #ifndef LANG_CHINESE
1056 #define LANG_CHINESE (0)
1058 #ifndef LANG_CROATIAN
1059 #define LANG_CROATIAN (0)
1062 #define LANG_CZECH (0)
1065 #define LANG_DANISH (0)
1068 #define LANG_DUTCH (0)
1070 #ifndef LANG_ENGLISH
1071 #define LANG_ENGLISH (0)
1073 #ifndef LANG_ESTONIAN
1074 #define LANG_ESTONIAN (0)
1076 #ifndef LANG_FAEROESE
1077 #define LANG_FAEROESE (0)
1080 #define LANG_FARSI (0)
1082 #ifndef LANG_FINNISH
1083 #define LANG_FINNISH (0)
1086 #define LANG_FRENCH (0)
1088 #ifndef LANG_GEORGIAN
1089 #define LANG_GEORGIAN (0)
1092 #define LANG_GERMAN (0)
1095 #define LANG_GREEK (0)
1097 #ifndef LANG_GUJARATI
1098 #define LANG_GUJARATI (0)
1101 #define LANG_HEBREW (0)
1104 #define LANG_HINDI (0)
1106 #ifndef LANG_HUNGARIAN
1107 #define LANG_HUNGARIAN (0)
1109 #ifndef LANG_ICELANDIC
1110 #define LANG_ICELANDIC (0)
1112 #ifndef LANG_INDONESIAN
1113 #define LANG_INDONESIAN (0)
1115 #ifndef LANG_ITALIAN
1116 #define LANG_ITALIAN (0)
1118 #ifndef LANG_JAPANESE
1119 #define LANG_JAPANESE (0)
1121 #ifndef LANG_KANNADA
1122 #define LANG_KANNADA (0)
1124 #ifndef LANG_KASHMIRI
1125 #define LANG_KASHMIRI (0)
1128 #define LANG_KAZAK (0)
1130 #ifndef LANG_KONKANI
1131 #define LANG_KONKANI (0)
1134 #define LANG_KOREAN (0)
1136 #ifndef LANG_LATVIAN
1137 #define LANG_LATVIAN (0)
1139 #ifndef LANG_LITHUANIAN
1140 #define LANG_LITHUANIAN (0)
1142 #ifndef LANG_MACEDONIAN
1143 #define LANG_MACEDONIAN (0)
1146 #define LANG_MALAY (0)
1148 #ifndef LANG_MALAYALAM
1149 #define LANG_MALAYALAM (0)
1151 #ifndef LANG_MANIPURI
1152 #define LANG_MANIPURI (0)
1154 #ifndef LANG_MARATHI
1155 #define LANG_MARATHI (0)
1158 #define LANG_NEPALI (0)
1160 #ifndef LANG_NORWEGIAN
1161 #define LANG_NORWEGIAN (0)
1164 #define LANG_ORIYA (0)
1167 #define LANG_POLISH (0)
1169 #ifndef LANG_PORTUGUESE
1170 #define LANG_PORTUGUESE (0)
1172 #ifndef LANG_PUNJABI
1173 #define LANG_PUNJABI (0)
1175 #ifndef LANG_ROMANIAN
1176 #define LANG_ROMANIAN (0)
1178 #ifndef LANG_RUSSIAN
1179 #define LANG_RUSSIAN (0)
1181 #ifndef LANG_SANSKRIT
1182 #define LANG_SANSKRIT (0)
1184 #ifndef LANG_SERBIAN
1185 #define LANG_SERBIAN (0)
1188 #define LANG_SINDHI (0)
1191 #define LANG_SLOVAK (0)
1193 #ifndef LANG_SLOVENIAN
1194 #define LANG_SLOVENIAN (0)
1196 #ifndef LANG_SPANISH
1197 #define LANG_SPANISH (0)
1199 #ifndef LANG_SWAHILI
1200 #define LANG_SWAHILI (0)
1202 #ifndef LANG_SWEDISH
1203 #define LANG_SWEDISH (0)
1206 #define LANG_TAMIL (0)
1209 #define LANG_TATAR (0)
1212 #define LANG_TELUGU (0)
1215 #define LANG_THAI (0)
1217 #ifndef LANG_TURKISH
1218 #define LANG_TURKISH (0)
1220 #ifndef LANG_UKRAINIAN
1221 #define LANG_UKRAINIAN (0)
1224 #define LANG_URDU (0)
1227 #define LANG_UZBEK (0)
1229 #ifndef LANG_VIETNAMESE
1230 #define LANG_VIETNAMESE (0)
1232 #ifndef SUBLANG_ARABIC_ALGERIA
1233 #define SUBLANG_ARABIC_ALGERIA SUBLANG_DEFAULT
1235 #ifndef SUBLANG_ARABIC_BAHRAIN
1236 #define SUBLANG_ARABIC_BAHRAIN SUBLANG_DEFAULT
1238 #ifndef SUBLANG_ARABIC_EGYPT
1239 #define SUBLANG_ARABIC_EGYPT SUBLANG_DEFAULT
1241 #ifndef SUBLANG_ARABIC_IRAQ
1242 #define SUBLANG_ARABIC_IRAQ SUBLANG_DEFAULT
1244 #ifndef SUBLANG_ARABIC_JORDAN
1245 #define SUBLANG_ARABIC_JORDAN SUBLANG_DEFAULT
1247 #ifndef SUBLANG_ARABIC_KUWAIT
1248 #define SUBLANG_ARABIC_KUWAIT SUBLANG_DEFAULT
1250 #ifndef SUBLANG_ARABIC_LEBANON
1251 #define SUBLANG_ARABIC_LEBANON SUBLANG_DEFAULT
1253 #ifndef SUBLANG_ARABIC_LIBYA
1254 #define SUBLANG_ARABIC_LIBYA SUBLANG_DEFAULT
1256 #ifndef SUBLANG_ARABIC_MOROCCO
1257 #define SUBLANG_ARABIC_MOROCCO SUBLANG_DEFAULT
1259 #ifndef SUBLANG_ARABIC_OMAN
1260 #define SUBLANG_ARABIC_OMAN SUBLANG_DEFAULT
1262 #ifndef SUBLANG_ARABIC_QATAR
1263 #define SUBLANG_ARABIC_QATAR SUBLANG_DEFAULT
1265 #ifndef SUBLANG_ARABIC_SAUDI_ARABIA
1266 #define SUBLANG_ARABIC_SAUDI_ARABIA SUBLANG_DEFAULT
1268 #ifndef SUBLANG_ARABIC_SYRIA
1269 #define SUBLANG_ARABIC_SYRIA SUBLANG_DEFAULT
1271 #ifndef SUBLANG_ARABIC_TUNISIA
1272 #define SUBLANG_ARABIC_TUNISIA SUBLANG_DEFAULT
1274 #ifndef SUBLANG_ARABIC_UAE
1275 #define SUBLANG_ARABIC_UAE SUBLANG_DEFAULT
1277 #ifndef SUBLANG_ARABIC_YEMEN
1278 #define SUBLANG_ARABIC_YEMEN SUBLANG_DEFAULT
1280 #ifndef SUBLANG_AZERI_CYRILLIC
1281 #define SUBLANG_AZERI_CYRILLIC SUBLANG_DEFAULT
1283 #ifndef SUBLANG_AZERI_LATIN
1284 #define SUBLANG_AZERI_LATIN SUBLANG_DEFAULT
1286 #ifndef SUBLANG_CHINESE_SIMPLIFIED
1287 #define SUBLANG_CHINESE_SIMPLIFIED SUBLANG_DEFAULT
1289 #ifndef SUBLANG_CHINESE_TRADITIONAL
1290 #define SUBLANG_CHINESE_TRADITIONAL SUBLANG_DEFAULT
1292 #ifndef SUBLANG_CHINESE_HONGKONG
1293 #define SUBLANG_CHINESE_HONGKONG SUBLANG_DEFAULT
1295 #ifndef SUBLANG_CHINESE_MACAU
1296 #define SUBLANG_CHINESE_MACAU SUBLANG_DEFAULT
1298 #ifndef SUBLANG_CHINESE_SINGAPORE
1299 #define SUBLANG_CHINESE_SINGAPORE SUBLANG_DEFAULT
1301 #ifndef SUBLANG_DUTCH
1302 #define SUBLANG_DUTCH SUBLANG_DEFAULT
1304 #ifndef SUBLANG_DUTCH_BELGIAN
1305 #define SUBLANG_DUTCH_BELGIAN SUBLANG_DEFAULT
1307 #ifndef SUBLANG_ENGLISH_UK
1308 #define SUBLANG_ENGLISH_UK SUBLANG_DEFAULT
1310 #ifndef SUBLANG_ENGLISH_US
1311 #define SUBLANG_ENGLISH_US SUBLANG_DEFAULT
1313 #ifndef SUBLANG_ENGLISH_AUS
1314 #define SUBLANG_ENGLISH_AUS SUBLANG_DEFAULT
1316 #ifndef SUBLANG_ENGLISH_BELIZE
1317 #define SUBLANG_ENGLISH_BELIZE SUBLANG_DEFAULT
1319 #ifndef SUBLANG_ENGLISH_CAN
1320 #define SUBLANG_ENGLISH_CAN SUBLANG_DEFAULT
1322 #ifndef SUBLANG_ENGLISH_CARIBBEAN
1323 #define SUBLANG_ENGLISH_CARIBBEAN SUBLANG_DEFAULT
1325 #ifndef SUBLANG_ENGLISH_EIRE
1326 #define SUBLANG_ENGLISH_EIRE SUBLANG_DEFAULT
1328 #ifndef SUBLANG_ENGLISH_JAMAICA
1329 #define SUBLANG_ENGLISH_JAMAICA SUBLANG_DEFAULT
1331 #ifndef SUBLANG_ENGLISH_NZ
1332 #define SUBLANG_ENGLISH_NZ SUBLANG_DEFAULT
1334 #ifndef SUBLANG_ENGLISH_PHILIPPINES
1335 #define SUBLANG_ENGLISH_PHILIPPINES SUBLANG_DEFAULT
1337 #ifndef SUBLANG_ENGLISH_SOUTH_AFRICA
1338 #define SUBLANG_ENGLISH_SOUTH_AFRICA SUBLANG_DEFAULT
1340 #ifndef SUBLANG_ENGLISH_TRINIDAD
1341 #define SUBLANG_ENGLISH_TRINIDAD SUBLANG_DEFAULT
1343 #ifndef SUBLANG_ENGLISH_ZIMBABWE
1344 #define SUBLANG_ENGLISH_ZIMBABWE SUBLANG_DEFAULT
1346 #ifndef SUBLANG_FRENCH
1347 #define SUBLANG_FRENCH SUBLANG_DEFAULT
1349 #ifndef SUBLANG_FRENCH_BELGIAN
1350 #define SUBLANG_FRENCH_BELGIAN SUBLANG_DEFAULT
1352 #ifndef SUBLANG_FRENCH_CANADIAN
1353 #define SUBLANG_FRENCH_CANADIAN SUBLANG_DEFAULT
1355 #ifndef SUBLANG_FRENCH_LUXEMBOURG
1356 #define SUBLANG_FRENCH_LUXEMBOURG SUBLANG_DEFAULT
1358 #ifndef SUBLANG_FRENCH_MONACO
1359 #define SUBLANG_FRENCH_MONACO SUBLANG_DEFAULT
1361 #ifndef SUBLANG_FRENCH_SWISS
1362 #define SUBLANG_FRENCH_SWISS SUBLANG_DEFAULT
1364 #ifndef SUBLANG_GERMAN
1365 #define SUBLANG_GERMAN SUBLANG_DEFAULT
1367 #ifndef SUBLANG_GERMAN_AUSTRIAN
1368 #define SUBLANG_GERMAN_AUSTRIAN SUBLANG_DEFAULT
1370 #ifndef SUBLANG_GERMAN_LIECHTENSTEIN
1371 #define SUBLANG_GERMAN_LIECHTENSTEIN SUBLANG_DEFAULT
1373 #ifndef SUBLANG_GERMAN_LUXEMBOURG
1374 #define SUBLANG_GERMAN_LUXEMBOURG SUBLANG_DEFAULT
1376 #ifndef SUBLANG_GERMAN_SWISS
1377 #define SUBLANG_GERMAN_SWISS SUBLANG_DEFAULT
1379 #ifndef SUBLANG_ITALIAN
1380 #define SUBLANG_ITALIAN SUBLANG_DEFAULT
1382 #ifndef SUBLANG_ITALIAN_SWISS
1383 #define SUBLANG_ITALIAN_SWISS SUBLANG_DEFAULT
1385 #ifndef SUBLANG_KASHMIRI_INDIA
1386 #define SUBLANG_KASHMIRI_INDIA SUBLANG_DEFAULT
1388 #ifndef SUBLANG_KOREAN
1389 #define SUBLANG_KOREAN SUBLANG_DEFAULT
1391 #ifndef SUBLANG_LITHUANIAN
1392 #define SUBLANG_LITHUANIAN SUBLANG_DEFAULT
1394 #ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM
1395 #define SUBLANG_MALAY_BRUNEI_DARUSSALAM SUBLANG_DEFAULT
1397 #ifndef SUBLANG_MALAY_MALAYSIA
1398 #define SUBLANG_MALAY_MALAYSIA SUBLANG_DEFAULT
1400 #ifndef SUBLANG_NEPALI_INDIA
1401 #define SUBLANG_NEPALI_INDIA SUBLANG_DEFAULT
1403 #ifndef SUBLANG_NORWEGIAN_BOKMAL
1404 #define SUBLANG_NORWEGIAN_BOKMAL SUBLANG_DEFAULT
1406 #ifndef SUBLANG_NORWEGIAN_NYNORSK
1407 #define SUBLANG_NORWEGIAN_NYNORSK SUBLANG_DEFAULT
1409 #ifndef SUBLANG_PORTUGUESE
1410 #define SUBLANG_PORTUGUESE SUBLANG_DEFAULT
1412 #ifndef SUBLANG_PORTUGUESE_BRAZILIAN
1413 #define SUBLANG_PORTUGUESE_BRAZILIAN SUBLANG_DEFAULT
1415 #ifndef SUBLANG_SERBIAN_CYRILLIC
1416 #define SUBLANG_SERBIAN_CYRILLIC SUBLANG_DEFAULT
1418 #ifndef SUBLANG_SERBIAN_LATIN
1419 #define SUBLANG_SERBIAN_LATIN SUBLANG_DEFAULT
1421 #ifndef SUBLANG_SPANISH
1422 #define SUBLANG_SPANISH SUBLANG_DEFAULT
1424 #ifndef SUBLANG_SPANISH_ARGENTINA
1425 #define SUBLANG_SPANISH_ARGENTINA SUBLANG_DEFAULT
1427 #ifndef SUBLANG_SPANISH_BOLIVIA
1428 #define SUBLANG_SPANISH_BOLIVIA SUBLANG_DEFAULT
1430 #ifndef SUBLANG_SPANISH_CHILE
1431 #define SUBLANG_SPANISH_CHILE SUBLANG_DEFAULT
1433 #ifndef SUBLANG_SPANISH_COLOMBIA
1434 #define SUBLANG_SPANISH_COLOMBIA SUBLANG_DEFAULT
1436 #ifndef SUBLANG_SPANISH_COSTA_RICA
1437 #define SUBLANG_SPANISH_COSTA_RICA SUBLANG_DEFAULT
1439 #ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC
1440 #define SUBLANG_SPANISH_DOMINICAN_REPUBLIC SUBLANG_DEFAULT
1442 #ifndef SUBLANG_SPANISH_ECUADOR
1443 #define SUBLANG_SPANISH_ECUADOR SUBLANG_DEFAULT
1445 #ifndef SUBLANG_SPANISH_EL_SALVADOR
1446 #define SUBLANG_SPANISH_EL_SALVADOR SUBLANG_DEFAULT
1448 #ifndef SUBLANG_SPANISH_GUATEMALA
1449 #define SUBLANG_SPANISH_GUATEMALA SUBLANG_DEFAULT
1451 #ifndef SUBLANG_SPANISH_HONDURAS
1452 #define SUBLANG_SPANISH_HONDURAS SUBLANG_DEFAULT
1454 #ifndef SUBLANG_SPANISH_MEXICAN
1455 #define SUBLANG_SPANISH_MEXICAN SUBLANG_DEFAULT
1457 #ifndef SUBLANG_SPANISH_MODERN
1458 #define SUBLANG_SPANISH_MODERN SUBLANG_DEFAULT
1460 #ifndef SUBLANG_SPANISH_NICARAGUA
1461 #define SUBLANG_SPANISH_NICARAGUA SUBLANG_DEFAULT
1463 #ifndef SUBLANG_SPANISH_PANAMA
1464 #define SUBLANG_SPANISH_PANAMA SUBLANG_DEFAULT
1466 #ifndef SUBLANG_SPANISH_PARAGUAY
1467 #define SUBLANG_SPANISH_PARAGUAY SUBLANG_DEFAULT
1469 #ifndef SUBLANG_SPANISH_PERU
1470 #define SUBLANG_SPANISH_PERU SUBLANG_DEFAULT
1472 #ifndef SUBLANG_SPANISH_PUERTO_RICO
1473 #define SUBLANG_SPANISH_PUERTO_RICO SUBLANG_DEFAULT
1475 #ifndef SUBLANG_SPANISH_URUGUAY
1476 #define SUBLANG_SPANISH_URUGUAY SUBLANG_DEFAULT
1478 #ifndef SUBLANG_SPANISH_VENEZUELA
1479 #define SUBLANG_SPANISH_VENEZUELA SUBLANG_DEFAULT
1481 #ifndef SUBLANG_SWEDISH
1482 #define SUBLANG_SWEDISH SUBLANG_DEFAULT
1484 #ifndef SUBLANG_SWEDISH_FINLAND
1485 #define SUBLANG_SWEDISH_FINLAND SUBLANG_DEFAULT
1487 #ifndef SUBLANG_URDU_INDIA
1488 #define SUBLANG_URDU_INDIA SUBLANG_DEFAULT
1490 #ifndef SUBLANG_URDU_PAKISTAN
1491 #define SUBLANG_URDU_PAKISTAN SUBLANG_DEFAULT
1493 #ifndef SUBLANG_UZBEK_CYRILLIC
1494 #define SUBLANG_UZBEK_CYRILLIC SUBLANG_DEFAULT
1496 #ifndef SUBLANG_UZBEK_LATIN
1497 #define SUBLANG_UZBEK_LATIN SUBLANG_DEFAULT
1503 #define LNG(wxlang, canonical, winlang, winsublang, desc) \
1504 info.Language = wxlang; \
1505 info.CanonicalName = wxT(canonical); \
1506 info.Description = desc; \
1507 SETWINLANG(info, winlang, winsublang) \
1510 void wxLocale::InitLanguagesDB()
1512 wxLanguageInfo info
;
1513 wxStringTokenizer tkn
;
1515 LNG(wxLANGUAGE_ABKHAZIAN
, "ab" , 0 , 0 , "Abkhazian")
1516 LNG(wxLANGUAGE_AFAR
, "aa" , 0 , 0 , "Afar")
1517 LNG(wxLANGUAGE_AFRIKAANS
, "af_ZA", LANG_AFRIKAANS
, SUBLANG_DEFAULT
, "Afrikaans")
1518 LNG(wxLANGUAGE_ALBANIAN
, "sq_AL", LANG_ALBANIAN
, SUBLANG_DEFAULT
, "Albanian")
1519 LNG(wxLANGUAGE_AMHARIC
, "am" , 0 , 0 , "Amharic")
1520 LNG(wxLANGUAGE_ARABIC
, "ar" , LANG_ARABIC
, SUBLANG_DEFAULT
, "Arabic")
1521 LNG(wxLANGUAGE_ARABIC_ALGERIA
, "ar_DZ", LANG_ARABIC
, SUBLANG_ARABIC_ALGERIA
, "Arabic (Algeria)")
1522 LNG(wxLANGUAGE_ARABIC_BAHRAIN
, "ar_BH", LANG_ARABIC
, SUBLANG_ARABIC_BAHRAIN
, "Arabic (Bahrain)")
1523 LNG(wxLANGUAGE_ARABIC_EGYPT
, "ar_EG", LANG_ARABIC
, SUBLANG_ARABIC_EGYPT
, "Arabic (Egypt)")
1524 LNG(wxLANGUAGE_ARABIC_IRAQ
, "ar_IQ", LANG_ARABIC
, SUBLANG_ARABIC_IRAQ
, "Arabic (Iraq)")
1525 LNG(wxLANGUAGE_ARABIC_JORDAN
, "ar_JO", LANG_ARABIC
, SUBLANG_ARABIC_JORDAN
, "Arabic (Jordan)")
1526 LNG(wxLANGUAGE_ARABIC_KUWAIT
, "ar_KW", LANG_ARABIC
, SUBLANG_ARABIC_KUWAIT
, "Arabic (Kuwait)")
1527 LNG(wxLANGUAGE_ARABIC_LEBANON
, "ar_LB", LANG_ARABIC
, SUBLANG_ARABIC_LEBANON
, "Arabic (Lebanon)")
1528 LNG(wxLANGUAGE_ARABIC_LIBYA
, "ar_LY", LANG_ARABIC
, SUBLANG_ARABIC_LIBYA
, "Arabic (Libya)")
1529 LNG(wxLANGUAGE_ARABIC_MOROCCO
, "ar_MA", LANG_ARABIC
, SUBLANG_ARABIC_MOROCCO
, "Arabic (Morocco)")
1530 LNG(wxLANGUAGE_ARABIC_OMAN
, "ar_OM", LANG_ARABIC
, SUBLANG_ARABIC_OMAN
, "Arabic (Oman)")
1531 LNG(wxLANGUAGE_ARABIC_QATAR
, "ar_QA", LANG_ARABIC
, SUBLANG_ARABIC_QATAR
, "Arabic (Qatar)")
1532 LNG(wxLANGUAGE_ARABIC_SAUDI_ARABIA
, "ar_SA", LANG_ARABIC
, SUBLANG_ARABIC_SAUDI_ARABIA
, "Arabic (Saudi Arabia)")
1533 LNG(wxLANGUAGE_ARABIC_SUDAN
, "ar_SD", 0 , 0 , "Arabic (Sudan)")
1534 LNG(wxLANGUAGE_ARABIC_SYRIA
, "ar_SY", LANG_ARABIC
, SUBLANG_ARABIC_SYRIA
, "Arabic (Syria)")
1535 LNG(wxLANGUAGE_ARABIC_TUNISIA
, "ar_TN", LANG_ARABIC
, SUBLANG_ARABIC_TUNISIA
, "Arabic (Tunisia)")
1536 LNG(wxLANGUAGE_ARABIC_UAE
, "ar_AE", LANG_ARABIC
, SUBLANG_ARABIC_UAE
, "Arabic (Uae)")
1537 LNG(wxLANGUAGE_ARABIC_YEMEN
, "ar_YE", LANG_ARABIC
, SUBLANG_ARABIC_YEMEN
, "Arabic (Yemen)")
1538 LNG(wxLANGUAGE_ARMENIAN
, "hy" , LANG_ARMENIAN
, SUBLANG_DEFAULT
, "Armenian")
1539 LNG(wxLANGUAGE_ASSAMESE
, "as" , LANG_ASSAMESE
, SUBLANG_DEFAULT
, "Assamese")
1540 LNG(wxLANGUAGE_AYMARA
, "ay" , 0 , 0 , "Aymara")
1541 LNG(wxLANGUAGE_AZERI
, "az" , LANG_AZERI
, SUBLANG_DEFAULT
, "Azeri")
1542 LNG(wxLANGUAGE_AZERI_CYRILLIC
, "az" , LANG_AZERI
, SUBLANG_AZERI_CYRILLIC
, "Azeri (Cyrillic)")
1543 LNG(wxLANGUAGE_AZERI_LATIN
, "az" , LANG_AZERI
, SUBLANG_AZERI_LATIN
, "Azeri (Latin)")
1544 LNG(wxLANGUAGE_BASHKIR
, "ba" , 0 , 0 , "Bashkir")
1545 LNG(wxLANGUAGE_BASQUE
, "eu_ES", LANG_BASQUE
, SUBLANG_DEFAULT
, "Basque")
1546 LNG(wxLANGUAGE_BELARUSIAN
, "be_BY", LANG_BELARUSIAN
, SUBLANG_DEFAULT
, "Belarusian")
1547 LNG(wxLANGUAGE_BENGALI
, "bn" , LANG_BENGALI
, SUBLANG_DEFAULT
, "Bengali")
1548 LNG(wxLANGUAGE_BHUTANI
, "dz" , 0 , 0 , "Bhutani")
1549 LNG(wxLANGUAGE_BIHARI
, "bh" , 0 , 0 , "Bihari")
1550 LNG(wxLANGUAGE_BISLAMA
, "bi" , 0 , 0 , "Bislama")
1551 LNG(wxLANGUAGE_BRETON
, "br" , 0 , 0 , "Breton")
1552 LNG(wxLANGUAGE_BULGARIAN
, "bg_BG", LANG_BULGARIAN
, SUBLANG_DEFAULT
, "Bulgarian")
1553 LNG(wxLANGUAGE_BURMESE
, "my" , 0 , 0 , "Burmese")
1554 LNG(wxLANGUAGE_CAMBODIAN
, "km" , 0 , 0 , "Cambodian")
1555 LNG(wxLANGUAGE_CATALAN
, "ca_ES", LANG_CATALAN
, SUBLANG_DEFAULT
, "Catalan")
1556 LNG(wxLANGUAGE_CHINESE
, "zh_CN", LANG_CHINESE
, SUBLANG_DEFAULT
, "Chinese")
1557 LNG(wxLANGUAGE_CHINESE_SIMPLIFIED
, "zh_CN", LANG_CHINESE
, SUBLANG_CHINESE_SIMPLIFIED
, "Chinese (Simplified)")
1558 LNG(wxLANGUAGE_CHINESE_TRADITIONAL
, "zh_CN", LANG_CHINESE
, SUBLANG_CHINESE_TRADITIONAL
, "Chinese (Traditional)")
1559 LNG(wxLANGUAGE_CHINESE_HONGKONG
, "zh_HK", LANG_CHINESE
, SUBLANG_CHINESE_HONGKONG
, "Chinese (Hongkong)")
1560 LNG(wxLANGUAGE_CHINESE_MACAU
, "zh_MO", LANG_CHINESE
, SUBLANG_CHINESE_MACAU
, "Chinese (Macau)")
1561 LNG(wxLANGUAGE_CHINESE_SINGAPORE
, "zh_SG", LANG_CHINESE
, SUBLANG_CHINESE_SINGAPORE
, "Chinese (Singapore)")
1562 LNG(wxLANGUAGE_CHINESE_TAIWAN
, "zh_TW", 0 , 0 , "Chinese (Taiwan)")
1563 LNG(wxLANGUAGE_CORSICAN
, "co" , 0 , 0 , "Corsican")
1564 LNG(wxLANGUAGE_CROATIAN
, "hr_HR", LANG_CROATIAN
, SUBLANG_DEFAULT
, "Croatian")
1565 LNG(wxLANGUAGE_CZECH
, "cs_CZ", LANG_CZECH
, SUBLANG_DEFAULT
, "Czech")
1566 LNG(wxLANGUAGE_DANISH
, "da_DK", LANG_DANISH
, SUBLANG_DEFAULT
, "Danish")
1567 LNG(wxLANGUAGE_DUTCH
, "nl_NL", LANG_DUTCH
, SUBLANG_DUTCH
, "Dutch")
1568 LNG(wxLANGUAGE_DUTCH_BELGIAN
, "nl_BE", LANG_DUTCH
, SUBLANG_DUTCH_BELGIAN
, "Dutch (Belgian)")
1569 LNG(wxLANGUAGE_ENGLISH
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, "English")
1570 LNG(wxLANGUAGE_ENGLISH_UK
, "en_GB", LANG_ENGLISH
, SUBLANG_ENGLISH_UK
, "English (U.K.)")
1571 LNG(wxLANGUAGE_ENGLISH_US
, "en_US", LANG_ENGLISH
, SUBLANG_ENGLISH_US
, "English (U.S.)")
1572 LNG(wxLANGUAGE_ENGLISH_AUSTRALIA
, "en_AU", LANG_ENGLISH
, SUBLANG_ENGLISH_AUS
, "English (Australia)")
1573 LNG(wxLANGUAGE_ENGLISH_BELIZE
, "en_BZ", LANG_ENGLISH
, SUBLANG_ENGLISH_BELIZE
, "English (Belize)")
1574 LNG(wxLANGUAGE_ENGLISH_BOTSWANA
, "en_BW", 0 , 0 , "English (Botswana)")
1575 LNG(wxLANGUAGE_ENGLISH_CANADA
, "en_CA", LANG_ENGLISH
, SUBLANG_ENGLISH_CAN
, "English (Canada)")
1576 LNG(wxLANGUAGE_ENGLISH_CARIBBEAN
, "en_CB", LANG_ENGLISH
, SUBLANG_ENGLISH_CARIBBEAN
, "English (Caribbean)")
1577 LNG(wxLANGUAGE_ENGLISH_DENMARK
, "en_DK", 0 , 0 , "English (Denmark)")
1578 LNG(wxLANGUAGE_ENGLISH_EIRE
, "en_IE", LANG_ENGLISH
, SUBLANG_ENGLISH_EIRE
, "English (Eire)")
1579 LNG(wxLANGUAGE_ENGLISH_JAMAICA
, "en_JM", LANG_ENGLISH
, SUBLANG_ENGLISH_JAMAICA
, "English (Jamaica)")
1580 LNG(wxLANGUAGE_ENGLISH_NEW_ZEALAND
, "en_NZ", LANG_ENGLISH
, SUBLANG_ENGLISH_NZ
, "English (New Zealand)")
1581 LNG(wxLANGUAGE_ENGLISH_PHILIPPINES
, "en_PH", LANG_ENGLISH
, SUBLANG_ENGLISH_PHILIPPINES
, "English (Philippines)")
1582 LNG(wxLANGUAGE_ENGLISH_SOUTH_AFRICA
, "en_ZA", LANG_ENGLISH
, SUBLANG_ENGLISH_SOUTH_AFRICA
, "English (South Africa)")
1583 LNG(wxLANGUAGE_ENGLISH_TRINIDAD
, "en_TT", LANG_ENGLISH
, SUBLANG_ENGLISH_TRINIDAD
, "English (Trinidad)")
1584 LNG(wxLANGUAGE_ENGLISH_ZIMBABWE
, "en_ZW", LANG_ENGLISH
, SUBLANG_ENGLISH_ZIMBABWE
, "English (Zimbabwe)")
1585 LNG(wxLANGUAGE_ESPERANTO
, "eo" , 0 , 0 , "Esperanto")
1586 LNG(wxLANGUAGE_ESTONIAN
, "et_EE", LANG_ESTONIAN
, SUBLANG_DEFAULT
, "Estonian")
1587 LNG(wxLANGUAGE_FAEROESE
, "fo_FO", LANG_FAEROESE
, SUBLANG_DEFAULT
, "Faeroese")
1588 LNG(wxLANGUAGE_FARSI
, "fa_IR", LANG_FARSI
, SUBLANG_DEFAULT
, "Farsi")
1589 LNG(wxLANGUAGE_FIJI
, "fj" , 0 , 0 , "Fiji")
1590 LNG(wxLANGUAGE_FINNISH
, "fi_FI", LANG_FINNISH
, SUBLANG_DEFAULT
, "Finnish")
1591 LNG(wxLANGUAGE_FRENCH
, "fr_FR", LANG_FRENCH
, SUBLANG_FRENCH
, "French")
1592 LNG(wxLANGUAGE_FRENCH_BELGIAN
, "fr_BE", LANG_FRENCH
, SUBLANG_FRENCH_BELGIAN
, "French (Belgian)")
1593 LNG(wxLANGUAGE_FRENCH_CANADIAN
, "fr_CA", LANG_FRENCH
, SUBLANG_FRENCH_CANADIAN
, "French (Canadian)")
1594 LNG(wxLANGUAGE_FRENCH_LUXEMBOURG
, "fr_LU", LANG_FRENCH
, SUBLANG_FRENCH_LUXEMBOURG
, "French (Luxembourg)")
1595 LNG(wxLANGUAGE_FRENCH_MONACO
, "fr_MC", LANG_FRENCH
, SUBLANG_FRENCH_MONACO
, "French (Monaco)")
1596 LNG(wxLANGUAGE_FRENCH_SWISS
, "fr_CH", LANG_FRENCH
, SUBLANG_FRENCH_SWISS
, "French (Swiss)")
1597 LNG(wxLANGUAGE_FRISIAN
, "fy" , 0 , 0 , "Frisian")
1598 LNG(wxLANGUAGE_GALICIAN
, "gl_ES", 0 , 0 , "Galician")
1599 LNG(wxLANGUAGE_GEORGIAN
, "ka" , LANG_GEORGIAN
, SUBLANG_DEFAULT
, "Georgian")
1600 LNG(wxLANGUAGE_GERMAN
, "de_DE", LANG_GERMAN
, SUBLANG_GERMAN
, "German")
1601 LNG(wxLANGUAGE_GERMAN_AUSTRIAN
, "de_AT", LANG_GERMAN
, SUBLANG_GERMAN_AUSTRIAN
, "German (Austrian)")
1602 LNG(wxLANGUAGE_GERMAN_BELGIUM
, "de_BE", 0 , 0 , "German (Belgium)")
1603 LNG(wxLANGUAGE_GERMAN_LIECHTENSTEIN
, "de_LI", LANG_GERMAN
, SUBLANG_GERMAN_LIECHTENSTEIN
, "German (Liechtenstein)")
1604 LNG(wxLANGUAGE_GERMAN_LUXEMBOURG
, "de_LU", LANG_GERMAN
, SUBLANG_GERMAN_LUXEMBOURG
, "German (Luxembourg)")
1605 LNG(wxLANGUAGE_GERMAN_SWISS
, "de_CH", LANG_GERMAN
, SUBLANG_GERMAN_SWISS
, "German (Swiss)")
1606 LNG(wxLANGUAGE_GREEK
, "el_GR", LANG_GREEK
, SUBLANG_DEFAULT
, "Greek")
1607 LNG(wxLANGUAGE_GREENLANDIC
, "kl_GL", 0 , 0 , "Greenlandic")
1608 LNG(wxLANGUAGE_GUARANI
, "gn" , 0 , 0 , "Guarani")
1609 LNG(wxLANGUAGE_GUJARATI
, "gu" , LANG_GUJARATI
, SUBLANG_DEFAULT
, "Gujarati")
1610 LNG(wxLANGUAGE_HAUSA
, "ha" , 0 , 0 , "Hausa")
1611 LNG(wxLANGUAGE_HEBREW
, "he_IL", LANG_HEBREW
, SUBLANG_DEFAULT
, "Hebrew")
1612 LNG(wxLANGUAGE_HINDI
, "hi_IN", LANG_HINDI
, SUBLANG_DEFAULT
, "Hindi")
1613 LNG(wxLANGUAGE_HUNGARIAN
, "hu_HU", LANG_HUNGARIAN
, SUBLANG_DEFAULT
, "Hungarian")
1614 LNG(wxLANGUAGE_ICELANDIC
, "is_IS", LANG_ICELANDIC
, SUBLANG_DEFAULT
, "Icelandic")
1615 LNG(wxLANGUAGE_INDONESIAN
, "id_ID", LANG_INDONESIAN
, SUBLANG_DEFAULT
, "Indonesian")
1616 LNG(wxLANGUAGE_INTERLINGUA
, "ia" , 0 , 0 , "Interlingua")
1617 LNG(wxLANGUAGE_INTERLINGUE
, "ie" , 0 , 0 , "Interlingue")
1618 LNG(wxLANGUAGE_INUKTITUT
, "iu" , 0 , 0 , "Inuktitut")
1619 LNG(wxLANGUAGE_INUPIAK
, "ik" , 0 , 0 , "Inupiak")
1620 LNG(wxLANGUAGE_IRISH
, "ga_IE", 0 , 0 , "Irish")
1621 LNG(wxLANGUAGE_ITALIAN
, "it_IT", LANG_ITALIAN
, SUBLANG_ITALIAN
, "Italian")
1622 LNG(wxLANGUAGE_ITALIAN_SWISS
, "it_CH", LANG_ITALIAN
, SUBLANG_ITALIAN_SWISS
, "Italian (Swiss)")
1623 LNG(wxLANGUAGE_JAPANESE
, "ja_JP", LANG_JAPANESE
, SUBLANG_DEFAULT
, "Japanese")
1624 LNG(wxLANGUAGE_JAVANESE
, "jw" , 0 , 0 , "Javanese")
1625 LNG(wxLANGUAGE_KANNADA
, "kn" , LANG_KANNADA
, SUBLANG_DEFAULT
, "Kannada")
1626 LNG(wxLANGUAGE_KASHMIRI
, "ks" , LANG_KASHMIRI
, SUBLANG_DEFAULT
, "Kashmiri")
1627 LNG(wxLANGUAGE_KASHMIRI_INDIA
, "ks_IN", LANG_KASHMIRI
, SUBLANG_KASHMIRI_INDIA
, "Kashmiri (India)")
1628 LNG(wxLANGUAGE_KAZAKH
, "kk" , LANG_KAZAK
, SUBLANG_DEFAULT
, "Kazakh")
1629 LNG(wxLANGUAGE_KERNEWEK
, "kw_GB", 0 , 0 , "Kernewek")
1630 LNG(wxLANGUAGE_KINYARWANDA
, "rw" , 0 , 0 , "Kinyarwanda")
1631 LNG(wxLANGUAGE_KIRGHIZ
, "ky" , 0 , 0 , "Kirghiz")
1632 LNG(wxLANGUAGE_KIRUNDI
, "rn" , 0 , 0 , "Kirundi")
1633 LNG(wxLANGUAGE_KONKANI
, "" , LANG_KONKANI
, SUBLANG_DEFAULT
, "Konkani")
1634 LNG(wxLANGUAGE_KOREAN
, "ko_KR", LANG_KOREAN
, SUBLANG_KOREAN
, "Korean")
1635 LNG(wxLANGUAGE_KURDISH
, "ku" , 0 , 0 , "Kurdish")
1636 LNG(wxLANGUAGE_LAOTHIAN
, "lo" , 0 , 0 , "Laothian")
1637 LNG(wxLANGUAGE_LATIN
, "la" , 0 , 0 , "Latin")
1638 LNG(wxLANGUAGE_LATVIAN
, "lv_LV", LANG_LATVIAN
, SUBLANG_DEFAULT
, "Latvian")
1639 LNG(wxLANGUAGE_LINGALA
, "ln" , 0 , 0 , "Lingala")
1640 LNG(wxLANGUAGE_LITHUANIAN
, "lt_LT", LANG_LITHUANIAN
, SUBLANG_LITHUANIAN
, "Lithuanian")
1641 LNG(wxLANGUAGE_MACEDONIAN
, "mk_MK", LANG_MACEDONIAN
, SUBLANG_DEFAULT
, "Macedonian")
1642 LNG(wxLANGUAGE_MALAGASY
, "mg" , 0 , 0 , "Malagasy")
1643 LNG(wxLANGUAGE_MALAY
, "ms_MY", LANG_MALAY
, SUBLANG_DEFAULT
, "Malay")
1644 LNG(wxLANGUAGE_MALAYALAM
, "ml" , LANG_MALAYALAM
, SUBLANG_DEFAULT
, "Malayalam")
1645 LNG(wxLANGUAGE_MALAY_BRUNEI_DARUSSALAM
, "ms_BN", LANG_MALAY
, SUBLANG_MALAY_BRUNEI_DARUSSALAM
, "Malay (Brunei Darussalam)")
1646 LNG(wxLANGUAGE_MALAY_MALAYSIA
, "ms_MY", LANG_MALAY
, SUBLANG_MALAY_MALAYSIA
, "Malay (Malaysia)")
1647 LNG(wxLANGUAGE_MALTESE
, "mt_MT", 0 , 0 , "Maltese")
1648 LNG(wxLANGUAGE_MANIPURI
, "" , LANG_MANIPURI
, SUBLANG_DEFAULT
, "Manipuri")
1649 LNG(wxLANGUAGE_MAORI
, "mi" , 0 , 0 , "Maori")
1650 LNG(wxLANGUAGE_MARATHI
, "mr_IN", LANG_MARATHI
, SUBLANG_DEFAULT
, "Marathi")
1651 LNG(wxLANGUAGE_MOLDAVIAN
, "mo" , 0 , 0 , "Moldavian")
1652 LNG(wxLANGUAGE_MONGOLIAN
, "mn" , 0 , 0 , "Mongolian")
1653 LNG(wxLANGUAGE_NAURU
, "na" , 0 , 0 , "Nauru")
1654 LNG(wxLANGUAGE_NEPALI
, "ne" , LANG_NEPALI
, SUBLANG_DEFAULT
, "Nepali")
1655 LNG(wxLANGUAGE_NEPALI_INDIA
, "ne_IN", LANG_NEPALI
, SUBLANG_NEPALI_INDIA
, "Nepali (India)")
1656 LNG(wxLANGUAGE_NORWEGIAN_BOKMAL
, "no_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_BOKMAL
, "Norwegian (Bokmal)")
1657 LNG(wxLANGUAGE_NORWEGIAN_NYNORSK
, "nn_NO", LANG_NORWEGIAN
, SUBLANG_NORWEGIAN_NYNORSK
, "Norwegian (Nynorsk)")
1658 LNG(wxLANGUAGE_OCCITAN
, "oc" , 0 , 0 , "Occitan")
1659 LNG(wxLANGUAGE_ORIYA
, "or" , LANG_ORIYA
, SUBLANG_DEFAULT
, "Oriya")
1660 LNG(wxLANGUAGE_OROMO
, "om" , 0 , 0 , "(Afan) Oromo")
1661 LNG(wxLANGUAGE_PASHTO
, "ps" , 0 , 0 , "Pashto, Pushto")
1662 LNG(wxLANGUAGE_POLISH
, "pl_PL", LANG_POLISH
, SUBLANG_DEFAULT
, "Polish")
1663 LNG(wxLANGUAGE_PORTUGUESE
, "pt_PT", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE
, "Portuguese")
1664 LNG(wxLANGUAGE_PORTUGUESE_BRAZILIAN
, "pt_BR", LANG_PORTUGUESE
, SUBLANG_PORTUGUESE_BRAZILIAN
, "Portuguese (Brazilian)")
1665 LNG(wxLANGUAGE_PUNJABI
, "pa" , LANG_PUNJABI
, SUBLANG_DEFAULT
, "Punjabi")
1666 LNG(wxLANGUAGE_QUECHUA
, "qu" , 0 , 0 , "Quechua")
1667 LNG(wxLANGUAGE_RHAETO_ROMANCE
, "rm" , 0 , 0 , "Rhaeto-Romance")
1668 LNG(wxLANGUAGE_ROMANIAN
, "ro_RO", LANG_ROMANIAN
, SUBLANG_DEFAULT
, "Romanian")
1669 LNG(wxLANGUAGE_RUSSIAN
, "ru_RU", LANG_RUSSIAN
, SUBLANG_DEFAULT
, "Russian")
1670 LNG(wxLANGUAGE_RUSSIAN_UKRAINE
, "ru_UA", 0 , 0 , "Russian (Ukraine)")
1671 LNG(wxLANGUAGE_SAMOAN
, "sm" , 0 , 0 , "Samoan")
1672 LNG(wxLANGUAGE_SANGHO
, "sg" , 0 , 0 , "Sangho")
1673 LNG(wxLANGUAGE_SANSKRIT
, "sa" , LANG_SANSKRIT
, SUBLANG_DEFAULT
, "Sanskrit")
1674 LNG(wxLANGUAGE_SCOTS_GAELIC
, "gd" , 0 , 0 , "Scots Gaelic")
1675 LNG(wxLANGUAGE_SERBIAN
, "sr_YU", LANG_SERBIAN
, SUBLANG_DEFAULT
, "Serbian")
1676 LNG(wxLANGUAGE_SERBIAN_CYRILLIC
, "sr_YU", LANG_SERBIAN
, SUBLANG_SERBIAN_CYRILLIC
, "Serbian (Cyrillic)")
1677 LNG(wxLANGUAGE_SERBIAN_LATIN
, "sr_YU", LANG_SERBIAN
, SUBLANG_SERBIAN_LATIN
, "Serbian (Latin)")
1678 LNG(wxLANGUAGE_SERBO_CROATIAN
, "sh" , 0 , 0 , "Serbo-Croatian")
1679 LNG(wxLANGUAGE_SESOTHO
, "st" , 0 , 0 , "Sesotho")
1680 LNG(wxLANGUAGE_SETSWANA
, "tn" , 0 , 0 , "Setswana")
1681 LNG(wxLANGUAGE_SHONA
, "sn" , 0 , 0 , "Shona")
1682 LNG(wxLANGUAGE_SINDHI
, "sd" , LANG_SINDHI
, SUBLANG_DEFAULT
, "Sindhi")
1683 LNG(wxLANGUAGE_SINHALESE
, "si" , 0 , 0 , "Sinhalese")
1684 LNG(wxLANGUAGE_SISWATI
, "ss" , 0 , 0 , "Siswati")
1685 LNG(wxLANGUAGE_SLOVAK
, "sk_SK", LANG_SLOVAK
, SUBLANG_DEFAULT
, "Slovak")
1686 LNG(wxLANGUAGE_SLOVENIAN
, "sl_SI", LANG_SLOVENIAN
, SUBLANG_DEFAULT
, "Slovenian")
1687 LNG(wxLANGUAGE_SOMALI
, "so" , 0 , 0 , "Somali")
1688 LNG(wxLANGUAGE_SPANISH
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH
, "Spanish")
1689 LNG(wxLANGUAGE_SPANISH_ARGENTINA
, "es_AR", LANG_SPANISH
, SUBLANG_SPANISH_ARGENTINA
, "Spanish (Argentina)")
1690 LNG(wxLANGUAGE_SPANISH_BOLIVIA
, "es_BO", LANG_SPANISH
, SUBLANG_SPANISH_BOLIVIA
, "Spanish (Bolivia)")
1691 LNG(wxLANGUAGE_SPANISH_CHILE
, "es_CL", LANG_SPANISH
, SUBLANG_SPANISH_CHILE
, "Spanish (Chile)")
1692 LNG(wxLANGUAGE_SPANISH_COLOMBIA
, "es_CO", LANG_SPANISH
, SUBLANG_SPANISH_COLOMBIA
, "Spanish (Colombia)")
1693 LNG(wxLANGUAGE_SPANISH_COSTA_RICA
, "es_CR", LANG_SPANISH
, SUBLANG_SPANISH_COSTA_RICA
, "Spanish (Costa Rica)")
1694 LNG(wxLANGUAGE_SPANISH_DOMINICAN_REPUBLIC
, "es_DO", LANG_SPANISH
, SUBLANG_SPANISH_DOMINICAN_REPUBLIC
, "Spanish (Dominican republic)")
1695 LNG(wxLANGUAGE_SPANISH_ECUADOR
, "es_EC", LANG_SPANISH
, SUBLANG_SPANISH_ECUADOR
, "Spanish (Ecuador)")
1696 LNG(wxLANGUAGE_SPANISH_EL_SALVADOR
, "es_SV", LANG_SPANISH
, SUBLANG_SPANISH_EL_SALVADOR
, "Spanish (El Salvador)")
1697 LNG(wxLANGUAGE_SPANISH_GUATEMALA
, "es_GT", LANG_SPANISH
, SUBLANG_SPANISH_GUATEMALA
, "Spanish (Guatemala)")
1698 LNG(wxLANGUAGE_SPANISH_HONDURAS
, "es_HN", LANG_SPANISH
, SUBLANG_SPANISH_HONDURAS
, "Spanish (Honduras)")
1699 LNG(wxLANGUAGE_SPANISH_MEXICAN
, "es_MX", LANG_SPANISH
, SUBLANG_SPANISH_MEXICAN
, "Spanish (Mexican)")
1700 LNG(wxLANGUAGE_SPANISH_MODERN
, "es_ES", LANG_SPANISH
, SUBLANG_SPANISH_MODERN
, "Spanish (Modern)")
1701 LNG(wxLANGUAGE_SPANISH_NICARAGUA
, "es_NI", LANG_SPANISH
, SUBLANG_SPANISH_NICARAGUA
, "Spanish (Nicaragua)")
1702 LNG(wxLANGUAGE_SPANISH_PANAMA
, "es_PA", LANG_SPANISH
, SUBLANG_SPANISH_PANAMA
, "Spanish (Panama)")
1703 LNG(wxLANGUAGE_SPANISH_PARAGUAY
, "es_PY", LANG_SPANISH
, SUBLANG_SPANISH_PARAGUAY
, "Spanish (Paraguay)")
1704 LNG(wxLANGUAGE_SPANISH_PERU
, "es_PE", LANG_SPANISH
, SUBLANG_SPANISH_PERU
, "Spanish (Peru)")
1705 LNG(wxLANGUAGE_SPANISH_PUERTO_RICO
, "es_PR", LANG_SPANISH
, SUBLANG_SPANISH_PUERTO_RICO
, "Spanish (Puerto Rico)")
1706 LNG(wxLANGUAGE_SPANISH_URUGUAY
, "es_UY", LANG_SPANISH
, SUBLANG_SPANISH_URUGUAY
, "Spanish (Uruguay)")
1707 LNG(wxLANGUAGE_SPANISH_US
, "es_US", 0 , 0 , "Spanish (U.S.)")
1708 LNG(wxLANGUAGE_SPANISH_VENEZUELA
, "es_VE", LANG_SPANISH
, SUBLANG_SPANISH_VENEZUELA
, "Spanish (Venezuela)")
1709 LNG(wxLANGUAGE_SUNDANESE
, "su" , 0 , 0 , "Sundanese")
1710 LNG(wxLANGUAGE_SWAHILI
, "sw_KE", LANG_SWAHILI
, SUBLANG_DEFAULT
, "Swahili")
1711 LNG(wxLANGUAGE_SWEDISH
, "sv_SE", LANG_SWEDISH
, SUBLANG_SWEDISH
, "Swedish")
1712 LNG(wxLANGUAGE_SWEDISH_FINLAND
, "sv_FI", LANG_SWEDISH
, SUBLANG_SWEDISH_FINLAND
, "Swedish (Finland)")
1713 LNG(wxLANGUAGE_TAGALOG
, "tl" , 0 , 0 , "Tagalog")
1714 LNG(wxLANGUAGE_TAJIK
, "tg" , 0 , 0 , "Tajik")
1715 LNG(wxLANGUAGE_TAMIL
, "ta" , LANG_TAMIL
, SUBLANG_DEFAULT
, "Tamil")
1716 LNG(wxLANGUAGE_TATAR
, "tt" , LANG_TATAR
, SUBLANG_DEFAULT
, "Tatar")
1717 LNG(wxLANGUAGE_TELUGU
, "te" , LANG_TELUGU
, SUBLANG_DEFAULT
, "Telugu")
1718 LNG(wxLANGUAGE_THAI
, "th_TH", LANG_THAI
, SUBLANG_DEFAULT
, "Thai")
1719 LNG(wxLANGUAGE_TIBETAN
, "bo" , 0 , 0 , "Tibetan")
1720 LNG(wxLANGUAGE_TIGRINYA
, "ti" , 0 , 0 , "Tigrinya")
1721 LNG(wxLANGUAGE_TONGA
, "to" , 0 , 0 , "Tonga")
1722 LNG(wxLANGUAGE_TSONGA
, "ts" , 0 , 0 , "Tsonga")
1723 LNG(wxLANGUAGE_TURKISH
, "tr_TR", LANG_TURKISH
, SUBLANG_DEFAULT
, "Turkish")
1724 LNG(wxLANGUAGE_TURKMEN
, "tk" , 0 , 0 , "Turkmen")
1725 LNG(wxLANGUAGE_TWI
, "tw" , 0 , 0 , "Twi")
1726 LNG(wxLANGUAGE_UIGHUR
, "ug" , 0 , 0 , "Uighur")
1727 LNG(wxLANGUAGE_UKRAINIAN
, "uk_UA", LANG_UKRAINIAN
, SUBLANG_DEFAULT
, "Ukrainian")
1728 LNG(wxLANGUAGE_URDU
, "ur" , LANG_URDU
, SUBLANG_DEFAULT
, "Urdu")
1729 LNG(wxLANGUAGE_URDU_INDIA
, "ur_IN", LANG_URDU
, SUBLANG_URDU_INDIA
, "Urdu (India)")
1730 LNG(wxLANGUAGE_URDU_PAKISTAN
, "ur_PK", LANG_URDU
, SUBLANG_URDU_PAKISTAN
, "Urdu (Pakistan)")
1731 LNG(wxLANGUAGE_UZBEK
, "uz" , LANG_UZBEK
, SUBLANG_DEFAULT
, "Uzbek")
1732 LNG(wxLANGUAGE_UZBEK_CYRILLIC
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_CYRILLIC
, "Uzbek (Cyrillic)")
1733 LNG(wxLANGUAGE_UZBEK_LATIN
, "uz" , LANG_UZBEK
, SUBLANG_UZBEK_LATIN
, "Uzbek (Latin)")
1734 LNG(wxLANGUAGE_VIETNAMESE
, "vi_VN", LANG_VIETNAMESE
, SUBLANG_DEFAULT
, "Vietnamese")
1735 LNG(wxLANGUAGE_VOLAPUK
, "vo" , 0 , 0 , "Volapuk")
1736 LNG(wxLANGUAGE_WELSH
, "cy" , 0 , 0 , "Welsh")
1737 LNG(wxLANGUAGE_WOLOF
, "wo" , 0 , 0 , "Wolof")
1738 LNG(wxLANGUAGE_XHOSA
, "xh" , 0 , 0 , "Xhosa")
1739 LNG(wxLANGUAGE_YIDDISH
, "yi" , 0 , 0 , "Yiddish")
1740 LNG(wxLANGUAGE_YORUBA
, "yo" , 0 , 0 , "Yoruba")
1741 LNG(wxLANGUAGE_ZHUANG
, "za" , 0 , 0 , "Zhuang")
1742 LNG(wxLANGUAGE_ZULU
, "zu" , 0 , 0 , "Zulu")
1748 #endif // wxUSE_INTL