]> git.saurik.com Git - wxWidgets.git/blame - src/common/intl.cpp
ping method almost there
[wxWidgets.git] / src / common / intl.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: intl.cpp
3// Purpose: Internationalization and localisation for wxWindows
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
7af89395 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
1678ad78 13// declaration
c801d85f
KB
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
84c18814 21 #pragma implementation "intl.h"
c801d85f
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
84c18814 28 #pragma hdrstop
c801d85f
KB
29#endif
30
d427503c
VZ
31#if wxUSE_INTL
32
1678ad78
GL
33// standard headers
34#include <locale.h>
0fb67cd1 35#include <ctype.h>
7502ba29 36
1678ad78
GL
37// wxWindows
38#include "wx/defs.h"
39#include "wx/string.h"
c801d85f
KB
40#include "wx/intl.h"
41#include "wx/file.h"
42#include "wx/log.h"
ed58dbea 43#include "wx/debug.h"
c801d85f
KB
44#include "wx/utils.h"
45
46#include <stdlib.h>
47
84c18814
VZ
48// ----------------------------------------------------------------------------
49// simple types
50// ----------------------------------------------------------------------------
51
e939abfd 52// this should *not* be wxChar, this type must have exactly 8 bits!
84c18814 53typedef unsigned char size_t8;
e939abfd
VZ
54
55#ifdef __WXMSW__
56 #if defined(__WIN16__)
57 typedef unsigned long size_t32;
58 #elif defined(__WIN32__)
59 typedef unsigned int size_t32;
60 #else
61 // Win64 will have different type sizes
62 #error "Please define a 32 bit type"
63 #endif
64#else // !Windows
65 // SIZEOF_XXX are defined by configure
66 #if defined(SIZEOF_INT) && (SIZEOF_INT == 4)
67 typedef unsigned int size_t32;
68 #elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 4)
69 typedef unsigned long size_t32;
70 #else
71 // assume sizeof(int) == 4 - what else can we do
72 typedef unsigned int size_t32;
73
74 // ... but at least check it during run time
75 static class IntSizeChecker
76 {
77 public:
78 IntSizeChecker()
79 {
913df6f2
DW
80 // Asserting a sizeof directly causes some compilers to
81 // issue a "using constant in a conditional expression" warning
82 size_t intsize = sizeof(int);
83
84 wxASSERT_MSG( intsize == 4,
e939abfd
VZ
85 "size_t32 is incorrectly defined!" );
86 }
87 } intsizechecker;
88 #endif
89#endif // Win/!Win
84c18814 90
c801d85f
KB
91// ----------------------------------------------------------------------------
92// constants
93// ----------------------------------------------------------------------------
94
95// magic number identifying the .mo format file
c86f1403
VZ
96const size_t32 MSGCATALOG_MAGIC = 0x950412de;
97const size_t32 MSGCATALOG_MAGIC_SW = 0xde120495;
c801d85f
KB
98
99// extension of ".mo" files
100#define MSGCATALOG_EXTENSION ".mo"
101
102// ----------------------------------------------------------------------------
1678ad78 103// global functions
c801d85f
KB
104// ----------------------------------------------------------------------------
105
106// suppress further error messages about missing translations
107// (if you don't have one catalog file, you wouldn't like to see the
108// error message for each string in it, so normally it's given only
109// once)
1678ad78 110void wxSuppressTransErrors();
c801d85f
KB
111
112// restore the logging
1678ad78 113void wxRestoreTransErrors();
c801d85f
KB
114
115// get the current state
1678ad78 116bool wxIsLoggingTransErrors();
c801d85f 117
84c18814 118static wxLocale *wxSetLocale(wxLocale *pLocale);
c801d85f
KB
119
120// ----------------------------------------------------------------------------
121// wxMsgCatalog corresponds to one disk-file message catalog.
122//
123// This is a "low-level" class and is used only by wxLocale (that's why
124// it's designed to be stored in a linked list)
125// ----------------------------------------------------------------------------
126
127class wxMsgCatalog
128{
129public:
130 // ctor & dtor
131 wxMsgCatalog();
132 ~wxMsgCatalog();
133
134 // load the catalog from disk (szDirPrefix corresponds to language)
e36e6f95 135 bool Load(const wxChar *szDirPrefix, const wxChar *szName);
c801d85f
KB
136 bool IsLoaded() const { return m_pData != NULL; }
137
138 // get name of the catalog
e36e6f95 139 const wxChar *GetName() const { return m_pszName; }
c801d85f
KB
140
141 // get the translated string: returns NULL if not found
142 const char *GetString(const char *sz) const;
143
144 // public variable pointing to the next element in a linked list (or NULL)
145 wxMsgCatalog *m_pNext;
7af89395 146
c801d85f
KB
147private:
148 // this implementation is binary compatible with GNU gettext() version 0.10
149
150 // an entry in the string table
151 struct wxMsgTableEntry
152 {
c86f1403
VZ
153 size_t32 nLen; // length of the string
154 size_t32 ofsString; // pointer to the string
c801d85f
KB
155 };
156
157 // header of a .mo file
158 struct wxMsgCatalogHeader
159 {
c86f1403 160 size_t32 magic, // offset +00: magic id
84c18814
VZ
161 revision, // +04: revision
162 numStrings; // +08: number of strings in the file
c86f1403 163 size_t32 ofsOrigTable, // +0C: start of original string table
84c18814 164 ofsTransTable; // +10: start of translated string table
c86f1403 165 size_t32 nHashSize, // +14: hash table size
84c18814 166 ofsHashTable; // +18: offset of hash table start
7af89395
VZ
167 };
168
c801d85f 169 // all data is stored here, NULL if no data loaded
c86f1403 170 size_t8 *m_pData;
7af89395 171
c801d85f 172 // data description
84c18814 173 size_t32 m_numStrings, // number of strings in this domain
c801d85f 174 m_nHashSize; // number of entries in hash table
84c18814 175 size_t32 *m_pHashTable; // pointer to hash table
c801d85f
KB
176 wxMsgTableEntry *m_pOrigTable, // pointer to original strings
177 *m_pTransTable; // translated
178
c86f1403 179 const char *StringAtOfs(wxMsgTableEntry *pTable, size_t32 index) const
c801d85f
KB
180 { return (const char *)(m_pData + Swap(pTable[index].ofsString)); }
181
182 // utility functions
183 // calculate the hash value of given string
c86f1403 184 static inline size_t32 GetHash(const char *sz);
c801d85f 185 // big<->little endian
c86f1403 186 inline size_t32 Swap(size_t32 ui) const;
c801d85f
KB
187
188 // internal state
189 bool HasHashTable() const // true if hash table is present
190 { return m_nHashSize > 2 && m_pHashTable != NULL; }
191
192 bool m_bSwapped; // wrong endianness?
193
e36e6f95 194 wxChar *m_pszName; // name of the domain
c801d85f
KB
195};
196
fd323a5e
VZ
197// ----------------------------------------------------------------------------
198// global variables
199// ----------------------------------------------------------------------------
200
201// the list of the directories to search for message catalog files
202static wxArrayString s_searchPrefixes;
203
c801d85f
KB
204// ============================================================================
205// implementation
206// ============================================================================
207
208// ----------------------------------------------------------------------------
209// wxMsgCatalog class
210// ----------------------------------------------------------------------------
211
212// calculate hash value using the so called hashpjw function by P.J. Weinberger
213// [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools]
c86f1403 214size_t32 wxMsgCatalog::GetHash(const char *sz)
c801d85f 215{
c86f1403 216 #define HASHWORDBITS 32 // the length of size_t32
c801d85f 217
c86f1403
VZ
218 size_t32 hval = 0;
219 size_t32 g;
c801d85f
KB
220 while ( *sz != '\0' ) {
221 hval <<= 4;
c86f1403
VZ
222 hval += (size_t32)*sz++;
223 g = hval & ((size_t32)0xf << (HASHWORDBITS - 4));
c801d85f
KB
224 if ( g != 0 ) {
225 hval ^= g >> (HASHWORDBITS - 8);
226 hval ^= g;
227 }
228 }
229
230 return hval;
231}
232
233// swap the 2 halves of 32 bit integer if needed
c86f1403 234size_t32 wxMsgCatalog::Swap(size_t32 ui) const
c801d85f 235{
7af89395 236 return m_bSwapped ? (ui << 24) | ((ui & 0xff00) << 8) |
c801d85f
KB
237 ((ui >> 8) & 0xff00) | (ui >> 24)
238 : ui;
239}
240
7af89395
VZ
241wxMsgCatalog::wxMsgCatalog()
242{
c801d85f
KB
243 m_pData = NULL;
244 m_pszName = NULL;
245}
246
7af89395
VZ
247wxMsgCatalog::~wxMsgCatalog()
248{
249 wxDELETEA(m_pData);
250 wxDELETEA(m_pszName);
c801d85f
KB
251}
252
fd323a5e 253// small class to suppress the translation erros until exit from current scope
c801d85f
KB
254class NoTransErr
255{
fd323a5e 256public:
c801d85f
KB
257 NoTransErr() { wxSuppressTransErrors(); }
258 ~NoTransErr() { wxRestoreTransErrors(); }
259};
7af89395 260
fd323a5e 261// return all directories to search for given prefix
e36e6f95
OK
262static wxString GetAllMsgCatalogSubdirs(const wxChar *prefix,
263 const wxChar *lang)
fd323a5e
VZ
264{
265 wxString searchPath;
266
267 // search first in prefix/fr/LC_MESSAGES, then in prefix/fr and finally in
268 // prefix (assuming the language is 'fr')
7af89395 269 searchPath << prefix << wxFILE_SEP_PATH << lang << wxFILE_SEP_PATH
e36e6f95 270 << _T("LC_MESSAGES") << wxPATH_SEP
7af89395
VZ
271 << prefix << wxFILE_SEP_PATH << lang << wxPATH_SEP
272 << prefix << wxPATH_SEP;
fd323a5e
VZ
273
274 return searchPath;
275}
276
277// construct the search path for the given language
e36e6f95 278static wxString GetFullSearchPath(const wxChar *lang)
fd323a5e
VZ
279{
280 wxString searchPath;
281
282 // first take the entries explicitly added by the program
283 size_t count = s_searchPrefixes.Count();
284 for ( size_t n = 0; n < count; n++ )
285 {
286 searchPath << GetAllMsgCatalogSubdirs(s_searchPrefixes[n], lang)
7af89395 287 << wxPATH_SEP;
fd323a5e
VZ
288 }
289
290 // then take the current directory
291 // FIXME it should be the directory of the executable
e36e6f95 292 searchPath << GetAllMsgCatalogSubdirs(_T("."), lang) << wxPATH_SEP;
fd323a5e
VZ
293
294 // and finally add some standard ones
295 searchPath
e36e6f95
OK
296 << GetAllMsgCatalogSubdirs(_T("/usr/share/locale"), lang) << wxPATH_SEP
297 << GetAllMsgCatalogSubdirs(_T("/usr/lib/locale"), lang) << wxPATH_SEP
298 << GetAllMsgCatalogSubdirs(_T("/usr/local/share/locale"), lang);
fd323a5e
VZ
299
300 return searchPath;
301}
302
c801d85f 303// open disk file and read in it's contents
03443829 304bool wxMsgCatalog::Load(const wxChar *szDirPrefix, const wxChar *szName0)
c801d85f 305{
03443829
KB
306 /* We need to handle locales like de_AT.iso-8859-1
307 For this we first chop off the .CHARSET specifier and ignore it.
308 FIXME: UNICODE SUPPORT: must use CHARSET specifier!
309 */
310 wxString szName = szName0;
311 if(szName.Find('.') != -1) // contains a dot
312 szName = szName.Left(szName.Find('.'));
313
fd323a5e 314 // FIXME VZ: I forgot the exact meaning of LC_PATH - anyone to remind me?
03443829 315 // KB: search path where to find the mo files, probably : delimited
fd323a5e 316#if 0
e36e6f95 317 const wxChar *pszLcPath = wxGetenv("LC_PATH");
c801d85f 318 if ( pszLcPath != NULL )
fd323a5e
VZ
319 strPath += pszLcPath + wxString(szDirPrefix) + MSG_PATH;
320#endif // 0
7af89395 321
fd323a5e 322 wxString searchPath = GetFullSearchPath(szDirPrefix);
e36e6f95 323 const wxChar *sublocale = wxStrchr(szDirPrefix, _T('_'));
fd323a5e
VZ
324 if ( sublocale )
325 {
326 // also add just base locale name: for things like "fr_BE" (belgium
327 // french) we should use "fr" if no belgium specific message catalogs
328 // exist
329 searchPath << GetFullSearchPath(wxString(szDirPrefix).
330 Left((size_t)(sublocale - szDirPrefix)))
7af89395 331 << wxPATH_SEP;
fd323a5e 332 }
7af89395 333
c801d85f
KB
334 wxString strFile = szName;
335 strFile += MSGCATALOG_EXTENSION;
336
337 // don't give translation errors here because the wxstd catalog might
338 // not yet be loaded (and it's normal)
339 //
340 // (we're using an object because we have several return paths)
ed58dbea 341
c801d85f 342 NoTransErr noTransErr;
ed58dbea 343// Then why do you translate at all? Just use _T() and not _(). RR.
c801d85f 344
1a5a8367 345 wxLogVerbose(_("looking for catalog '%s' in path '%s'."),
742af071 346 szName.c_str(), searchPath.c_str());
c801d85f
KB
347
348 wxString strFullName;
fd323a5e 349 if ( !wxFindFileInPath(&strFullName, searchPath, strFile) ) {
ed58dbea 350 wxLogWarning(_("catalog file for domain '%s' not found."), szName.c_str());
c801d85f
KB
351 return FALSE;
352 }
353
354 // open file
1a5a8367 355 wxLogVerbose(_("using catalog '%s' from '%s'."),
ed58dbea 356 szName.c_str(), strFullName.c_str());
7af89395 357
c801d85f
KB
358 wxFile fileMsg(strFullName);
359 if ( !fileMsg.IsOpened() )
1678ad78 360 return FALSE;
c801d85f
KB
361
362 // get the file size
1678ad78
GL
363 off_t nSize = fileMsg.Length();
364 if ( nSize == wxInvalidOffset )
365 return FALSE;
c801d85f
KB
366
367 // read the whole file in memory
c86f1403 368 m_pData = new size_t8[nSize];
c801d85f 369 if ( fileMsg.Read(m_pData, nSize) != nSize ) {
a3622daa 370 wxDELETEA(m_pData);
1678ad78 371 return FALSE;
c801d85f 372 }
7af89395 373
c801d85f 374 // examine header
1678ad78 375 bool bValid = (size_t)nSize > sizeof(wxMsgCatalogHeader);
7af89395 376
fd3f686c 377 wxMsgCatalogHeader *pHeader = (wxMsgCatalogHeader *)m_pData;
c801d85f 378 if ( bValid ) {
c801d85f
KB
379 // we'll have to swap all the integers if it's true
380 m_bSwapped = pHeader->magic == MSGCATALOG_MAGIC_SW;
381
382 // check the magic number
383 bValid = m_bSwapped || pHeader->magic == MSGCATALOG_MAGIC;
384 }
7af89395 385
c801d85f
KB
386 if ( !bValid ) {
387 // it's either too short or has incorrect magic number
1a5a8367 388 wxLogWarning(_("'%s' is not a valid message catalog."), strFullName.c_str());
7af89395 389
a3622daa 390 wxDELETEA(m_pData);
c801d85f
KB
391 return FALSE;
392 }
7af89395 393
c801d85f
KB
394 // initialize
395 m_numStrings = Swap(pHeader->numStrings);
7af89395 396 m_pOrigTable = (wxMsgTableEntry *)(m_pData +
1678ad78 397 Swap(pHeader->ofsOrigTable));
7af89395 398 m_pTransTable = (wxMsgTableEntry *)(m_pData +
1678ad78 399 Swap(pHeader->ofsTransTable));
c801d85f
KB
400
401 m_nHashSize = Swap(pHeader->nHashSize);
c86f1403 402 m_pHashTable = (size_t32 *)(m_pData + Swap(pHeader->ofsHashTable));
c801d85f 403
e36e6f95
OK
404 m_pszName = new wxChar[wxStrlen(szName) + 1];
405 wxStrcpy(m_pszName, szName);
c801d85f
KB
406
407 // everything is fine
408 return TRUE;
409}
410
411// search for a string
412const char *wxMsgCatalog::GetString(const char *szOrig) const
413{
414 if ( szOrig == NULL )
415 return NULL;
416
417 if ( HasHashTable() ) { // use hash table for lookup if possible
7af89395 418 size_t32 nHashVal = GetHash(szOrig);
c86f1403 419 size_t32 nIndex = nHashVal % m_nHashSize;
c801d85f 420
c86f1403 421 size_t32 nIncr = 1 + (nHashVal % (m_nHashSize - 2));
7af89395 422
c801d85f 423 while ( TRUE ) {
c86f1403 424 size_t32 nStr = Swap(m_pHashTable[nIndex]);
c801d85f
KB
425 if ( nStr == 0 )
426 return NULL;
7af89395 427
c801d85f
KB
428 if ( strcmp(szOrig, StringAtOfs(m_pOrigTable, nStr - 1)) == 0 )
429 return StringAtOfs(m_pTransTable, nStr - 1);
430
431 if ( nIndex >= m_nHashSize - nIncr)
432 nIndex -= m_nHashSize - nIncr;
433 else
434 nIndex += nIncr;
435 }
436 }
437 else { // no hash table: use default binary search
c86f1403 438 size_t32 bottom = 0,
c801d85f
KB
439 top = m_numStrings,
440 current;
441 while ( bottom < top ) {
442 current = (bottom + top) / 2;
443 int res = strcmp(szOrig, StringAtOfs(m_pOrigTable, current));
444 if ( res < 0 )
445 top = current;
446 else if ( res > 0 )
447 bottom = current + 1;
448 else // found!
449 return StringAtOfs(m_pTransTable, current);
450 }
451 }
452
453 // not found
454 return NULL;
455}
456
457// ----------------------------------------------------------------------------
458// wxLocale
459// ----------------------------------------------------------------------------
460
23fcecf7 461wxLocale::wxLocale()
c801d85f 462{
23fcecf7
VZ
463 m_pszOldLocale = NULL;
464 m_pMsgCat = NULL;
465}
466
467// NB: this function has (desired) side effect of changing current locale
e36e6f95
OK
468bool wxLocale::Init(const wxChar *szName,
469 const wxChar *szShort,
470 const wxChar *szLocale,
23fcecf7
VZ
471 bool bLoadDefault)
472{
473 m_strLocale = szName;
474 m_strShort = szShort;
475
c801d85f
KB
476 // change current locale (default: same as long name)
477 if ( szLocale == NULL )
9dea50fc
VZ
478 {
479 // the argument to setlocale()
480 szLocale = szShort;
481 }
e36e6f95 482 m_pszOldLocale = wxSetlocale(LC_ALL, szLocale);
c801d85f 483 if ( m_pszOldLocale == NULL )
1a5a8367 484 wxLogError(_("locale '%s' can not be set."), szLocale);
c801d85f
KB
485
486 // the short name will be used to look for catalog files as well,
487 // so we need something here
488 if ( m_strShort.IsEmpty() ) {
fd323a5e
VZ
489 // FIXME I don't know how these 2 letter abbreviations are formed,
490 // this wild guess is surely wrong
0fb67cd1 491 m_strShort = tolower(szLocale[0]) + tolower(szLocale[1]);
c801d85f 492 }
7af89395 493
c801d85f 494 // save the old locale to be able to restore it later
7af89395
VZ
495 m_pOldLocale = wxSetLocale(this);
496
c801d85f
KB
497 // load the default catalog with wxWindows standard messages
498 m_pMsgCat = NULL;
23fcecf7 499 bool bOk = TRUE;
c801d85f 500 if ( bLoadDefault )
e36e6f95 501 bOk = AddCatalog(_T("wxstd"));
23fcecf7
VZ
502
503 return bOk;
c801d85f
KB
504}
505
fd323a5e
VZ
506void wxLocale::AddCatalogLookupPathPrefix(const wxString& prefix)
507{
3c67202d 508 if ( s_searchPrefixes.Index(prefix) == wxNOT_FOUND )
fd323a5e
VZ
509 {
510 s_searchPrefixes.Add(prefix);
511 }
512 //else: already have it
513}
514
c801d85f
KB
515// clean up
516wxLocale::~wxLocale()
517{
fd323a5e
VZ
518 // free memory
519 wxMsgCatalog *pTmpCat;
520 while ( m_pMsgCat != NULL ) {
521 pTmpCat = m_pMsgCat;
522 m_pMsgCat = m_pMsgCat->m_pNext;
523 delete pTmpCat;
524 }
525
526 // restore old locale
527 wxSetLocale(m_pOldLocale);
e36e6f95 528 wxSetlocale(LC_ALL, m_pszOldLocale);
c801d85f
KB
529}
530
531// get the translation of given string in current locale
e36e6f95
OK
532const wxMB2WXbuf wxLocale::GetString(const wxChar *szOrigString,
533 const wxChar *szDomain) const
c801d85f 534{
e36e6f95 535 if ( wxIsEmpty(szOrigString) )
dd0e574a 536 return szDomain;
c801d85f
KB
537
538 const char *pszTrans = NULL;
dcf924a3 539 const wxWX2MBbuf szOrgString = wxConvCurrent->cWX2MB(szOrigString);
c801d85f
KB
540
541 wxMsgCatalog *pMsgCat;
542 if ( szDomain != NULL ) {
543 pMsgCat = FindCatalog(szDomain);
7af89395 544
c801d85f
KB
545 // does the catalog exist?
546 if ( pMsgCat != NULL )
e36e6f95 547 pszTrans = pMsgCat->GetString(szOrgString);
c801d85f
KB
548 }
549 else {
550 // search in all domains
551 for ( pMsgCat = m_pMsgCat; pMsgCat != NULL; pMsgCat = pMsgCat->m_pNext ) {
e36e6f95 552 pszTrans = pMsgCat->GetString(szOrgString);
c801d85f
KB
553 if ( pszTrans != NULL ) // take the first found
554 break;
555 }
556 }
557
558 if ( pszTrans == NULL ) {
559 if ( wxIsLoggingTransErrors() ) {
fd323a5e
VZ
560 // suppress further error messages if we're not debugging: this avoids
561 // flooding the user with messages about each and every missing string if,
562 // for example, a whole catalog file is missing.
563
564 // do it before calling LogWarning to prevent infinite recursion!
565#ifdef __WXDEBUG__
566 NoTransErr noTransErr;
567#else // !debug
c801d85f 568 wxSuppressTransErrors();
fd323a5e 569#endif // debug/!debug
7af89395 570
c801d85f 571 if ( szDomain != NULL )
fd323a5e 572 {
1a5a8367 573 wxLogWarning(_("string '%s' not found in domain '%s' for locale '%s'."),
fd323a5e
VZ
574 szOrigString, szDomain, m_strLocale.c_str());
575 }
c801d85f 576 else
fd323a5e 577 {
1a5a8367 578 wxLogWarning(_("string '%s' not found in locale '%s'."),
fd323a5e
VZ
579 szOrigString, m_strLocale.c_str());
580 }
c801d85f
KB
581 }
582
e36e6f95 583 return (wxMB2WXbuf)(szOrigString);
c801d85f
KB
584 }
585 else
dcf924a3 586 return (wxMB2WXbuf)(wxConvCurrent->cMB2WX(pszTrans));
c801d85f
KB
587}
588
589// find catalog by name in a linked list, return NULL if !found
e36e6f95 590wxMsgCatalog *wxLocale::FindCatalog(const wxChar *szDomain) const
c801d85f
KB
591{
592// linear search in the linked list
593 wxMsgCatalog *pMsgCat;
594 for ( pMsgCat = m_pMsgCat; pMsgCat != NULL; pMsgCat = pMsgCat->m_pNext ) {
e36e6f95 595 if ( wxStricmp(pMsgCat->GetName(), szDomain) == 0 )
c801d85f
KB
596 return pMsgCat;
597 }
7af89395 598
c801d85f
KB
599 return NULL;
600}
601
602// check if the given catalog is loaded
e36e6f95 603bool wxLocale::IsLoaded(const wxChar *szDomain) const
c801d85f
KB
604{
605 return FindCatalog(szDomain) != NULL;
606}
607
608// add a catalog to our linked list
e36e6f95 609bool wxLocale::AddCatalog(const wxChar *szDomain)
c801d85f
KB
610{
611 wxMsgCatalog *pMsgCat = new wxMsgCatalog;
7af89395 612
c801d85f
KB
613 if ( pMsgCat->Load(m_strShort, szDomain) ) {
614 // add it to the head of the list so that in GetString it will
615 // be searched before the catalogs added earlier
616 pMsgCat->m_pNext = m_pMsgCat;
617 m_pMsgCat = pMsgCat;
7af89395 618
c801d85f
KB
619 return TRUE;
620 }
621 else {
622 // don't add it because it couldn't be loaded anyway
623 delete pMsgCat;
7af89395 624
c801d85f
KB
625 return FALSE;
626 }
627}
628
629// ----------------------------------------------------------------------------
630// global functions and variables
631// ----------------------------------------------------------------------------
632
633// translation errors logging
634// --------------------------
635
636static bool gs_bGiveTransErrors = TRUE;
637
638void wxSuppressTransErrors()
639{
640 gs_bGiveTransErrors = FALSE;
641}
642
643void wxRestoreTransErrors()
644{
645 gs_bGiveTransErrors = TRUE;
646}
647
648bool wxIsLoggingTransErrors()
649{
650 return gs_bGiveTransErrors;
651}
652
653// retrieve/change current locale
654// ------------------------------
655
656// the current locale object
84c18814 657static wxLocale *g_pLocale = NULL;
c801d85f 658
1678ad78
GL
659wxLocale *wxGetLocale()
660{
7af89395 661 return g_pLocale;
1678ad78
GL
662}
663
c801d85f
KB
664wxLocale *wxSetLocale(wxLocale *pLocale)
665{
7af89395
VZ
666 wxLocale *pOld = g_pLocale;
667 g_pLocale = pLocale;
668 return pOld;
c801d85f 669}
d427503c
VZ
670
671#endif // wxUSE_INTL
672