1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/intl.cpp
3 // Purpose: Internationalization and localisation for wxWidgets
4 // Author: Vadim Zeitlin
5 // Modified by: Michael N. Filippov <michael@idisys.iae.nsk.su>
6 // (2003/09/30 - PluralForms support)
9 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
29 // The following define is needed by Innotek's libc to
30 // make the definition of struct localeconv available.
31 #define __INTERNAL_DEFS
37 #include "wx/dynarray.h"
38 #include "wx/string.h"
43 #include "wx/hashmap.h"
44 #include "wx/module.h"
54 #ifdef HAVE_LANGINFO_H
59 #include "wx/msw/private.h"
63 #include "wx/filename.h"
64 #include "wx/tokenzr.h"
65 #include "wx/fontmap.h"
66 #include "wx/scopedptr.h"
67 #include "wx/apptrait.h"
68 #include "wx/stdpaths.h"
69 #include "wx/hashset.h"
71 #if defined(__WXOSX__)
72 #include "wx/osx/core/cfref.h"
73 #include <CoreFoundation/CFLocale.h>
74 #include <CoreFoundation/CFDateFormatter.h>
75 #include "wx/osx/core/cfstring.h"
78 // ----------------------------------------------------------------------------
80 // ----------------------------------------------------------------------------
82 #define TRACE_I18N wxS("i18n")
84 // ============================================================================
86 // ============================================================================
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
92 static wxLocale
*wxSetLocale(wxLocale
*pLocale
);
97 // get just the language part ("en" in "en_GB")
98 inline wxString
ExtractLang(const wxString
& langFull
)
100 return langFull
.BeforeFirst('_');
103 // helper functions of GetSystemLanguage()
106 // get everything else (including the leading '_')
107 inline wxString
ExtractNotLang(const wxString
& langFull
)
109 size_t pos
= langFull
.find('_');
110 if ( pos
!= wxString::npos
)
111 return langFull
.substr(pos
);
118 } // anonymous namespace
120 // ----------------------------------------------------------------------------
122 // ----------------------------------------------------------------------------
126 // helper used by wxLanguageInfo::GetLocaleName() and elsewhere to determine
127 // whether the locale is Unicode-only (it is if this function returns empty
129 static wxString
wxGetANSICodePageForLocale(LCID lcid
)
134 if ( ::GetLocaleInfo(lcid
, LOCALE_IDEFAULTANSICODEPAGE
,
135 buffer
, WXSIZEOF(buffer
)) > 0 )
137 if ( buffer
[0] != wxT('0') || buffer
[1] != wxT('\0') )
139 //else: this locale doesn't use ANSI code page
145 wxUint32
wxLanguageInfo::GetLCID() const
147 return MAKELCID(MAKELANGID(WinLang
, WinSublang
), SORT_DEFAULT
);
150 wxString
wxLanguageInfo::GetLocaleName() const
154 const LCID lcid
= GetLCID();
157 buffer
[0] = wxT('\0');
158 if ( !::GetLocaleInfo(lcid
, LOCALE_SENGLANGUAGE
, buffer
, WXSIZEOF(buffer
)) )
160 wxLogLastError(wxT("GetLocaleInfo(LOCALE_SENGLANGUAGE)"));
165 if ( ::GetLocaleInfo(lcid
, LOCALE_SENGCOUNTRY
,
166 buffer
, WXSIZEOF(buffer
)) > 0 )
168 locale
<< wxT('_') << buffer
;
171 const wxString cp
= wxGetANSICodePageForLocale(lcid
);
174 locale
<< wxT('.') << cp
;
180 #endif // __WINDOWS__
182 // ----------------------------------------------------------------------------
184 // ----------------------------------------------------------------------------
186 #include "wx/arrimpl.cpp"
187 WX_DECLARE_EXPORTED_OBJARRAY(wxLanguageInfo
, wxLanguageInfoArray
);
188 WX_DEFINE_OBJARRAY(wxLanguageInfoArray
)
190 wxLanguageInfoArray
*wxLocale::ms_languagesDB
= NULL
;
192 /*static*/ void wxLocale::CreateLanguagesDB()
194 if (ms_languagesDB
== NULL
)
196 ms_languagesDB
= new wxLanguageInfoArray
;
201 /*static*/ void wxLocale::DestroyLanguagesDB()
203 wxDELETE(ms_languagesDB
);
207 void wxLocale::DoCommonInit()
209 // Store the current locale in order to be able to restore it in the dtor.
210 m_pszOldLocale
= wxSetlocale(LC_ALL
, NULL
);
211 if ( m_pszOldLocale
)
212 m_pszOldLocale
= wxStrdup(m_pszOldLocale
);
215 m_pOldLocale
= wxSetLocale(this);
217 // Set translations object, but only if the user didn't do so yet.
218 // This is to preserve compatibility with wx-2.8 where wxLocale was
219 // the only API for translations. wxLocale works as a stack, with
220 // latest-created one being the active one:
221 // wxLocale loc_fr(wxLANGUAGE_FRENCH);
222 // // _() returns French
224 // wxLocale loc_cs(wxLANGUAGE_CZECH);
225 // // _() returns Czech
227 // // _() returns French again
228 wxTranslations
*oldTrans
= wxTranslations::Get();
230 (m_pOldLocale
&& oldTrans
== &m_pOldLocale
->m_translations
) )
232 wxTranslations::SetNonOwned(&m_translations
);
235 m_language
= wxLANGUAGE_UNKNOWN
;
236 m_initialized
= false;
239 // NB: this function has (desired) side effect of changing current locale
240 bool wxLocale::Init(const wxString
& name
,
241 const wxString
& shortName
,
242 const wxString
& locale
,
244 #if WXWIN_COMPATIBILITY_2_8
245 ,bool WXUNUSED_UNLESS_DEBUG(bConvertEncoding
)
249 #if WXWIN_COMPATIBILITY_2_8
250 wxASSERT_MSG( bConvertEncoding
,
251 wxS("wxLocale::Init with bConvertEncoding=false is no longer supported, add charset to your catalogs") );
254 bool ret
= DoInit(name
, shortName
, locale
);
256 // NB: don't use 'lang' here, 'language' may be wxLANGUAGE_DEFAULT
257 wxTranslations
*t
= wxTranslations::Get();
260 t
->SetLanguage(shortName
);
269 bool wxLocale::DoInit(const wxString
& name
,
270 const wxString
& shortName
,
271 const wxString
& locale
)
273 wxASSERT_MSG( !m_initialized
,
274 wxS("you can't call wxLocale::Init more than once") );
276 m_initialized
= true;
278 m_strShort
= shortName
;
279 m_language
= wxLANGUAGE_UNKNOWN
;
281 // change current locale (default: same as long name)
282 wxString
szLocale(locale
);
283 if ( szLocale
.empty() )
285 // the argument to setlocale()
286 szLocale
= shortName
;
288 wxCHECK_MSG( !szLocale
.empty(), false,
289 wxS("no locale to set in wxLocale::Init()") );
292 if ( !wxSetlocale(LC_ALL
, szLocale
) )
294 wxLogError(_("locale '%s' cannot be set."), szLocale
);
297 // the short name will be used to look for catalog files as well,
298 // so we need something here
299 if ( m_strShort
.empty() ) {
300 // FIXME I don't know how these 2 letter abbreviations are formed,
301 // this wild guess is surely wrong
302 if ( !szLocale
.empty() )
304 m_strShort
+= (wxChar
)wxTolower(szLocale
[0]);
305 if ( szLocale
.length() > 1 )
306 m_strShort
+= (wxChar
)wxTolower(szLocale
[1]);
314 #if defined(__UNIX__) && wxUSE_UNICODE && !defined(__WXMAC__)
315 static const char *wxSetlocaleTryUTF8(int c
, const wxString
& lc
)
317 const char *l
= NULL
;
319 // NB: We prefer to set UTF-8 locale if it's possible and only fall back to
320 // non-UTF-8 locale if it fails
326 buf2
= buf
+ wxS(".UTF-8");
327 l
= wxSetlocale(c
, buf2
);
330 buf2
= buf
+ wxS(".utf-8");
331 l
= wxSetlocale(c
, buf2
);
335 buf2
= buf
+ wxS(".UTF8");
336 l
= wxSetlocale(c
, buf2
);
340 buf2
= buf
+ wxS(".utf8");
341 l
= wxSetlocale(c
, buf2
);
345 // if we can't set UTF-8 locale, try non-UTF-8 one:
347 l
= wxSetlocale(c
, lc
);
352 #define wxSetlocaleTryUTF8(c, lc) wxSetlocale(c, lc)
355 bool wxLocale::Init(int language
, int flags
)
357 #if WXWIN_COMPATIBILITY_2_8
358 wxASSERT_MSG( !(flags
& wxLOCALE_CONV_ENCODING
),
359 wxS("wxLOCALE_CONV_ENCODING is no longer supported, add charset to your catalogs") );
365 if (lang
== wxLANGUAGE_DEFAULT
)
367 // auto detect the language
368 lang
= GetSystemLanguage();
371 // We failed to detect system language, so we will use English:
372 if (lang
== wxLANGUAGE_UNKNOWN
)
377 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
382 wxLogError(wxS("Unknown language %i."), lang
);
386 wxString name
= info
->Description
;
387 wxString canonical
= info
->CanonicalName
;
392 const char *retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
393 #elif defined(__UNIX__) && !defined(__WXMAC__)
394 if (language
!= wxLANGUAGE_DEFAULT
)
395 locale
= info
->CanonicalName
;
397 const char *retloc
= wxSetlocaleTryUTF8(LC_ALL
, locale
);
399 const wxString langOnly
= ExtractLang(locale
);
402 // Some C libraries don't like xx_YY form and require xx only
403 retloc
= wxSetlocaleTryUTF8(LC_ALL
, langOnly
);
407 // some systems (e.g. FreeBSD and HP-UX) don't have xx_YY aliases but
408 // require the full xx_YY.encoding form, so try using UTF-8 because this is
409 // the only thing we can do generically
411 // TODO: add encodings applicable to each language to the lang DB and try
412 // them all in turn here
415 const wxChar
**names
=
416 wxFontMapperBase::GetAllEncodingNames(wxFONTENCODING_UTF8
);
419 retloc
= wxSetlocale(LC_ALL
, locale
+ wxS('.') + *names
++);
424 #endif // wxUSE_FONTMAP
428 // Some C libraries (namely glibc) still use old ISO 639,
429 // so will translate the abbrev for them
431 if ( langOnly
== wxS("he") )
432 localeAlt
= wxS("iw") + ExtractNotLang(locale
);
433 else if ( langOnly
== wxS("id") )
434 localeAlt
= wxS("in") + ExtractNotLang(locale
);
435 else if ( langOnly
== wxS("yi") )
436 localeAlt
= wxS("ji") + ExtractNotLang(locale
);
437 else if ( langOnly
== wxS("nb") )
438 localeAlt
= wxS("no_NO");
439 else if ( langOnly
== wxS("nn") )
440 localeAlt
= wxS("no_NY");
442 if ( !localeAlt
.empty() )
444 retloc
= wxSetlocaleTryUTF8(LC_ALL
, localeAlt
);
446 retloc
= wxSetlocaleTryUTF8(LC_ALL
, ExtractLang(localeAlt
));
454 // at least in AIX 5.2 libc is buggy and the string returned from
455 // setlocale(LC_ALL) can't be passed back to it because it returns 6
456 // strings (one for each locale category), i.e. for C locale we get back
459 // this contradicts IBM own docs but this is not of much help, so just work
460 // around it in the crudest possible manner
461 char* p
= const_cast<char*>(wxStrchr(retloc
, ' '));
466 #elif defined(__WIN32__)
467 const char *retloc
= "C";
468 if ( language
!= wxLANGUAGE_DEFAULT
)
470 if ( info
->WinLang
== 0 )
472 wxLogWarning(wxS("Locale '%s' not supported by OS."), name
.c_str());
473 // retloc already set to "C"
475 else // language supported by Windows
477 // Windows CE doesn't have SetThreadLocale() and there doesn't seem
478 // to be any equivalent
480 const wxUint32 lcid
= info
->GetLCID();
482 // change locale used by Windows functions
483 ::SetThreadLocale(lcid
);
486 // and also call setlocale() to change locale used by the CRT
487 locale
= info
->GetLocaleName();
488 if ( locale
.empty() )
492 else // have a valid locale
494 retloc
= wxSetlocale(LC_ALL
, locale
);
498 else // language == wxLANGUAGE_DEFAULT
500 retloc
= wxSetlocale(LC_ALL
, wxEmptyString
);
503 #if wxUSE_UNICODE && (defined(__VISUALC__) || defined(__MINGW32__))
504 // VC++ setlocale() (also used by Mingw) can't set locale to languages that
505 // can only be written using Unicode, therefore wxSetlocale() call fails
506 // for such languages but we don't want to report it as an error -- so that
507 // at least message catalogs can be used.
510 if ( wxGetANSICodePageForLocale(LOCALE_USER_DEFAULT
).empty() )
512 // we set the locale to a Unicode-only language, don't treat the
513 // inability of CRT to use it as an error
517 #endif // CRT not handling Unicode-only languages
521 #elif defined(__WXMAC__)
522 if (lang
== wxLANGUAGE_DEFAULT
)
523 locale
= wxEmptyString
;
525 locale
= info
->CanonicalName
;
527 const char *retloc
= wxSetlocale(LC_ALL
, locale
);
531 // Some C libraries don't like xx_YY form and require xx only
532 retloc
= wxSetlocale(LC_ALL
, ExtractLang(locale
));
537 #define WX_NO_LOCALE_SUPPORT
540 #ifndef WX_NO_LOCALE_SUPPORT
543 wxLogWarning(_("Cannot set locale to language \"%s\"."), name
.c_str());
545 // continue nevertheless and try to load at least the translations for
549 if ( !DoInit(name
, canonical
, retloc
) )
554 if (IsOk()) // setlocale() succeeded
557 // NB: don't use 'lang' here, 'language'
558 wxTranslations
*t
= wxTranslations::Get();
561 t
->SetLanguage(static_cast<wxLanguage
>(language
));
563 if ( flags
& wxLOCALE_LOAD_DEFAULT
)
568 #endif // !WX_NO_LOCALE_SUPPORT
574 // Small helper function: get the value of the given environment variable and
575 // return true only if the variable was found and has non-empty value.
576 inline bool wxGetNonEmptyEnvVar(const wxString
& name
, wxString
* value
)
578 return wxGetEnv(name
, value
) && !value
->empty();
581 } // anonymous namespace
583 /*static*/ int wxLocale::GetSystemLanguage()
587 // init i to avoid compiler warning
589 count
= ms_languagesDB
->GetCount();
591 #if defined(__UNIX__)
592 // first get the string identifying the language from the environment
595 wxCFRef
<CFLocaleRef
> userLocaleRef(CFLocaleCopyCurrent());
597 // because the locale identifier (kCFLocaleIdentifier) is formatted a little bit differently, eg
598 // az_Cyrl_AZ@calendar=buddhist;currency=JPY we just recreate the base info as expected by wx here
600 wxCFStringRef
str(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleLanguageCode
)));
601 langFull
= str
.AsString()+"_";
602 str
.reset(wxCFRetain((CFStringRef
)CFLocaleGetValue(userLocaleRef
, kCFLocaleCountryCode
)));
603 langFull
+= str
.AsString();
605 if (!wxGetNonEmptyEnvVar(wxS("LC_ALL"), &langFull
) &&
606 !wxGetNonEmptyEnvVar(wxS("LC_MESSAGES"), &langFull
) &&
607 !wxGetNonEmptyEnvVar(wxS("LANG"), &langFull
))
609 // no language specified, treat it as English
610 return wxLANGUAGE_ENGLISH_US
;
613 if ( langFull
== wxS("C") || langFull
== wxS("POSIX") )
615 // default C locale is English too
616 return wxLANGUAGE_ENGLISH_US
;
620 // the language string has the following form
622 // lang[_LANG][.encoding][@modifier]
624 // (see environ(5) in the Open Unix specification)
626 // where lang is the primary language, LANG is a sublang/territory,
627 // encoding is the charset to use and modifier "allows the user to select
628 // a specific instance of localization data within a single category"
630 // for example, the following strings are valid:
635 // de_DE.iso88591@euro
637 // for now we don't use the encoding, although we probably should (doing
638 // translations of the msg catalogs on the fly as required) (TODO)
640 // we need the modified for languages like Valencian: ca_ES@valencia
641 // though, remember it
643 size_t posModifier
= langFull
.find_first_of(wxS("@"));
644 if ( posModifier
!= wxString::npos
)
645 modifier
= langFull
.Mid(posModifier
);
647 size_t posEndLang
= langFull
.find_first_of(wxS("@."));
648 if ( posEndLang
!= wxString::npos
)
650 langFull
.Truncate(posEndLang
);
653 // do we have just the language (or sublang too)?
654 const bool justLang
= langFull
.find('_') == wxString::npos
;
656 // 0. Make sure the lang is according to latest ISO 639
657 // (this is necessary because glibc uses iw and in instead
658 // of he and id respectively).
660 // the language itself (second part is the dialect/sublang)
661 wxString langOrig
= ExtractLang(langFull
);
664 if ( langOrig
== wxS("iw"))
666 else if (langOrig
== wxS("in"))
668 else if (langOrig
== wxS("ji"))
670 else if (langOrig
== wxS("no_NO"))
672 else if (langOrig
== wxS("no_NY"))
674 else if (langOrig
== wxS("no"))
680 if ( lang
!= langOrig
)
682 langFull
= lang
+ ExtractNotLang(langFull
);
685 // 1. Try to find the language either as is:
686 // a) With modifier if set
687 if ( !modifier
.empty() )
689 wxString langFullWithModifier
= langFull
+ modifier
;
690 for ( i
= 0; i
< count
; i
++ )
692 if ( ms_languagesDB
->Item(i
).CanonicalName
== langFullWithModifier
)
697 // b) Without modifier
698 if ( modifier
.empty() || i
== count
)
700 for ( i
= 0; i
< count
; i
++ )
702 if ( ms_languagesDB
->Item(i
).CanonicalName
== langFull
)
707 // 2. If langFull is of the form xx_YY, try to find xx:
708 if ( i
== count
&& !justLang
)
710 for ( i
= 0; i
< count
; i
++ )
712 if ( ms_languagesDB
->Item(i
).CanonicalName
== lang
)
719 // 3. If langFull is of the form xx, try to find any xx_YY record:
720 if ( i
== count
&& justLang
)
722 for ( i
= 0; i
< count
; i
++ )
724 if ( ExtractLang(ms_languagesDB
->Item(i
).CanonicalName
)
735 // In addition to the format above, we also can have full language
736 // names in LANG env var - for example, SuSE is known to use
737 // LANG="german" - so check for use of non-standard format and try to
738 // find the name in verbose description.
739 for ( i
= 0; i
< count
; i
++ )
741 if (ms_languagesDB
->Item(i
).Description
.CmpNoCase(langFull
) == 0)
747 #elif defined(__WIN32__)
748 LCID lcid
= GetUserDefaultLCID();
751 wxUint32 lang
= PRIMARYLANGID(LANGIDFROMLCID(lcid
));
752 wxUint32 sublang
= SUBLANGID(LANGIDFROMLCID(lcid
));
754 for ( i
= 0; i
< count
; i
++ )
756 if (ms_languagesDB
->Item(i
).WinLang
== lang
&&
757 ms_languagesDB
->Item(i
).WinSublang
== sublang
)
763 //else: leave wxlang == wxLANGUAGE_UNKNOWN
768 // we did find a matching entry, use it
769 return ms_languagesDB
->Item(i
).Language
;
772 // no info about this language in the database
773 return wxLANGUAGE_UNKNOWN
;
776 // ----------------------------------------------------------------------------
778 // ----------------------------------------------------------------------------
780 // this is a bit strange as under Windows we get the encoding name using its
781 // numeric value and under Unix we do it the other way round, but this just
782 // reflects the way different systems provide the encoding info
785 wxString
wxLocale::GetSystemEncodingName()
789 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
790 // FIXME: what is the error return value for GetACP()?
791 UINT codepage
= ::GetACP();
792 encname
.Printf(wxS("windows-%u"), codepage
);
793 #elif defined(__WXMAC__)
794 encname
= wxCFStringRef::AsString(
795 CFStringGetNameOfEncoding(CFStringGetSystemEncoding())
797 #elif defined(__UNIX_LIKE__)
799 #if defined(HAVE_LANGINFO_H) && defined(CODESET)
800 // GNU libc provides current character set this way (this conforms
802 char *oldLocale
= strdup(setlocale(LC_CTYPE
, NULL
));
803 setlocale(LC_CTYPE
, "");
804 const char *alang
= nl_langinfo(CODESET
);
805 setlocale(LC_CTYPE
, oldLocale
);
810 encname
= wxString::FromAscii( alang
);
812 else // nl_langinfo() failed
813 #endif // HAVE_LANGINFO_H
815 // if we can't get at the character set directly, try to see if it's in
816 // the environment variables (in most cases this won't work, but I was
818 char *lang
= getenv( "LC_ALL");
819 char *dot
= lang
? strchr(lang
, '.') : NULL
;
822 lang
= getenv( "LC_CTYPE" );
824 dot
= strchr(lang
, '.' );
828 lang
= getenv( "LANG");
830 dot
= strchr(lang
, '.');
835 encname
= wxString::FromAscii( dot
+1 );
844 wxFontEncoding
wxLocale::GetSystemEncoding()
846 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
847 UINT codepage
= ::GetACP();
849 // wxWidgets only knows about CP1250-1257, 874, 932, 936, 949, 950
850 if ( codepage
>= 1250 && codepage
<= 1257 )
852 return (wxFontEncoding
)(wxFONTENCODING_CP1250
+ codepage
- 1250);
855 if ( codepage
== 874 )
857 return wxFONTENCODING_CP874
;
860 if ( codepage
== 932 )
862 return wxFONTENCODING_CP932
;
865 if ( codepage
== 936 )
867 return wxFONTENCODING_CP936
;
870 if ( codepage
== 949 )
872 return wxFONTENCODING_CP949
;
875 if ( codepage
== 950 )
877 return wxFONTENCODING_CP950
;
879 #elif defined(__WXMAC__)
880 CFStringEncoding encoding
= 0 ;
881 encoding
= CFStringGetSystemEncoding() ;
882 return wxMacGetFontEncFromSystemEnc( encoding
) ;
883 #elif defined(__UNIX_LIKE__) && wxUSE_FONTMAP
884 const wxString encname
= GetSystemEncodingName();
885 if ( !encname
.empty() )
887 wxFontEncoding enc
= wxFontMapperBase::GetEncodingFromName(encname
);
889 // on some modern Linux systems (RedHat 8) the default system locale
890 // is UTF8 -- but it isn't supported by wxGTK1 in ANSI build at all so
891 // don't even try to use it in this case
892 #if !wxUSE_UNICODE && \
893 ((defined(__WXGTK__) && !defined(__WXGTK20__)) || defined(__WXMOTIF__))
894 if ( enc
== wxFONTENCODING_UTF8
)
896 // the most similar supported encoding...
897 enc
= wxFONTENCODING_ISO8859_1
;
899 #endif // !wxUSE_UNICODE
901 // GetEncodingFromName() returns wxFONTENCODING_DEFAULT for C locale
902 // (a.k.a. US-ASCII) which is arguably a bug but keep it like this for
903 // backwards compatibility and just take care to not return
904 // wxFONTENCODING_DEFAULT from here as this surely doesn't make sense
905 if ( enc
== wxFONTENCODING_DEFAULT
)
907 // we don't have wxFONTENCODING_ASCII, so use the closest one
908 return wxFONTENCODING_ISO8859_1
;
911 if ( enc
!= wxFONTENCODING_MAX
)
915 //else: return wxFONTENCODING_SYSTEM below
919 return wxFONTENCODING_SYSTEM
;
923 void wxLocale::AddLanguage(const wxLanguageInfo
& info
)
926 ms_languagesDB
->Add(info
);
930 const wxLanguageInfo
*wxLocale::GetLanguageInfo(int lang
)
934 // calling GetLanguageInfo(wxLANGUAGE_DEFAULT) is a natural thing to do, so
936 if ( lang
== wxLANGUAGE_DEFAULT
)
937 lang
= GetSystemLanguage();
939 const size_t count
= ms_languagesDB
->GetCount();
940 for ( size_t i
= 0; i
< count
; i
++ )
942 if ( ms_languagesDB
->Item(i
).Language
== lang
)
944 // We need to create a temporary here in order to make this work with BCC in final build mode
945 wxLanguageInfo
*ptr
= &ms_languagesDB
->Item(i
);
954 wxString
wxLocale::GetLanguageName(int lang
)
956 if ( lang
== wxLANGUAGE_DEFAULT
|| lang
== wxLANGUAGE_UNKNOWN
)
957 return wxEmptyString
;
959 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
961 return wxEmptyString
;
963 return info
->Description
;
967 wxString
wxLocale::GetLanguageCanonicalName(int lang
)
969 if ( lang
== wxLANGUAGE_DEFAULT
|| lang
== wxLANGUAGE_UNKNOWN
)
970 return wxEmptyString
;
972 const wxLanguageInfo
*info
= GetLanguageInfo(lang
);
974 return wxEmptyString
;
976 return info
->CanonicalName
;
980 const wxLanguageInfo
*wxLocale::FindLanguageInfo(const wxString
& locale
)
984 const wxLanguageInfo
*infoRet
= NULL
;
986 const size_t count
= ms_languagesDB
->GetCount();
987 for ( size_t i
= 0; i
< count
; i
++ )
989 const wxLanguageInfo
*info
= &ms_languagesDB
->Item(i
);
991 if ( wxStricmp(locale
, info
->CanonicalName
) == 0 ||
992 wxStricmp(locale
, info
->Description
) == 0 )
994 // exact match, stop searching
999 if ( wxStricmp(locale
, info
->CanonicalName
.BeforeFirst(wxS('_'))) == 0 )
1001 // a match -- but maybe we'll find an exact one later, so continue
1004 // OTOH, maybe we had already found a language match and in this
1005 // case don't overwrite it because the entry for the default
1006 // country always appears first in ms_languagesDB
1015 wxString
wxLocale::GetSysName() const
1017 return wxSetlocale(LC_ALL
, NULL
);
1021 wxLocale::~wxLocale()
1023 // Restore old translations object.
1024 // See DoCommonInit() for explanation of why this is needed for backward
1026 if ( wxTranslations::Get() == &m_translations
)
1029 wxTranslations::SetNonOwned(&m_pOldLocale
->m_translations
);
1031 wxTranslations::Set(NULL
);
1034 // restore old locale pointer
1035 wxSetLocale(m_pOldLocale
);
1037 wxSetlocale(LC_ALL
, m_pszOldLocale
);
1038 free(const_cast<char *>(m_pszOldLocale
));
1042 // check if the given locale is provided by OS and C run time
1044 bool wxLocale::IsAvailable(int lang
)
1046 const wxLanguageInfo
*info
= wxLocale::GetLanguageInfo(lang
);
1049 // The language is unknown (this normally only happens when we're
1050 // passed wxLANGUAGE_DEFAULT), so we can't support it.
1051 wxASSERT_MSG( lang
== wxLANGUAGE_DEFAULT
,
1052 wxS("No info for a valid language?") );
1056 #if defined(__WIN32__)
1057 if ( !info
->WinLang
)
1060 if ( !::IsValidLocale(info
->GetLCID(), LCID_INSTALLED
) )
1063 #elif defined(__UNIX__)
1065 // Test if setting the locale works, then set it back.
1066 char * const oldLocale
= wxStrdupA(setlocale(LC_ALL
, NULL
));
1068 // Some platforms don't like xx_YY form and require xx only so test for
1071 available
= wxSetlocaleTryUTF8(LC_ALL
, info
->CanonicalName
) ||
1072 wxSetlocaleTryUTF8(LC_ALL
, ExtractLang(info
->CanonicalName
));
1074 // restore the original locale
1075 wxSetlocale(LC_ALL
, oldLocale
);
1087 bool wxLocale::AddCatalog(const wxString
& domain
)
1089 wxTranslations
*t
= wxTranslations::Get();
1092 return t
->AddCatalog(domain
);
1095 bool wxLocale::AddCatalog(const wxString
& domain
, wxLanguage msgIdLanguage
)
1097 wxTranslations
*t
= wxTranslations::Get();
1100 return t
->AddCatalog(domain
, msgIdLanguage
);
1103 // add a catalog to our linked list
1104 bool wxLocale::AddCatalog(const wxString
& szDomain
,
1105 wxLanguage msgIdLanguage
,
1106 const wxString
& msgIdCharset
)
1108 wxTranslations
*t
= wxTranslations::Get();
1112 wxUnusedVar(msgIdCharset
);
1113 return t
->AddCatalog(szDomain
, msgIdLanguage
);
1115 return t
->AddCatalog(szDomain
, msgIdLanguage
, msgIdCharset
);
1119 bool wxLocale::IsLoaded(const wxString
& domain
) const
1121 wxTranslations
*t
= wxTranslations::Get();
1124 return t
->IsLoaded(domain
);
1127 wxString
wxLocale::GetHeaderValue(const wxString
& header
,
1128 const wxString
& domain
) const
1130 wxTranslations
*t
= wxTranslations::Get();
1132 return wxEmptyString
;
1133 return t
->GetHeaderValue(header
, domain
);
1136 // ----------------------------------------------------------------------------
1137 // accessors for locale-dependent data
1138 // ----------------------------------------------------------------------------
1140 #if defined(__WINDOWS__) || defined(__WXOSX__)
1145 // This function translates from Unicode date formats described at
1147 // http://unicode.org/reports/tr35/tr35-6.html#Date_Format_Patterns
1149 // to strftime()-like syntax. This translation is not lossless but we try to do
1152 static wxString
TranslateFromUnicodeFormat(const wxString
& fmt
)
1155 fmtWX
.reserve(fmt
.length());
1158 size_t lastCount
= 0;
1160 const char* formatchars
=
1168 for ( wxString::const_iterator p
= fmt
.begin(); /* end handled inside */; ++p
)
1170 if ( p
!= fmt
.end() )
1178 const wxUniChar ch
= (*p
).GetValue();
1179 if ( ch
.IsAscii() && strchr(formatchars
, ch
) )
1181 // these characters come in groups, start counting them
1188 // interpret any special characters we collected so far
1194 switch ( lastCount
)
1198 // these two are the same as we don't distinguish
1199 // between 1 and 2 digits for days
1212 wxFAIL_MSG( "too many 'd's" );
1217 switch ( lastCount
)
1226 wxFAIL_MSG( "wrong number of 'D's" );
1230 switch ( lastCount
)
1238 wxFAIL_MSG( "wrong number of 'w's" );
1242 switch ( lastCount
)
1257 wxFAIL_MSG( "wrong number of 'E's" );
1262 switch ( lastCount
)
1266 // as for 'd' and 'dd' above
1279 wxFAIL_MSG( "too many 'M's" );
1284 switch ( lastCount
)
1296 wxFAIL_MSG( "wrong number of 'y's" );
1301 switch ( lastCount
)
1309 wxFAIL_MSG( "wrong number of 'H's" );
1314 switch ( lastCount
)
1322 wxFAIL_MSG( "wrong number of 'h's" );
1327 switch ( lastCount
)
1335 wxFAIL_MSG( "wrong number of 'm's" );
1340 switch ( lastCount
)
1348 wxFAIL_MSG( "wrong number of 's's" );
1353 // strftime() doesn't have era string,
1354 // ignore this format
1355 wxASSERT_MSG( lastCount
<= 2, "too many 'g's" );
1365 switch ( lastCount
)
1373 wxFAIL_MSG( "too many 't's" );
1378 wxFAIL_MSG( "unreachable" );
1385 if ( p
== fmt
.end() )
1388 // not a special character so must be just a separator, treat as is
1389 if ( *p
== wxT('%') )
1391 // this one needs to be escaped
1401 } // anonymous namespace
1403 #endif // __WINDOWS__ || __WXOSX__
1405 #if defined(__WINDOWS__)
1410 LCTYPE
GetLCTYPEFormatFromLocalInfo(wxLocaleInfo index
)
1414 case wxLOCALE_SHORT_DATE_FMT
:
1415 return LOCALE_SSHORTDATE
;
1417 case wxLOCALE_LONG_DATE_FMT
:
1418 return LOCALE_SLONGDATE
;
1420 case wxLOCALE_TIME_FMT
:
1421 return LOCALE_STIMEFORMAT
;
1424 wxFAIL_MSG( "no matching LCTYPE" );
1430 } // anonymous namespace
1433 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory cat
)
1435 const wxLanguageInfo
* const
1436 info
= wxGetLocale() ? GetLanguageInfo(wxGetLocale()->GetLanguage())
1440 // wxSetLocale() hadn't been called yet of failed, hence CRT must be
1441 // using "C" locale -- but check it to detect bugs that would happen if
1442 // this were not the case.
1443 wxASSERT_MSG( strcmp(setlocale(LC_ALL
, NULL
), "C") == 0,
1444 wxS("You probably called setlocale() directly instead ")
1445 wxS("of using wxLocale and now there is a ")
1446 wxS("mismatch between C/C++ and Windows locale.\n")
1447 wxS("Things are going to break, please only change ")
1448 wxS("locale by creating wxLocale objects to avoid this!") );
1451 // Return the hard coded values for C locale. This is really the right
1452 // thing to do as there is no LCID we can use in the code below in this
1453 // case, even LOCALE_INVARIANT is not quite the same as C locale (the
1454 // only difference is that it uses %Y instead of %y in the date format
1455 // but this difference is significant enough).
1458 case wxLOCALE_THOUSANDS_SEP
:
1461 case wxLOCALE_DECIMAL_POINT
:
1464 case wxLOCALE_SHORT_DATE_FMT
:
1467 case wxLOCALE_LONG_DATE_FMT
:
1468 return "%A, %B %d, %Y";
1470 case wxLOCALE_TIME_FMT
:
1473 case wxLOCALE_DATE_TIME_FMT
:
1474 return "%m/%d/%y %H:%M:%S";
1477 wxFAIL_MSG( "unknown wxLocaleInfo" );
1481 const wxUint32 lcid
= info
->GetLCID();
1490 case wxLOCALE_THOUSANDS_SEP
:
1491 if ( ::GetLocaleInfo(lcid
, LOCALE_STHOUSAND
, buf
, WXSIZEOF(buf
)) )
1495 case wxLOCALE_DECIMAL_POINT
:
1496 if ( ::GetLocaleInfo(lcid
,
1497 cat
== wxLOCALE_CAT_MONEY
1498 ? LOCALE_SMONDECIMALSEP
1505 // As we get our decimal point separator from Win32 and not the
1506 // CRT there is a possibility of mismatch between them and this
1507 // can easily happen if the user code called setlocale()
1508 // instead of using wxLocale to change the locale. And this can
1509 // result in very strange bugs elsewhere in the code as the
1510 // assumptions that formatted strings do use the decimal
1511 // separator actually fail, so check for it here.
1514 wxString::Format("%.3f", 1.23).find(str
) != wxString::npos
,
1515 "Decimal separator mismatch -- did you use setlocale()?"
1516 "If so, use wxLocale to change the locale instead."
1521 case wxLOCALE_SHORT_DATE_FMT
:
1522 case wxLOCALE_LONG_DATE_FMT
:
1523 case wxLOCALE_TIME_FMT
:
1524 if ( ::GetLocaleInfo(lcid
, GetLCTYPEFormatFromLocalInfo(index
),
1525 buf
, WXSIZEOF(buf
)) )
1527 return TranslateFromUnicodeFormat(buf
);
1531 case wxLOCALE_DATE_TIME_FMT
:
1532 // there doesn't seem to be any specific setting for this, so just
1533 // combine date and time ones
1535 // we use the short date because this is what "%c" uses by default
1536 // ("%#c" uses long date but we have no way to specify the
1537 // alternate representation here)
1539 const wxString datefmt
= GetInfo(wxLOCALE_SHORT_DATE_FMT
);
1540 if ( datefmt
.empty() )
1543 const wxString timefmt
= GetInfo(wxLOCALE_TIME_FMT
);
1544 if ( timefmt
.empty() )
1547 str
<< datefmt
<< ' ' << timefmt
;
1552 wxFAIL_MSG( "unknown wxLocaleInfo" );
1558 #elif defined(__WXOSX__)
1561 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory
WXUNUSED(cat
))
1563 CFLocaleRef userLocaleRefRaw
;
1564 if ( wxGetLocale() )
1566 userLocaleRefRaw
= CFLocaleCreate
1568 kCFAllocatorDefault
,
1569 wxCFStringRef(wxGetLocale()->GetCanonicalName())
1572 else // no current locale, use the default one
1574 userLocaleRefRaw
= CFLocaleCopyCurrent();
1577 wxCFRef
<CFLocaleRef
> userLocaleRef(userLocaleRefRaw
);
1579 CFStringRef cfstr
= 0;
1582 case wxLOCALE_THOUSANDS_SEP
:
1583 cfstr
= (CFStringRef
) CFLocaleGetValue(userLocaleRef
, kCFLocaleGroupingSeparator
);
1586 case wxLOCALE_DECIMAL_POINT
:
1587 cfstr
= (CFStringRef
) CFLocaleGetValue(userLocaleRef
, kCFLocaleDecimalSeparator
);
1590 case wxLOCALE_SHORT_DATE_FMT
:
1591 case wxLOCALE_LONG_DATE_FMT
:
1592 case wxLOCALE_DATE_TIME_FMT
:
1593 case wxLOCALE_TIME_FMT
:
1595 CFDateFormatterStyle dateStyle
= kCFDateFormatterNoStyle
;
1596 CFDateFormatterStyle timeStyle
= kCFDateFormatterNoStyle
;
1599 case wxLOCALE_SHORT_DATE_FMT
:
1600 dateStyle
= kCFDateFormatterShortStyle
;
1602 case wxLOCALE_LONG_DATE_FMT
:
1603 dateStyle
= kCFDateFormatterFullStyle
;
1605 case wxLOCALE_DATE_TIME_FMT
:
1606 dateStyle
= kCFDateFormatterFullStyle
;
1607 timeStyle
= kCFDateFormatterMediumStyle
;
1609 case wxLOCALE_TIME_FMT
:
1610 timeStyle
= kCFDateFormatterMediumStyle
;
1613 wxFAIL_MSG( "unexpected time locale" );
1616 wxCFRef
<CFDateFormatterRef
> dateFormatter( CFDateFormatterCreate
1617 (NULL
, userLocaleRef
, dateStyle
, timeStyle
));
1618 wxCFStringRef cfs
= wxCFRetain( CFDateFormatterGetFormat(dateFormatter
));
1619 wxString format
= TranslateFromUnicodeFormat(cfs
.AsString());
1620 // we always want full years
1621 format
.Replace("%y","%Y");
1627 wxFAIL_MSG( "Unknown locale info" );
1631 wxCFStringRef
str(wxCFRetain(cfstr
));
1632 return str
.AsString();
1635 #else // !__WINDOWS__ && !__WXOSX__, assume generic POSIX
1640 wxString
GetDateFormatFromLangInfo(wxLocaleInfo index
)
1642 #ifdef HAVE_LANGINFO_H
1643 // array containing parameters for nl_langinfo() indexes by offset of index
1644 // from wxLOCALE_SHORT_DATE_FMT
1645 static const nl_item items
[] =
1647 D_FMT
, D_T_FMT
, D_T_FMT
, T_FMT
,
1650 const int nlidx
= index
- wxLOCALE_SHORT_DATE_FMT
;
1651 if ( nlidx
< 0 || nlidx
>= (int)WXSIZEOF(items
) )
1653 wxFAIL_MSG( "logic error in GetInfo() code" );
1657 const wxString
fmt(nl_langinfo(items
[nlidx
]));
1659 // just return the format returned by nl_langinfo() except for long date
1660 // format which we need to recover from date/time format ourselves (but not
1661 // if we failed completely)
1662 if ( fmt
.empty() || index
!= wxLOCALE_LONG_DATE_FMT
)
1665 // this is not 100% precise but the idea is that a typical date/time format
1666 // under POSIX systems is a combination of a long date format with time one
1667 // so we should be able to get just the long date format by removing all
1668 // time-specific format specifiers
1669 static const char *timeFmtSpecs
= "HIklMpPrRsSTXzZ";
1670 static const char *timeSep
= " :./-";
1672 wxString fmtDateOnly
;
1673 const wxString::const_iterator end
= fmt
.end();
1674 wxString::const_iterator lastSep
= end
;
1675 for ( wxString::const_iterator p
= fmt
.begin(); p
!= end
; ++p
)
1677 if ( strchr(timeSep
, *p
) )
1679 if ( lastSep
== end
)
1682 // skip it for now, we'll discard it if it's followed by a time
1683 // specifier later or add it to fmtDateOnly if it is not
1688 (p
+ 1 != end
) && strchr(timeFmtSpecs
, p
[1]) )
1690 // time specified found: skip it and any preceding separators
1696 if ( lastSep
!= end
)
1698 fmtDateOnly
+= wxString(lastSep
, p
);
1706 #else // !HAVE_LANGINFO_H
1709 // no fallback, let the application deal with unavailability of
1710 // nl_langinfo() itself as there is no good way for us to do it (well, we
1711 // could try to reverse engineer the format from strftime() output but this
1712 // looks like too much trouble considering the relatively small number of
1713 // systems without nl_langinfo() still in use)
1715 #endif // HAVE_LANGINFO_H/!HAVE_LANGINFO_H
1718 } // anonymous namespace
1721 wxString
wxLocale::GetInfo(wxLocaleInfo index
, wxLocaleCategory cat
)
1723 lconv
* const lc
= localeconv();
1729 case wxLOCALE_THOUSANDS_SEP
:
1730 if ( cat
== wxLOCALE_CAT_NUMBER
)
1731 return lc
->thousands_sep
;
1732 else if ( cat
== wxLOCALE_CAT_MONEY
)
1733 return lc
->mon_thousands_sep
;
1735 wxFAIL_MSG( "invalid wxLocaleCategory" );
1739 case wxLOCALE_DECIMAL_POINT
:
1740 if ( cat
== wxLOCALE_CAT_NUMBER
)
1741 return lc
->decimal_point
;
1742 else if ( cat
== wxLOCALE_CAT_MONEY
)
1743 return lc
->mon_decimal_point
;
1745 wxFAIL_MSG( "invalid wxLocaleCategory" );
1748 case wxLOCALE_SHORT_DATE_FMT
:
1749 case wxLOCALE_LONG_DATE_FMT
:
1750 case wxLOCALE_DATE_TIME_FMT
:
1751 case wxLOCALE_TIME_FMT
:
1752 if ( cat
!= wxLOCALE_CAT_DATE
&& cat
!= wxLOCALE_CAT_DEFAULT
)
1754 wxFAIL_MSG( "invalid wxLocaleCategory" );
1758 return GetDateFormatFromLangInfo(index
);
1762 wxFAIL_MSG( "unknown wxLocaleInfo value" );
1770 // ----------------------------------------------------------------------------
1771 // global functions and variables
1772 // ----------------------------------------------------------------------------
1774 // retrieve/change current locale
1775 // ------------------------------
1777 // the current locale object
1778 static wxLocale
*g_pLocale
= NULL
;
1780 wxLocale
*wxGetLocale()
1785 wxLocale
*wxSetLocale(wxLocale
*pLocale
)
1787 wxLocale
*pOld
= g_pLocale
;
1788 g_pLocale
= pLocale
;
1794 // ----------------------------------------------------------------------------
1795 // wxLocale module (for lazy destruction of languagesDB)
1796 // ----------------------------------------------------------------------------
1798 class wxLocaleModule
: public wxModule
1800 DECLARE_DYNAMIC_CLASS(wxLocaleModule
)
1811 wxLocale::DestroyLanguagesDB();
1815 IMPLEMENT_DYNAMIC_CLASS(wxLocaleModule
, wxModule
)
1817 #endif // wxUSE_INTL