]> git.saurik.com Git - wxWidgets.git/blame - src/common/intl.cpp
small cleanup, removed unused headers
[wxWidgets.git] / src / common / intl.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
dccce9ea 2// Name: src/common/intl.cpp
77ffb593 3// Purpose: Internationalization and localisation for wxWidgets
c801d85f 4// Author: Vadim Zeitlin
849a28d0
VS
5// Modified by: Michael N. Filippov <michael@idisys.iae.nsk.su>
6// (2003/09/30 - PluralForms support)
c801d85f
KB
7// Created: 29/01/98
8// RCS-ID: $Id$
9// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 10// Licence: wxWindows licence
c801d85f
KB
11/////////////////////////////////////////////////////////////////////////////
12
13// ============================================================================
1678ad78 14// declaration
c801d85f
KB
15// ============================================================================
16
17// ----------------------------------------------------------------------------
18// headers
19// ----------------------------------------------------------------------------
20
8bcf4c86
VS
21#if defined(__BORLAND__) && !defined(__WXDEBUG__)
22 // There's a bug in Borland's compiler that breaks wxLocale with -O2,
23 // so make sure that flag is not used for this file:
24 #pragma option -O1
25#endif
26
3c221c50
SN
27#ifdef __EMX__
28// The following define is needed by Innotek's libc to
29// make the definition of struct localeconv available.
30#define __INTERNAL_DEFS
31#endif
32
c801d85f
KB
33// For compilers that support precompilation, includes "wx.h".
34#include "wx/wxprec.h"
35
36#ifdef __BORLANDC__
84c18814 37 #pragma hdrstop
c801d85f
KB
38#endif
39
d427503c
VZ
40#if wxUSE_INTL
41
ad9835c9
WS
42#ifndef WX_PRECOMP
43 #include "wx/dynarray.h"
44 #include "wx/string.h"
45 #include "wx/intl.h"
46 #include "wx/log.h"
ad9835c9 47 #include "wx/utils.h"
670f9935 48 #include "wx/app.h"
df69528b 49 #include "wx/hashmap.h"
02761f6c 50 #include "wx/module.h"
ad9835c9 51#endif // WX_PRECOMP
1c193821
JS
52
53#ifndef __WXWINCE__
ad9835c9 54 #include <locale.h>
1c193821
JS
55#endif
56
ad9835c9 57// standard headers
dccce9ea
VZ
58#include <ctype.h>
59#include <stdlib.h>
2ec6905c 60#ifdef HAVE_LANGINFO_H
670f9935 61 #include <langinfo.h>
2ec6905c 62#endif
7502ba29 63
1c193821
JS
64#ifdef __WIN32__
65 #include "wx/msw/private.h"
66#elif defined(__UNIX_LIKE__)
67 #include "wx/fontmap.h" // for CharsetToEncoding()
68#endif
69
c801d85f 70#include "wx/file.h"
58ad1bab 71#include "wx/filename.h"
dccce9ea 72#include "wx/tokenzr.h"
030c0bea
VS
73#include "wx/fontmap.h"
74#include "wx/encconv.h"
849a28d0 75#include "wx/ptr_scpd.h"
4d931bcc 76#include "wx/apptrait.h"
f830b2b1 77#include "wx/stdpaths.h"
dccce9ea 78
76a5e5d2 79#if defined(__WXMAC__)
670f9935 80 #include "wx/mac/private.h" // includes mac headers
76a5e5d2
SC
81#endif
82
84c18814
VZ
83// ----------------------------------------------------------------------------
84// simple types
85// ----------------------------------------------------------------------------
86
e939abfd 87// this should *not* be wxChar, this type must have exactly 8 bits!
563d535e
VS
88typedef wxUint8 size_t8;
89typedef wxUint32 size_t32;
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 98
ec37df57
VZ
99// the constants describing the format of lang_LANG locale string
100static const size_t LEN_LANG = 2;
101static const size_t LEN_SUBLANG = 2;
102static const size_t LEN_FULL = LEN_LANG + 1 + LEN_SUBLANG; // 1 for '_'
103
ca6a9a14
VZ
104#define TRACE_I18N _T("i18n")
105
c801d85f 106// ----------------------------------------------------------------------------
1678ad78 107// global functions
c801d85f
KB
108// ----------------------------------------------------------------------------
109
f6bcfd97 110#ifdef __WXDEBUG__
c801d85f 111
f6bcfd97
BP
112// small class to suppress the translation erros until exit from current scope
113class NoTransErr
114{
115public:
116 NoTransErr() { ms_suppressCount++; }
117 ~NoTransErr() { ms_suppressCount--; }
118
119 static bool Suppress() { return ms_suppressCount > 0; }
120
121private:
122 static size_t ms_suppressCount;
123};
c801d85f 124
f6bcfd97
BP
125size_t NoTransErr::ms_suppressCount = 0;
126
127#else // !Debug
128
129class NoTransErr
130{
131public:
132 NoTransErr() { }
133 ~NoTransErr() { }
134};
135
136#endif // Debug/!Debug
c801d85f 137
84c18814 138static wxLocale *wxSetLocale(wxLocale *pLocale);
c801d85f 139
ec37df57
VZ
140// helper functions of GetSystemLanguage()
141#ifdef __UNIX__
142
143// get just the language part
144static inline wxString ExtractLang(const wxString& langFull)
145{
146 return langFull.Left(LEN_LANG);
147}
148
149// get everything else (including the leading '_')
150static inline wxString ExtractNotLang(const wxString& langFull)
151{
152 return langFull.Mid(LEN_LANG);
153}
154
155#endif // __UNIX__
156
563d535e 157
849a28d0
VS
158// ----------------------------------------------------------------------------
159// Plural forms parser
160// ----------------------------------------------------------------------------
161
b7b97e77 162/*
849a28d0
VS
163 Simplified Grammar
164
165Expression:
166 LogicalOrExpression '?' Expression ':' Expression
167 LogicalOrExpression
168
169LogicalOrExpression:
170 LogicalAndExpression "||" LogicalOrExpression // to (a || b) || c
171 LogicalAndExpression
172
173LogicalAndExpression:
174 EqualityExpression "&&" LogicalAndExpression // to (a && b) && c
175 EqualityExpression
176
177EqualityExpression:
178 RelationalExpression "==" RelationalExperession
179 RelationalExpression "!=" RelationalExperession
180 RelationalExpression
181
182RelationalExpression:
183 MultiplicativeExpression '>' MultiplicativeExpression
184 MultiplicativeExpression '<' MultiplicativeExpression
185 MultiplicativeExpression ">=" MultiplicativeExpression
186 MultiplicativeExpression "<=" MultiplicativeExpression
187 MultiplicativeExpression
b7b97e77 188
849a28d0
VS
189MultiplicativeExpression:
190 PmExpression '%' PmExpression
191 PmExpression
192
193PmExpression:
194 N
195 Number
196 '(' Expression ')'
197*/
198
199class wxPluralFormsToken
200{
201public:
202 enum Type
203 {
204 T_ERROR, T_EOF, T_NUMBER, T_N, T_PLURAL, T_NPLURALS, T_EQUAL, T_ASSIGN,
205 T_GREATER, T_GREATER_OR_EQUAL, T_LESS, T_LESS_OR_EQUAL,
206 T_REMINDER, T_NOT_EQUAL,
207 T_LOGICAL_AND, T_LOGICAL_OR, T_QUESTION, T_COLON, T_SEMICOLON,
208 T_LEFT_BRACKET, T_RIGHT_BRACKET
209 };
210 Type type() const { return m_type; }
211 void setType(Type type) { m_type = type; }
212 // for T_NUMBER only
213 typedef int Number;
214 Number number() const { return m_number; }
215 void setNumber(Number num) { m_number = num; }
216private:
217 Type m_type;
218 Number m_number;
219};
220
221
222class wxPluralFormsScanner
223{
224public:
225 wxPluralFormsScanner(const char* s);
226 const wxPluralFormsToken& token() const { return m_token; }
227 bool nextToken(); // returns false if error
228private:
229 const char* m_s;
230 wxPluralFormsToken m_token;
231};
232
233wxPluralFormsScanner::wxPluralFormsScanner(const char* s) : m_s(s)
234{
235 nextToken();
236}
237
238bool wxPluralFormsScanner::nextToken()
239{
240 wxPluralFormsToken::Type type = wxPluralFormsToken::T_ERROR;
241 while (isspace(*m_s))
242 {
243 ++m_s;
244 }
245 if (*m_s == 0)
246 {
247 type = wxPluralFormsToken::T_EOF;
248 }
249 else if (isdigit(*m_s))
250 {
251 wxPluralFormsToken::Number number = *m_s++ - '0';
252 while (isdigit(*m_s))
253 {
254 number = number * 10 + (*m_s++ - '0');
255 }
256 m_token.setNumber(number);
257 type = wxPluralFormsToken::T_NUMBER;
258 }
259 else if (isalpha(*m_s))
260 {
261 const char* begin = m_s++;
262 while (isalnum(*m_s))
263 {
264 ++m_s;
265 }
266 size_t size = m_s - begin;
267 if (size == 1 && memcmp(begin, "n", size) == 0)
268 {
269 type = wxPluralFormsToken::T_N;
270 }
271 else if (size == 6 && memcmp(begin, "plural", size) == 0)
272 {
273 type = wxPluralFormsToken::T_PLURAL;
274 }
275 else if (size == 8 && memcmp(begin, "nplurals", size) == 0)
276 {
277 type = wxPluralFormsToken::T_NPLURALS;
278 }
279 }
280 else if (*m_s == '=')
281 {
282 ++m_s;
283 if (*m_s == '=')
284 {
285 ++m_s;
286 type = wxPluralFormsToken::T_EQUAL;
287 }
288 else
289 {
290 type = wxPluralFormsToken::T_ASSIGN;
291 }
292 }
293 else if (*m_s == '>')
294 {
295 ++m_s;
296 if (*m_s == '=')
297 {
298 ++m_s;
299 type = wxPluralFormsToken::T_GREATER_OR_EQUAL;
300 }
301 else
302 {
303 type = wxPluralFormsToken::T_GREATER;
304 }
305 }
306 else if (*m_s == '<')
307 {
308 ++m_s;
309 if (*m_s == '=')
310 {
311 ++m_s;
312 type = wxPluralFormsToken::T_LESS_OR_EQUAL;
313 }
314 else
315 {
316 type = wxPluralFormsToken::T_LESS;
317 }
318 }
319 else if (*m_s == '%')
320 {
321 ++m_s;
322 type = wxPluralFormsToken::T_REMINDER;
323 }
324 else if (*m_s == '!' && m_s[1] == '=')
325 {
326 m_s += 2;
327 type = wxPluralFormsToken::T_NOT_EQUAL;
328 }
329 else if (*m_s == '&' && m_s[1] == '&')
330 {
331 m_s += 2;
332 type = wxPluralFormsToken::T_LOGICAL_AND;
333 }
334 else if (*m_s == '|' && m_s[1] == '|')
335 {
336 m_s += 2;
337 type = wxPluralFormsToken::T_LOGICAL_OR;
338 }
339 else if (*m_s == '?')
340 {
341 ++m_s;
342 type = wxPluralFormsToken::T_QUESTION;
343 }
344 else if (*m_s == ':')
345 {
346 ++m_s;
347 type = wxPluralFormsToken::T_COLON;
348 } else if (*m_s == ';') {
349 ++m_s;
350 type = wxPluralFormsToken::T_SEMICOLON;
351 }
352 else if (*m_s == '(')
353 {
354 ++m_s;
355 type = wxPluralFormsToken::T_LEFT_BRACKET;
356 }
357 else if (*m_s == ')')
358 {
359 ++m_s;
360 type = wxPluralFormsToken::T_RIGHT_BRACKET;
361 }
362 m_token.setType(type);
363 return type != wxPluralFormsToken::T_ERROR;
364}
365
366class wxPluralFormsNode;
367
368// NB: Can't use wxDEFINE_SCOPED_PTR_TYPE because wxPluralFormsNode is not
369// fully defined yet:
370class wxPluralFormsNodePtr
371{
372public:
373 wxPluralFormsNodePtr(wxPluralFormsNode *p = NULL) : m_p(p) {}
374 ~wxPluralFormsNodePtr();
375 wxPluralFormsNode& operator*() const { return *m_p; }
376 wxPluralFormsNode* operator->() const { return m_p; }
377 wxPluralFormsNode* get() const { return m_p; }
378 wxPluralFormsNode* release();
379 void reset(wxPluralFormsNode *p);
380
381private:
382 wxPluralFormsNode *m_p;
383};
384
385class wxPluralFormsNode
386{
387public:
388 wxPluralFormsNode(const wxPluralFormsToken& token) : m_token(token) {}
389 const wxPluralFormsToken& token() const { return m_token; }
390 const wxPluralFormsNode* node(size_t i) const
391 { return m_nodes[i].get(); }
392 void setNode(size_t i, wxPluralFormsNode* n);
393 wxPluralFormsNode* releaseNode(size_t i);
394 wxPluralFormsToken::Number evaluate(wxPluralFormsToken::Number n) const;
395
396private:
397 wxPluralFormsToken m_token;
398 wxPluralFormsNodePtr m_nodes[3];
399};
b7b97e77 400
849a28d0
VS
401wxPluralFormsNodePtr::~wxPluralFormsNodePtr()
402{
403 delete m_p;
404}
405wxPluralFormsNode* wxPluralFormsNodePtr::release()
406{
407 wxPluralFormsNode *p = m_p;
408 m_p = NULL;
409 return p;
410}
411void wxPluralFormsNodePtr::reset(wxPluralFormsNode *p)
412{
413 if (p != m_p)
414 {
415 delete m_p;
416 m_p = p;
417 }
418}
419
420
421void wxPluralFormsNode::setNode(size_t i, wxPluralFormsNode* n)
422{
423 m_nodes[i].reset(n);
424}
425
426wxPluralFormsNode* wxPluralFormsNode::releaseNode(size_t i)
427{
428 return m_nodes[i].release();
429}
430
431wxPluralFormsToken::Number
432wxPluralFormsNode::evaluate(wxPluralFormsToken::Number n) const
433{
434 switch (token().type())
435 {
436 // leaf
437 case wxPluralFormsToken::T_NUMBER:
438 return token().number();
439 case wxPluralFormsToken::T_N:
440 return n;
441 // 2 args
442 case wxPluralFormsToken::T_EQUAL:
443 return node(0)->evaluate(n) == node(1)->evaluate(n);
444 case wxPluralFormsToken::T_NOT_EQUAL:
445 return node(0)->evaluate(n) != node(1)->evaluate(n);
446 case wxPluralFormsToken::T_GREATER:
447 return node(0)->evaluate(n) > node(1)->evaluate(n);
448 case wxPluralFormsToken::T_GREATER_OR_EQUAL:
449 return node(0)->evaluate(n) >= node(1)->evaluate(n);
450 case wxPluralFormsToken::T_LESS:
451 return node(0)->evaluate(n) < node(1)->evaluate(n);
452 case wxPluralFormsToken::T_LESS_OR_EQUAL:
453 return node(0)->evaluate(n) <= node(1)->evaluate(n);
454 case wxPluralFormsToken::T_REMINDER:
455 {
456 wxPluralFormsToken::Number number = node(1)->evaluate(n);
457 if (number != 0)
458 {
459 return node(0)->evaluate(n) % number;
460 }
461 else
462 {
463 return 0;
464 }
465 }
466 case wxPluralFormsToken::T_LOGICAL_AND:
467 return node(0)->evaluate(n) && node(1)->evaluate(n);
468 case wxPluralFormsToken::T_LOGICAL_OR:
469 return node(0)->evaluate(n) || node(1)->evaluate(n);
470 // 3 args
471 case wxPluralFormsToken::T_QUESTION:
472 return node(0)->evaluate(n)
473 ? node(1)->evaluate(n)
474 : node(2)->evaluate(n);
475 default:
476 return 0;
477 }
478}
479
480
481class wxPluralFormsCalculator
482{
483public:
484 wxPluralFormsCalculator() : m_nplurals(0), m_plural(0) {}
b7b97e77 485
849a28d0
VS
486 // input: number, returns msgstr index
487 int evaluate(int n) const;
488
489 // input: text after "Plural-Forms:" (e.g. "nplurals=2; plural=(n != 1);"),
490 // if s == 0, creates default handler
491 // returns 0 if error
492 static wxPluralFormsCalculator* make(const char* s = 0);
493
494 ~wxPluralFormsCalculator() {}
495
496 void init(wxPluralFormsToken::Number nplurals, wxPluralFormsNode* plural);
b7b97e77 497
849a28d0
VS
498private:
499 wxPluralFormsToken::Number m_nplurals;
500 wxPluralFormsNodePtr m_plural;
501};
502
4115960d 503wxDEFINE_SCOPED_PTR_TYPE(wxPluralFormsCalculator)
849a28d0
VS
504
505void wxPluralFormsCalculator::init(wxPluralFormsToken::Number nplurals,
506 wxPluralFormsNode* plural)
507{
508 m_nplurals = nplurals;
509 m_plural.reset(plural);
510}
511
512int wxPluralFormsCalculator::evaluate(int n) const
513{
514 if (m_plural.get() == 0)
515 {
516 return 0;
517 }
518 wxPluralFormsToken::Number number = m_plural->evaluate(n);
519 if (number < 0 || number > m_nplurals)
520 {
521 return 0;
522 }
523 return number;
524}
525
526
527class wxPluralFormsParser
528{
529public:
530 wxPluralFormsParser(wxPluralFormsScanner& scanner) : m_scanner(scanner) {}
531 bool parse(wxPluralFormsCalculator& rCalculator);
532
533private:
534 wxPluralFormsNode* parsePlural();
535 // stops at T_SEMICOLON, returns 0 if error
536 wxPluralFormsScanner& m_scanner;
537 const wxPluralFormsToken& token() const;
538 bool nextToken();
b7b97e77 539
849a28d0
VS
540 wxPluralFormsNode* expression();
541 wxPluralFormsNode* logicalOrExpression();
542 wxPluralFormsNode* logicalAndExpression();
543 wxPluralFormsNode* equalityExpression();
544 wxPluralFormsNode* multiplicativeExpression();
545 wxPluralFormsNode* relationalExpression();
546 wxPluralFormsNode* pmExpression();
547};
548
549bool wxPluralFormsParser::parse(wxPluralFormsCalculator& rCalculator)
550{
551 if (token().type() != wxPluralFormsToken::T_NPLURALS)
552 return false;
553 if (!nextToken())
554 return false;
555 if (token().type() != wxPluralFormsToken::T_ASSIGN)
556 return false;
557 if (!nextToken())
558 return false;
559 if (token().type() != wxPluralFormsToken::T_NUMBER)
560 return false;
561 wxPluralFormsToken::Number nplurals = token().number();
562 if (!nextToken())
563 return false;
564 if (token().type() != wxPluralFormsToken::T_SEMICOLON)
565 return false;
566 if (!nextToken())
567 return false;
568 if (token().type() != wxPluralFormsToken::T_PLURAL)
569 return false;
570 if (!nextToken())
571 return false;
572 if (token().type() != wxPluralFormsToken::T_ASSIGN)
573 return false;
574 if (!nextToken())
575 return false;
576 wxPluralFormsNode* plural = parsePlural();
577 if (plural == 0)
578 return false;
579 if (token().type() != wxPluralFormsToken::T_SEMICOLON)
580 return false;
581 if (!nextToken())
582 return false;
583 if (token().type() != wxPluralFormsToken::T_EOF)
584 return false;
585 rCalculator.init(nplurals, plural);
586 return true;
587}
588
589wxPluralFormsNode* wxPluralFormsParser::parsePlural()
590{
591 wxPluralFormsNode* p = expression();
592 if (p == NULL)
593 {
594 return NULL;
595 }
596 wxPluralFormsNodePtr n(p);
597 if (token().type() != wxPluralFormsToken::T_SEMICOLON)
598 {
599 return NULL;
600 }
601 return n.release();
602}
603
604const wxPluralFormsToken& wxPluralFormsParser::token() const
605{
606 return m_scanner.token();
607}
608
609bool wxPluralFormsParser::nextToken()
610{
611 if (!m_scanner.nextToken())
612 return false;
613 return true;
614}
615
616wxPluralFormsNode* wxPluralFormsParser::expression()
617{
618 wxPluralFormsNode* p = logicalOrExpression();
619 if (p == NULL)
620 return NULL;
621 wxPluralFormsNodePtr n(p);
622 if (token().type() == wxPluralFormsToken::T_QUESTION)
623 {
624 wxPluralFormsNodePtr qn(new wxPluralFormsNode(token()));
625 if (!nextToken())
626 {
627 return 0;
628 }
629 p = expression();
630 if (p == 0)
631 {
632 return 0;
633 }
634 qn->setNode(1, p);
635 if (token().type() != wxPluralFormsToken::T_COLON)
636 {
637 return 0;
638 }
639 if (!nextToken())
640 {
641 return 0;
642 }
643 p = expression();
644 if (p == 0)
645 {
646 return 0;
647 }
648 qn->setNode(2, p);
649 qn->setNode(0, n.release());
650 return qn.release();
651 }
652 return n.release();
653}
654
655wxPluralFormsNode*wxPluralFormsParser::logicalOrExpression()
656{
657 wxPluralFormsNode* p = logicalAndExpression();
658 if (p == NULL)
659 return NULL;
660 wxPluralFormsNodePtr ln(p);
661 if (token().type() == wxPluralFormsToken::T_LOGICAL_OR)
662 {
663 wxPluralFormsNodePtr un(new wxPluralFormsNode(token()));
664 if (!nextToken())
665 {
666 return 0;
667 }
668 p = logicalOrExpression();
669 if (p == 0)
670 {
671 return 0;
672 }
673 wxPluralFormsNodePtr rn(p); // right
674 if (rn->token().type() == wxPluralFormsToken::T_LOGICAL_OR)
675 {
676 // see logicalAndExpression comment
677 un->setNode(0, ln.release());
678 un->setNode(1, rn->releaseNode(0));
679 rn->setNode(0, un.release());
680 return rn.release();
681 }
a509f830
VZ
682
683
684 un->setNode(0, ln.release());
685 un->setNode(1, rn.release());
686 return un.release();
849a28d0
VS
687 }
688 return ln.release();
689}
690
691wxPluralFormsNode* wxPluralFormsParser::logicalAndExpression()
692{
693 wxPluralFormsNode* p = equalityExpression();
694 if (p == NULL)
695 return NULL;
696 wxPluralFormsNodePtr ln(p); // left
697 if (token().type() == wxPluralFormsToken::T_LOGICAL_AND)
698 {
699 wxPluralFormsNodePtr un(new wxPluralFormsNode(token())); // up
700 if (!nextToken())
701 {
702 return NULL;
703 }
704 p = logicalAndExpression();
705 if (p == 0)
706 {
707 return NULL;
708 }
709 wxPluralFormsNodePtr rn(p); // right
710 if (rn->token().type() == wxPluralFormsToken::T_LOGICAL_AND)
711 {
712// transform 1 && (2 && 3) -> (1 && 2) && 3
713// u r
714// l r -> u 3
715// 2 3 l 2
716 un->setNode(0, ln.release());
717 un->setNode(1, rn->releaseNode(0));
718 rn->setNode(0, un.release());
719 return rn.release();
720 }
a509f830
VZ
721
722 un->setNode(0, ln.release());
723 un->setNode(1, rn.release());
724 return un.release();
849a28d0
VS
725 }
726 return ln.release();
727}
728
729wxPluralFormsNode* wxPluralFormsParser::equalityExpression()
730{
731 wxPluralFormsNode* p = relationalExpression();
732 if (p == NULL)
733 return NULL;
734 wxPluralFormsNodePtr n(p);
735 if (token().type() == wxPluralFormsToken::T_EQUAL
736 || token().type() == wxPluralFormsToken::T_NOT_EQUAL)
737 {
738 wxPluralFormsNodePtr qn(new wxPluralFormsNode(token()));
739 if (!nextToken())
740 {
741 return NULL;
742 }
743 p = relationalExpression();
744 if (p == NULL)
745 {
746 return NULL;
747 }
748 qn->setNode(1, p);
749 qn->setNode(0, n.release());
750 return qn.release();
751 }
752 return n.release();
753}
754
755wxPluralFormsNode* wxPluralFormsParser::relationalExpression()
756{
757 wxPluralFormsNode* p = multiplicativeExpression();
758 if (p == NULL)
759 return NULL;
760 wxPluralFormsNodePtr n(p);
761 if (token().type() == wxPluralFormsToken::T_GREATER
762 || token().type() == wxPluralFormsToken::T_LESS
763 || token().type() == wxPluralFormsToken::T_GREATER_OR_EQUAL
764 || token().type() == wxPluralFormsToken::T_LESS_OR_EQUAL)
765 {
766 wxPluralFormsNodePtr qn(new wxPluralFormsNode(token()));
767 if (!nextToken())
768 {
769 return NULL;
770 }
771 p = multiplicativeExpression();
772 if (p == NULL)
773 {
774 return NULL;
775 }
776 qn->setNode(1, p);
777 qn->setNode(0, n.release());
778 return qn.release();
779 }
780 return n.release();
781}
782
783wxPluralFormsNode* wxPluralFormsParser::multiplicativeExpression()
784{
785 wxPluralFormsNode* p = pmExpression();
786 if (p == NULL)
787 return NULL;
788 wxPluralFormsNodePtr n(p);
789 if (token().type() == wxPluralFormsToken::T_REMINDER)
790 {
791 wxPluralFormsNodePtr qn(new wxPluralFormsNode(token()));
792 if (!nextToken())
793 {
794 return NULL;
795 }
796 p = pmExpression();
797 if (p == NULL)
798 {
799 return NULL;
800 }
801 qn->setNode(1, p);
802 qn->setNode(0, n.release());
803 return qn.release();
804 }
805 return n.release();
806}
807
808wxPluralFormsNode* wxPluralFormsParser::pmExpression()
809{
810 wxPluralFormsNodePtr n;
811 if (token().type() == wxPluralFormsToken::T_N
812 || token().type() == wxPluralFormsToken::T_NUMBER)
813 {
814 n.reset(new wxPluralFormsNode(token()));
815 if (!nextToken())
816 {
817 return NULL;
818 }
819 }
820 else if (token().type() == wxPluralFormsToken::T_LEFT_BRACKET) {
821 if (!nextToken())
822 {
823 return NULL;
824 }
825 wxPluralFormsNode* p = expression();
826 if (p == NULL)
827 {
828 return NULL;
829 }
830 n.reset(p);
831 if (token().type() != wxPluralFormsToken::T_RIGHT_BRACKET)
832 {
833 return NULL;
834 }
835 if (!nextToken())
836 {
837 return NULL;
838 }
839 }
840 else
841 {
842 return NULL;
843 }
844 return n.release();
845}
846
847wxPluralFormsCalculator* wxPluralFormsCalculator::make(const char* s)
848{
849 wxPluralFormsCalculatorPtr calculator(new wxPluralFormsCalculator);
850 if (s != NULL)
851 {
852 wxPluralFormsScanner scanner(s);
853 wxPluralFormsParser p(scanner);
854 if (!p.parse(*calculator))
855 {
856 return NULL;
857 }
858 }
859 return calculator.release();
860}
861
862
863
41524ffc 864
563d535e
VS
865// ----------------------------------------------------------------------------
866// wxMsgCatalogFile corresponds to one disk-file message catalog.
867//
868// This is a "low-level" class and is used only by wxMsgCatalog
869// ----------------------------------------------------------------------------
870
3f5c62f9 871WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxString, wxMessagesHash);
563d535e
VS
872
873class wxMsgCatalogFile
874{
875public:
876 // ctor & dtor
877 wxMsgCatalogFile();
878 ~wxMsgCatalogFile();
879
880 // load the catalog from disk (szDirPrefix corresponds to language)
849a28d0
VS
881 bool Load(const wxChar *szDirPrefix, const wxChar *szName,
882 wxPluralFormsCalculatorPtr& rPluralFormsCalculator);
563d535e
VS
883
884 // fills the hash with string-translation pairs
77c514d1
VZ
885 void FillHash(wxMessagesHash& hash,
886 const wxString& msgIdCharset,
d721baa9 887 bool convertEncoding) const;
563d535e 888
77c514d1
VZ
889 // return the charset of the strings in this catalog or empty string if
890 // none/unknown
891 wxString GetCharset() const { return m_charset; }
892
563d535e
VS
893private:
894 // this implementation is binary compatible with GNU gettext() version 0.10
895
896 // an entry in the string table
897 struct wxMsgTableEntry
898 {
899 size_t32 nLen; // length of the string
900 size_t32 ofsString; // pointer to the string
901 };
902
903 // header of a .mo file
904 struct wxMsgCatalogHeader
905 {
906 size_t32 magic, // offset +00: magic id
907 revision, // +04: revision
908 numStrings; // +08: number of strings in the file
909 size_t32 ofsOrigTable, // +0C: start of original string table
910 ofsTransTable; // +10: start of translated string table
911 size_t32 nHashSize, // +14: hash table size
912 ofsHashTable; // +18: offset of hash table start
913 };
914
915 // all data is stored here, NULL if no data loaded
916 size_t8 *m_pData;
917
869c7549
VZ
918 // amount of memory pointed to by m_pData.
919 size_t32 m_nSize;
920
563d535e
VS
921 // data description
922 size_t32 m_numStrings; // number of strings in this domain
923 wxMsgTableEntry *m_pOrigTable, // pointer to original strings
924 *m_pTransTable; // translated
925
77c514d1
VZ
926 wxString m_charset; // from the message catalog header
927
b7b97e77 928
869c7549
VZ
929 // swap the 2 halves of 32 bit integer if needed
930 size_t32 Swap(size_t32 ui) const
931 {
932 return m_bSwapped ? (ui << 24) | ((ui & 0xff00) << 8) |
933 ((ui >> 8) & 0xff00) | (ui >> 24)
934 : ui;
935 }
9e7ed2b0 936
869c7549
VZ
937 const char *StringAtOfs(wxMsgTableEntry *pTable, size_t32 n) const
938 {
939 const wxMsgTableEntry * const ent = pTable + n;
563d535e 940
869c7549
VZ
941 // this check could fail for a corrupt message catalog
942 size_t32 ofsString = Swap(ent->ofsString);
943 if ( ofsString + Swap(ent->nLen) > m_nSize)
849a28d0 944 {
869c7549 945 return NULL;
849a28d0 946 }
563d535e 947
869c7549 948 return (const char *)(m_pData + ofsString);
b7b97e77 949 }
869c7549
VZ
950
951 bool m_bSwapped; // wrong endianness?
22f3361e
VZ
952
953 DECLARE_NO_COPY_CLASS(wxMsgCatalogFile)
563d535e
VS
954};
955
956
c801d85f 957// ----------------------------------------------------------------------------
563d535e 958// wxMsgCatalog corresponds to one loaded message catalog.
c801d85f
KB
959//
960// This is a "low-level" class and is used only by wxLocale (that's why
961// it's designed to be stored in a linked list)
962// ----------------------------------------------------------------------------
963
964class wxMsgCatalog
965{
966public:
77c514d1
VZ
967 wxMsgCatalog() { m_conv = NULL; }
968 ~wxMsgCatalog();
969
563d535e 970 // load the catalog from disk (szDirPrefix corresponds to language)
d721baa9
VS
971 bool Load(const wxChar *szDirPrefix, const wxChar *szName,
972 const wxChar *msgIdCharset = NULL, bool bConvertEncoding = false);
c801d85f 973
563d535e
VS
974 // get name of the catalog
975 wxString GetName() const { return m_name; }
c801d85f 976
563d535e 977 // get the translated string: returns NULL if not found
849a28d0 978 const wxChar *GetString(const wxChar *sz, size_t n = size_t(-1)) const;
c801d85f 979
563d535e
VS
980 // public variable pointing to the next element in a linked list (or NULL)
981 wxMsgCatalog *m_pNext;
7af89395 982
c801d85f 983private:
563d535e
VS
984 wxMessagesHash m_messages; // all messages in the catalog
985 wxString m_name; // name of the domain
77c514d1
VZ
986
987 // the conversion corresponding to this catalog charset if we installed it
988 // as the global one
989 wxCSConv *m_conv;
990
849a28d0 991 wxPluralFormsCalculatorPtr m_pluralFormsCalculator;
c801d85f
KB
992};
993
fd323a5e
VZ
994// ----------------------------------------------------------------------------
995// global variables
996// ----------------------------------------------------------------------------
997
998// the list of the directories to search for message catalog files
f830b2b1 999static wxArrayString gs_searchPrefixes;
fd323a5e 1000
c801d85f
KB
1001// ============================================================================
1002// implementation
1003// ============================================================================
1004
1005// ----------------------------------------------------------------------------
563d535e 1006// wxMsgCatalogFile class
c801d85f
KB
1007// ----------------------------------------------------------------------------
1008
563d535e 1009wxMsgCatalogFile::wxMsgCatalogFile()
7af89395 1010{
869c7549
VZ
1011 m_pData = NULL;
1012 m_nSize = 0;
c801d85f
KB
1013}
1014
563d535e 1015wxMsgCatalogFile::~wxMsgCatalogFile()
7af89395 1016{
77c514d1 1017 delete [] m_pData;
c801d85f
KB
1018}
1019
f830b2b1
VZ
1020// return the directory to search for message catalogs under the given prefix
1021static
1022wxString GetMsgCatalogSubdir(const wxChar *prefix, const wxChar *lang)
fd323a5e
VZ
1023{
1024 wxString searchPath;
f830b2b1 1025 searchPath << prefix << wxFILE_SEP_PATH << lang;
fd323a5e 1026
f830b2b1 1027 // under Unix, the message catalogs are supposed to go into LC_MESSAGES
f0a6989d 1028 // subdirectory so look there too
f830b2b1 1029#ifdef __UNIX__
f0a6989d
VZ
1030 const wxString searchPathOrig(searchPath);
1031 searchPath << wxFILE_SEP_PATH << wxT("LC_MESSAGES")
1032 << wxPATH_SEP << searchPathOrig;
1033#endif // __UNIX__
fd323a5e
VZ
1034
1035 return searchPath;
1036}
1037
1038// construct the search path for the given language
e36e6f95 1039static wxString GetFullSearchPath(const wxChar *lang)
fd323a5e 1040{
fd323a5e 1041 // first take the entries explicitly added by the program
f830b2b1
VZ
1042 wxArrayString paths;
1043 paths.reserve(gs_searchPrefixes.size() + 1);
1044 size_t n,
1045 count = gs_searchPrefixes.size();
1046 for ( n = 0; n < count; n++ )
fd323a5e 1047 {
f830b2b1 1048 paths.Add(GetMsgCatalogSubdir(gs_searchPrefixes[n], lang));
fd323a5e
VZ
1049 }
1050
30984dea 1051
f830b2b1
VZ
1052#if wxUSE_STDPATHS
1053 // then look in the standard location
1054 const wxString stdp = wxStandardPaths::Get().
1055 GetLocalizedResourcesDir(lang, wxStandardPaths::ResourceCat_Messages);
1056
1057 if ( paths.Index(stdp) == wxNOT_FOUND )
1058 paths.Add(stdp);
1059#endif // wxUSE_STDPATHS
1060
1061 // last look in default locations
1062#ifdef __UNIX__
5f170f33
VZ
1063 // LC_PATH is a standard env var containing the search path for the .mo
1064 // files
f6bcfd97 1065 const wxChar *pszLcPath = wxGetenv(wxT("LC_PATH"));
f830b2b1
VZ
1066 if ( pszLcPath )
1067 {
1068 const wxString lcp = GetMsgCatalogSubdir(pszLcPath, lang);
1069 if ( paths.Index(lcp) == wxNOT_FOUND )
1070 paths.Add(lcp);
1071 }
5f170f33 1072
f830b2b1
VZ
1073 // also add the one from where wxWin was installed:
1074 wxString wxp = wxGetInstallPrefix();
1075 if ( !wxp.empty() )
1076 {
1077 wxp = GetMsgCatalogSubdir(wxp + _T("/share/locale"), lang);
1078 if ( paths.Index(wxp) == wxNOT_FOUND )
1079 paths.Add(wxp);
1080 }
c3ccca4a
VS
1081#endif // __UNIX__
1082
f830b2b1
VZ
1083
1084 // finally construct the full search path
1085 wxString searchPath;
1086 searchPath.reserve(500);
1087 count = paths.size();
1088 for ( n = 0; n < count; n++ )
1089 {
1090 searchPath += paths[n];
1091 if ( n != count - 1 )
1092 searchPath += wxPATH_SEP;
1093 }
45e97ca0 1094
fd323a5e
VZ
1095 return searchPath;
1096}
1097
c801d85f 1098// open disk file and read in it's contents
58ad1bab 1099bool wxMsgCatalogFile::Load(const wxChar *szDirPrefix, const wxChar *szName,
849a28d0 1100 wxPluralFormsCalculatorPtr& rPluralFormsCalculator)
c801d85f 1101{
ca6a9a14
VZ
1102 wxString searchPath;
1103
1104#if wxUSE_FONTMAP
1105 // first look for the catalog for this language and the current locale:
1106 // notice that we don't use the system name for the locale as this would
1107 // force us to install catalogs in different locations depending on the
1108 // system but always use the canonical name
1109 wxFontEncoding encSys = wxLocale::GetSystemEncoding();
1110 if ( encSys != wxFONTENCODING_SYSTEM )
1111 {
1112 wxString fullname(szDirPrefix);
1113 fullname << _T('.') << wxFontMapperBase::GetEncodingName(encSys);
1114 searchPath << GetFullSearchPath(fullname) << wxPATH_SEP;
1115 }
1116#endif // wxUSE_FONTMAP
1117
2ce0a6e2 1118
ca6a9a14 1119 searchPath += GetFullSearchPath(szDirPrefix);
223d09f6 1120 const wxChar *sublocale = wxStrchr(szDirPrefix, wxT('_'));
fd323a5e
VZ
1121 if ( sublocale )
1122 {
1123 // also add just base locale name: for things like "fr_BE" (belgium
1124 // french) we should use "fr" if no belgium specific message catalogs
1125 // exist
f830b2b1
VZ
1126 searchPath << wxPATH_SEP
1127 << GetFullSearchPath(wxString(szDirPrefix).
1128 Left((size_t)(sublocale - szDirPrefix)));
fd323a5e 1129 }
7af89395 1130
c801d85f
KB
1131 // don't give translation errors here because the wxstd catalog might
1132 // not yet be loaded (and it's normal)
1133 //
1134 // (we're using an object because we have several return paths)
ed58dbea 1135
c801d85f 1136 NoTransErr noTransErr;
5f170f33 1137 wxLogVerbose(_("looking for catalog '%s' in path '%s'."),
58ad1bab 1138 szName, searchPath.c_str());
ca6a9a14
VZ
1139 wxLogTrace(TRACE_I18N, _T("Looking for \"%s.mo\" in \"%s\""),
1140 szName, searchPath.c_str());
c801d85f 1141
58ad1bab 1142 wxFileName fn(szName);
de085fcc 1143 fn.SetExt(_T("mo"));
c801d85f 1144 wxString strFullName;
58ad1bab
VZ
1145 if ( !wxFindFileInPath(&strFullName, searchPath, fn.GetFullPath()) ) {
1146 wxLogVerbose(_("catalog file for domain '%s' not found."), szName);
ca6a9a14 1147 wxLogTrace(TRACE_I18N, _T("Catalog \"%s.mo\" not found"), szName);
7beb59f3 1148 return false;
c801d85f
KB
1149 }
1150
1151 // open file
58ad1bab 1152 wxLogVerbose(_("using catalog '%s' from '%s'."), szName, strFullName.c_str());
ca6a9a14 1153 wxLogTrace(TRACE_I18N, _T("Using catalog \"%s\"."), strFullName.c_str());
7af89395 1154
c801d85f
KB
1155 wxFile fileMsg(strFullName);
1156 if ( !fileMsg.IsOpened() )
7beb59f3 1157 return false;
c801d85f 1158
170b04ba 1159 // get the file size (assume it is less than 4Gb...)
17a1ebd1
VZ
1160 wxFileOffset lenFile = fileMsg.Length();
1161 if ( lenFile == wxInvalidOffset )
7beb59f3 1162 return false;
c801d85f 1163
17a1ebd1 1164 size_t nSize = wx_truncate_cast(size_t, lenFile);
4a10ea8b 1165 wxASSERT_MSG( nSize == lenFile + size_t(0), _T("message catalog bigger than 4GB?") );
17a1ebd1 1166
c801d85f 1167 // read the whole file in memory
c86f1403 1168 m_pData = new size_t8[nSize];
c88c6e94 1169 if ( fileMsg.Read(m_pData, nSize) != lenFile ) {
a3622daa 1170 wxDELETEA(m_pData);
7beb59f3 1171 return false;
c801d85f 1172 }
7af89395 1173
c801d85f 1174 // examine header
30984dea 1175 bool bValid = nSize + (size_t)0 > sizeof(wxMsgCatalogHeader);
7af89395 1176
fd3f686c 1177 wxMsgCatalogHeader *pHeader = (wxMsgCatalogHeader *)m_pData;
c801d85f 1178 if ( bValid ) {
c801d85f
KB
1179 // we'll have to swap all the integers if it's true
1180 m_bSwapped = pHeader->magic == MSGCATALOG_MAGIC_SW;
1181
1182 // check the magic number
1183 bValid = m_bSwapped || pHeader->magic == MSGCATALOG_MAGIC;
1184 }
7af89395 1185
c801d85f
KB
1186 if ( !bValid ) {
1187 // it's either too short or has incorrect magic number
1a5a8367 1188 wxLogWarning(_("'%s' is not a valid message catalog."), strFullName.c_str());
7af89395 1189
a3622daa 1190 wxDELETEA(m_pData);
7beb59f3 1191 return false;
c801d85f 1192 }
7af89395 1193
c801d85f
KB
1194 // initialize
1195 m_numStrings = Swap(pHeader->numStrings);
7af89395 1196 m_pOrigTable = (wxMsgTableEntry *)(m_pData +
1678ad78 1197 Swap(pHeader->ofsOrigTable));
7af89395 1198 m_pTransTable = (wxMsgTableEntry *)(m_pData +
1678ad78 1199 Swap(pHeader->ofsTransTable));
2e0ef2ae 1200 m_nSize = (size_t32)nSize;
b7b97e77 1201
849a28d0
VS
1202 // now parse catalog's header and try to extract catalog charset and
1203 // plural forms formula from it:
1204
1205 const char* headerData = StringAtOfs(m_pOrigTable, 0);
1206 if (headerData && headerData[0] == 0)
1207 {
1208 // Extract the charset:
1209 wxString header = wxString::FromAscii(StringAtOfs(m_pTransTable, 0));
1210 int begin = header.Find(wxT("Content-Type: text/plain; charset="));
1211 if (begin != wxNOT_FOUND)
1212 {
1213 begin += 34; //strlen("Content-Type: text/plain; charset=")
1214 size_t end = header.find('\n', begin);
1215 if (end != size_t(-1))
1216 {
1217 m_charset.assign(header, begin, end - begin);
1218 if (m_charset == wxT("CHARSET"))
1219 {
1220 // "CHARSET" is not valid charset, but lazy translator
1221 m_charset.Clear();
1222 }
1223 }
1224 }
1225 // else: incorrectly filled Content-Type header
b7b97e77 1226
849a28d0
VS
1227 // Extract plural forms:
1228 begin = header.Find(wxT("Plural-Forms:"));
1229 if (begin != wxNOT_FOUND)
1230 {
1231 begin += 13;
1232 size_t end = header.find('\n', begin);
1233 if (end != size_t(-1))
1234 {
1235 wxString pfs(header, begin, end - begin);
1236 wxPluralFormsCalculator* pCalculator = wxPluralFormsCalculator
1237 ::make(pfs.ToAscii());
1238 if (pCalculator != 0)
1239 {
1240 rPluralFormsCalculator.reset(pCalculator);
1241 }
1242 else
1243 {
ca6a9a14 1244 wxLogVerbose(_("Cannot parse Plural-Forms:'%s'"), pfs.c_str());
849a28d0
VS
1245 }
1246 }
1247 }
1248 if (rPluralFormsCalculator.get() == NULL)
1249 {
1250 rPluralFormsCalculator.reset(wxPluralFormsCalculator::make());
1251 }
1252 }
c801d85f 1253
c801d85f 1254 // everything is fine
849a28d0 1255 return true;
c801d85f
KB
1256}
1257
d721baa9
VS
1258void wxMsgCatalogFile::FillHash(wxMessagesHash& hash,
1259 const wxString& msgIdCharset,
1260 bool convertEncoding) const
c801d85f 1261{
7a4b1e66
VZ
1262#if wxUSE_UNICODE
1263 // this parameter doesn't make sense, we always must convert encoding in
1264 // Unicode build
1265 convertEncoding = true;
1266#elif wxUSE_FONTMAP
7cb06872
VZ
1267 if ( convertEncoding )
1268 {
77c514d1 1269 // determine if we need any conversion at all
7cb06872
VZ
1270 wxFontEncoding encCat = wxFontMapperBase::GetEncodingFromName(m_charset);
1271 if ( encCat == wxLocale::GetSystemEncoding() )
1272 {
1273 // no need to convert
1274 convertEncoding = false;
1275 }
1276 }
7a4b1e66 1277#endif // wxUSE_UNICODE/wxUSE_FONTMAP
7cb06872 1278
563d535e 1279#if wxUSE_WCHAR_T
35d10652
VZ
1280 // conversion to use to convert catalog strings to the GUI encoding
1281 wxMBConv *inputConv,
7a4b1e66
VZ
1282 *inputConvPtr = NULL; // same as inputConv but safely deleteable
1283 if ( convertEncoding && !m_charset.empty() )
35d10652 1284 {
7a4b1e66
VZ
1285 inputConvPtr =
1286 inputConv = new wxCSConv(m_charset);
35d10652 1287 }
7a4b1e66 1288 else // no need or not possible to convert the encoding
35d10652 1289 {
f15fa3a9 1290#if wxUSE_UNICODE
7a4b1e66
VZ
1291 // we must somehow convert the narrow strings in the message catalog to
1292 // wide strings, so use the default conversion if we have no charset
f15fa3a9
VZ
1293 inputConv = wxConvCurrent;
1294#else // !wxUSE_UNICODE
35d10652 1295 inputConv = NULL;
f15fa3a9 1296#endif // wxUSE_UNICODE/!wxUSE_UNICODE
35d10652 1297 }
d721baa9 1298
35d10652
VZ
1299 // conversion to apply to msgid strings before looking them up: we only
1300 // need it if the msgids are neither in 7 bit ASCII nor in the same
1301 // encoding as the catalog
1302 wxCSConv *sourceConv = msgIdCharset.empty() || (msgIdCharset == m_charset)
1303 ? NULL
1304 : new wxCSConv(msgIdCharset);
d721baa9 1305
849a28d0 1306#elif wxUSE_FONTMAP
d721baa9
VS
1307 wxASSERT_MSG( msgIdCharset == NULL,
1308 _T("non-ASCII msgid languages only supported if wxUSE_WCHAR_T=1") );
7beb59f3 1309
849a28d0 1310 wxEncodingConverter converter;
563d535e
VS
1311 if ( convertEncoding )
1312 {
baf736e1 1313 wxFontEncoding targetEnc = wxFONTENCODING_SYSTEM;
267e11c5 1314 wxFontEncoding enc = wxFontMapperBase::Get()->CharsetToEncoding(m_charset, false);
563d535e
VS
1315 if ( enc == wxFONTENCODING_SYSTEM )
1316 {
7beb59f3 1317 convertEncoding = false; // unknown encoding
563d535e
VS
1318 }
1319 else
1320 {
baf736e1 1321 targetEnc = wxLocale::GetSystemEncoding();
563d535e
VS
1322 if (targetEnc == wxFONTENCODING_SYSTEM)
1323 {
1324 wxFontEncodingArray a = wxEncodingConverter::GetPlatformEquivalents(enc);
1325 if (a[0] == enc)
1326 // no conversion needed, locale uses native encoding
7beb59f3 1327 convertEncoding = false;
563d535e
VS
1328 if (a.GetCount() == 0)
1329 // we don't know common equiv. under this platform
7beb59f3 1330 convertEncoding = false;
563d535e
VS
1331 targetEnc = a[0];
1332 }
1333 }
1334
1335 if ( convertEncoding )
1336 {
563d535e 1337 converter.Init(enc, targetEnc);
563d535e
VS
1338 }
1339 }
563d535e 1340#endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
0c93d67c 1341 (void)convertEncoding; // get rid of warnings about unused parameter
bc385ba9 1342
4a10ea8b 1343 for (size_t32 i = 0; i < m_numStrings; i++)
563d535e 1344 {
849a28d0 1345 const char *data = StringAtOfs(m_pOrigTable, i);
7a4b1e66
VZ
1346
1347 wxString msgid;
d721baa9 1348#if wxUSE_UNICODE
7a4b1e66 1349 msgid = wxString(data, *inputConv);
35d10652 1350#else // ASCII
f15fa3a9
VZ
1351 #if wxUSE_WCHAR_T
1352 if ( inputConv && sourceConv )
1353 msgid = wxString(inputConv->cMB2WC(data), *sourceConv);
1354 else
1355 #endif
7a4b1e66 1356 msgid = data;
d721baa9 1357#endif // wxUSE_UNICODE
563d535e 1358
849a28d0
VS
1359 data = StringAtOfs(m_pTransTable, i);
1360 size_t length = Swap(m_pTransTable[i].nLen);
1361 size_t offset = 0;
1362 size_t index = 0;
1363 while (offset < length)
1364 {
7a4b1e66
VZ
1365 const char * const str = data + offset;
1366
849a28d0 1367 wxString msgstr;
7a4b1e66
VZ
1368#if wxUSE_UNICODE
1369 msgstr = wxString(str, *inputConv);
1370#elif wxUSE_WCHAR_T
35d10652 1371 if ( inputConv )
7a4b1e66 1372 msgstr = wxString(inputConv->cMB2WC(str), *wxConvUI);
849a28d0 1373 else
7a4b1e66 1374 msgstr = str;
849a28d0
VS
1375#else // !wxUSE_WCHAR_T
1376 #if wxUSE_FONTMAP
1377 if ( convertEncoding )
7a4b1e66 1378 msgstr = wxString(converter.Convert(str));
849a28d0
VS
1379 else
1380 #endif
7a4b1e66 1381 msgstr = str;
849a28d0 1382#endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
9e7ed2b0 1383
849a28d0
VS
1384 if ( !msgstr.empty() )
1385 {
1386 hash[index == 0 ? msgid : msgid + wxChar(index)] = msgstr;
1387 }
7a4b1e66
VZ
1388
1389 // skip this string
1390 offset += strlen(str) + 1;
849a28d0
VS
1391 ++index;
1392 }
41780009 1393 }
9e7ed2b0 1394
849a28d0 1395#if wxUSE_WCHAR_T
d721baa9 1396 delete sourceConv;
7a4b1e66
VZ
1397 delete inputConvPtr;
1398#endif // wxUSE_WCHAR_T
563d535e 1399}
bc385ba9 1400
849a28d0 1401
563d535e
VS
1402// ----------------------------------------------------------------------------
1403// wxMsgCatalog class
1404// ----------------------------------------------------------------------------
bc385ba9 1405
77c514d1
VZ
1406wxMsgCatalog::~wxMsgCatalog()
1407{
1408 if ( m_conv )
1409 {
1410 if ( wxConvUI == m_conv )
1411 {
1412 // we only change wxConvUI if it points to wxConvLocal so we reset
1413 // it back to it too
1414 wxConvUI = &wxConvLocal;
1415 }
1416
1417 delete m_conv;
1418 }
1419}
1420
9e7ed2b0 1421bool wxMsgCatalog::Load(const wxChar *szDirPrefix, const wxChar *szName,
d721baa9 1422 const wxChar *msgIdCharset, bool bConvertEncoding)
563d535e
VS
1423{
1424 wxMsgCatalogFile file;
9e7ed2b0 1425
563d535e 1426 m_name = szName;
9e7ed2b0 1427
77c514d1
VZ
1428 if ( !file.Load(szDirPrefix, szName, m_pluralFormsCalculator) )
1429 return false;
1430
1431 file.FillHash(m_messages, msgIdCharset, bConvertEncoding);
1432
1433 // we should use a conversion compatible with the message catalog encoding
1434 // in the GUI if we don't convert the strings to the current conversion but
1435 // as the encoding is global, only change it once, otherwise we could get
1436 // into trouble if we use several message catalogs with different encodings
1437 //
1438 // this is, of course, a hack but it at least allows the program to use
1439 // message catalogs in any encodings without asking the user to change his
1440 // locale
1441 if ( !bConvertEncoding &&
1442 !file.GetCharset().empty() &&
1443 wxConvUI == &wxConvLocal )
563d535e 1444 {
77c514d1
VZ
1445 wxConvUI =
1446 m_conv = new wxCSConv(file.GetCharset());
563d535e 1447 }
821d0fef 1448
77c514d1 1449 return true;
afc94fa6
VS
1450}
1451
849a28d0 1452const wxChar *wxMsgCatalog::GetString(const wxChar *sz, size_t n) const
563d535e 1453{
849a28d0
VS
1454 int index = 0;
1455 if (n != size_t(-1))
1456 {
1457 index = m_pluralFormsCalculator->evaluate(n);
1458 }
1459 wxMessagesHash::const_iterator i;
1460 if (index != 0)
1461 {
1462 i = m_messages.find(wxString(sz) + wxChar(index)); // plural
1463 }
1464 else
1465 {
1466 i = m_messages.find(sz);
1467 }
1468
563d535e
VS
1469 if ( i != m_messages.end() )
1470 {
1471 return i->second.c_str();
1472 }
1473 else
1474 return NULL;
1475}
afc94fa6 1476
c801d85f
KB
1477// ----------------------------------------------------------------------------
1478// wxLocale
1479// ----------------------------------------------------------------------------
1480
d3f3e35f
VS
1481#include "wx/arrimpl.cpp"
1482WX_DECLARE_EXPORTED_OBJARRAY(wxLanguageInfo, wxLanguageInfoArray);
4115960d 1483WX_DEFINE_OBJARRAY(wxLanguageInfoArray)
d3f3e35f 1484
41780009
VS
1485wxLanguageInfoArray *wxLocale::ms_languagesDB = NULL;
1486
1487/*static*/ void wxLocale::CreateLanguagesDB()
1488{
1489 if (ms_languagesDB == NULL)
1490 {
1491 ms_languagesDB = new wxLanguageInfoArray;
1492 InitLanguagesDB();
1493 }
1494}
1495
1496/*static*/ void wxLocale::DestroyLanguagesDB()
1497{
1498 delete ms_languagesDB;
1499 ms_languagesDB = NULL;
1500}
1501
1502
ea8f6fc7 1503void wxLocale::DoCommonInit()
c801d85f 1504{
23fcecf7 1505 m_pszOldLocale = NULL;
eb48778d
VZ
1506
1507 m_pOldLocale = wxSetLocale(this);
1508
23fcecf7 1509 m_pMsgCat = NULL;
d3f3e35f 1510 m_language = wxLANGUAGE_UNKNOWN;
3202d00d 1511 m_initialized = false;
23fcecf7
VZ
1512}
1513
1514// NB: this function has (desired) side effect of changing current locale
e36e6f95
OK
1515bool wxLocale::Init(const wxChar *szName,
1516 const wxChar *szShort,
1517 const wxChar *szLocale,
afc94fa6
VS
1518 bool bLoadDefault,
1519 bool bConvertEncoding)
23fcecf7 1520{
3202d00d
VS
1521 wxASSERT_MSG( !m_initialized,
1522 _T("you can't call wxLocale::Init more than once") );
b7b97e77 1523
3202d00d 1524 m_initialized = true;
23fcecf7
VZ
1525 m_strLocale = szName;
1526 m_strShort = szShort;
afc94fa6 1527 m_bConvertEncoding = bConvertEncoding;
d3f3e35f 1528 m_language = wxLANGUAGE_UNKNOWN;
23fcecf7 1529
c801d85f
KB
1530 // change current locale (default: same as long name)
1531 if ( szLocale == NULL )
9dea50fc
VZ
1532 {
1533 // the argument to setlocale()
1534 szLocale = szShort;
52558258 1535
7beb59f3 1536 wxCHECK_MSG( szLocale, false, _T("no locale to set in wxLocale::Init()") );
9dea50fc 1537 }
10545ca4 1538
1c193821
JS
1539#ifdef __WXWINCE__
1540 // FIXME: I'm guessing here
1541 wxChar localeName[256];
1542 int ret = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SLANGUAGE, localeName,
1543 256);
1544 if (ret != 0)
1545 {
b7b97e77 1546 m_pszOldLocale = wxStrdup(localeName);
1c193821
JS
1547 }
1548 else
1549 m_pszOldLocale = NULL;
1550
1551 // TODO: how to find languageId
1552 // SetLocaleInfo(languageId, SORT_DEFAULT, localeName);
1553#else
c76b6474
VS
1554 wxMB2WXbuf oldLocale = wxSetlocale(LC_ALL, szLocale);
1555 if ( oldLocale )
1556 m_pszOldLocale = wxStrdup(oldLocale);
1557 else
1558 m_pszOldLocale = NULL;
1c193821
JS
1559#endif
1560
c801d85f 1561 if ( m_pszOldLocale == NULL )
1a5a8367 1562 wxLogError(_("locale '%s' can not be set."), szLocale);
c801d85f
KB
1563
1564 // the short name will be used to look for catalog files as well,
1565 // so we need something here
525d8583 1566 if ( m_strShort.empty() ) {
fd323a5e
VZ
1567 // FIXME I don't know how these 2 letter abbreviations are formed,
1568 // this wild guess is surely wrong
c7c06291 1569 if ( szLocale && szLocale[0] )
70426fba
VZ
1570 {
1571 m_strShort += (wxChar)wxTolower(szLocale[0]);
1572 if ( szLocale[1] )
1573 m_strShort += (wxChar)wxTolower(szLocale[1]);
1574 }
c801d85f 1575 }
7af89395 1576
77ffb593 1577 // load the default catalog with wxWidgets standard messages
c801d85f 1578 m_pMsgCat = NULL;
7beb59f3 1579 bool bOk = true;
c801d85f 1580 if ( bLoadDefault )
4d931bcc 1581 {
223d09f6 1582 bOk = AddCatalog(wxT("wxstd"));
23fcecf7 1583
4d931bcc
MW
1584 // there may be a catalog with toolkit specific overrides, it is not
1585 // an error if this does not exist
8bb6b2c0 1586 if ( bOk )
4d931bcc 1587 {
8bb6b2c0
VZ
1588 wxString port(wxPlatformInfo().GetPortIdName());
1589 if ( !port.empty() )
1590 {
1591 AddCatalog(port.BeforeFirst(wxT('/')).MakeLower());
1592 }
4d931bcc
MW
1593 }
1594 }
1595
23fcecf7 1596 return bOk;
c801d85f
KB
1597}
1598
41524ffc 1599
1cc549e5 1600#if defined(__UNIX__) && wxUSE_UNICODE && !defined(__WXMAC__)
41524ffc
VS
1601static wxWCharBuffer wxSetlocaleTryUTF(int c, const wxChar *lc)
1602{
1603 wxMB2WXbuf l = wxSetlocale(c, lc);
2d34a303 1604 if ( !l && lc && lc[0] != 0 )
41524ffc 1605 {
7beb59f3 1606 wxString buf(lc);
2d34a303 1607 wxString buf2;
7beb59f3
WS
1608 buf2 = buf + wxT(".UTF-8");
1609 l = wxSetlocale(c, buf2.c_str());
2d34a303
VS
1610 if ( !l )
1611 {
1612 buf2 = buf + wxT(".utf-8");
7beb59f3 1613 l = wxSetlocale(c, buf2.c_str());
2d34a303
VS
1614 }
1615 if ( !l )
1616 {
1617 buf2 = buf + wxT(".UTF8");
7beb59f3 1618 l = wxSetlocale(c, buf2.c_str());
2d34a303
VS
1619 }
1620 if ( !l )
1621 {
1622 buf2 = buf + wxT(".utf8");
7beb59f3 1623 l = wxSetlocale(c, buf2.c_str());
2d34a303 1624 }
41524ffc
VS
1625 }
1626 return l;
1627}
1628#else
1629#define wxSetlocaleTryUTF(c, lc) wxSetlocale(c, lc)
1630#endif
1631
d3f3e35f
VS
1632bool wxLocale::Init(int language, int flags)
1633{
d3f3e35f 1634 int lang = language;
ec37df57
VZ
1635 if (lang == wxLANGUAGE_DEFAULT)
1636 {
1637 // auto detect the language
1638 lang = GetSystemLanguage();
1639 }
1640
1641 // We failed to detect system language, so we will use English:
1642 if (lang == wxLANGUAGE_UNKNOWN)
1643 {
7beb59f3 1644 return false;
ec37df57
VZ
1645 }
1646
14f8fa9d 1647 const wxLanguageInfo *info = GetLanguageInfo(lang);
d3f3e35f 1648
d3f3e35f
VS
1649 // Unknown language:
1650 if (info == NULL)
1651 {
1652 wxLogError(wxT("Unknown language %i."), lang);
7beb59f3 1653 return false;
d3f3e35f
VS
1654 }
1655
1656 wxString name = info->Description;
1657 wxString canonical = info->CanonicalName;
1658 wxString locale;
ec37df57 1659
d3f3e35f 1660 // Set the locale:
55034339
WS
1661#if defined(__OS2__)
1662 wxMB2WXbuf retloc = wxSetlocale(LC_ALL , wxEmptyString);
1663#elif defined(__UNIX__) && !defined(__WXMAC__)
d368dbea 1664 if (language != wxLANGUAGE_DEFAULT)
ec37df57 1665 locale = info->CanonicalName;
d3f3e35f 1666
41524ffc 1667 wxMB2WXbuf retloc = wxSetlocaleTryUTF(LC_ALL, locale);
d3f3e35f 1668
d368dbea 1669 const wxString langOnly = locale.Left(2);
2b5f62a0 1670 if ( !retloc )
d3f3e35f
VS
1671 {
1672 // Some C libraries don't like xx_YY form and require xx only
d368dbea 1673 retloc = wxSetlocaleTryUTF(LC_ALL, langOnly);
d3f3e35f 1674 }
d368dbea
VZ
1675
1676#if wxUSE_FONTMAP
1677 // some systems (e.g. FreeBSD and HP-UX) don't have xx_YY aliases but
1678 // require the full xx_YY.encoding form, so try using UTF-8 because this is
1679 // the only thing we can do generically
1680 //
1681 // TODO: add encodings applicable to each language to the lang DB and try
1682 // them all in turn here
2b5f62a0 1683 if ( !retloc )
d3f3e35f 1684 {
d368dbea
VZ
1685 const wxChar **names =
1686 wxFontMapperBase::GetAllEncodingNames(wxFONTENCODING_UTF8);
1687 while ( *names )
1688 {
1689 retloc = wxSetlocale(LC_ALL, locale + _T('.') + *names++);
1690 if ( retloc )
1691 break;
1692 }
d3f3e35f 1693 }
d368dbea
VZ
1694#endif // wxUSE_FONTMAP
1695
2b5f62a0 1696 if ( !retloc )
d3f3e35f 1697 {
d368dbea
VZ
1698 // Some C libraries (namely glibc) still use old ISO 639,
1699 // so will translate the abbrev for them
1700 wxString localeAlt;
1701 if ( langOnly == wxT("he") )
1702 localeAlt = wxT("iw") + locale.Mid(3);
1703 else if ( langOnly == wxT("id") )
1704 localeAlt = wxT("in") + locale.Mid(3);
1705 else if ( langOnly == wxT("yi") )
1706 localeAlt = wxT("ji") + locale.Mid(3);
1707 else if ( langOnly == wxT("nb") )
1708 localeAlt = wxT("no_NO");
1709 else if ( langOnly == wxT("nn") )
1710 localeAlt = wxT("no_NY");
1711
1712 if ( !localeAlt.empty() )
1713 {
1714 retloc = wxSetlocaleTryUTF(LC_ALL, localeAlt);
1715 if ( !retloc )
1716 retloc = wxSetlocaleTryUTF(LC_ALL, locale.Left(2));
1717 }
d3f3e35f 1718 }
d368dbea 1719
2b5f62a0 1720 if ( !retloc )
d3f3e35f
VS
1721 {
1722 wxLogError(wxT("Cannot set locale to '%s'."), locale.c_str());
7beb59f3 1723 return false;
d3f3e35f 1724 }
d368dbea
VZ
1725
1726#ifdef __AIX__
1727 // at least in AIX 5.2 libc is buggy and the string returned from setlocale(LC_ALL)
1728 // can't be passed back to it because it returns 6 strings (one for each locale
1729 // category), i.e. for C locale we get back "C C C C C C"
1730 //
1731 // this contradicts IBM own docs but this is not of much help, so just work around
1732 // it in the crudest possible manner
1733 wxChar *p = wxStrchr((wxChar *)retloc, _T(' '));
1734 if ( p )
1735 *p = _T('\0');
1736#endif // __AIX__
1737
d3f3e35f 1738#elif defined(__WIN32__)
65dc921d
VS
1739
1740 #if wxUSE_UNICODE && (defined(__VISUALC__) || defined(__MINGW32__))
1741 // NB: setlocale() from msvcrt.dll (used by VC++ and Mingw)
1742 // can't set locale to language that can only be written using
1743 // Unicode. Therefore wxSetlocale call failed, but we don't want
1744 // to report it as an error -- so that at least message catalogs
1745 // can be used. Watch for code marked with
1746 // #ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS bellow.
1747 #define SETLOCALE_FAILS_ON_UNICODE_LANGS
1748 #endif
b7b97e77
VZ
1749
1750#if !wxUSE_UNICODE
1751 const
1752#endif
2b5f62a0 1753 wxMB2WXbuf retloc = wxT("C");
d3f3e35f
VS
1754 if (language != wxLANGUAGE_DEFAULT)
1755 {
63986ba6 1756 if (info->WinLang == 0)
d3f3e35f 1757 {
63986ba6 1758 wxLogWarning(wxT("Locale '%s' not supported by OS."), name.c_str());
2b5f62a0 1759 // retloc already set to "C"
63986ba6
VS
1760 }
1761 else
ec37df57 1762 {
b7b97e77 1763 int codepage
999836aa
VZ
1764 #ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS
1765 = -1
1766 #endif
1767 ;
ec37df57 1768 wxUint32 lcid = MAKELCID(MAKELANGID(info->WinLang, info->WinSublang),
63986ba6 1769 SORT_DEFAULT);
1c193821
JS
1770 // FIXME
1771#ifndef __WXWINCE__
65dc921d 1772 SetThreadLocale(lcid);
1c193821 1773#endif
65dc921d
VS
1774 // NB: we must translate LCID to CRT's setlocale string ourselves,
1775 // because SetThreadLocale does not modify change the
1776 // interpretation of setlocale(LC_ALL, "") call:
1777 wxChar buffer[256];
1778 buffer[0] = wxT('\0');
1779 GetLocaleInfo(lcid, LOCALE_SENGLANGUAGE, buffer, 256);
1780 locale << buffer;
1781 if (GetLocaleInfo(lcid, LOCALE_SENGCOUNTRY, buffer, 256) > 0)
1782 locale << wxT("_") << buffer;
1783 if (GetLocaleInfo(lcid, LOCALE_IDEFAULTANSICODEPAGE, buffer, 256) > 0)
1784 {
1785 codepage = wxAtoi(buffer);
1786 if (codepage != 0)
1787 locale << wxT(".") << buffer;
1788 }
525d8583 1789 if (locale.empty())
2b5f62a0 1790 {
65dc921d
VS
1791 wxLogLastError(wxT("SetThreadLocale"));
1792 wxLogError(wxT("Cannot set locale to language %s."), name.c_str());
7beb59f3 1793 return false;
2b5f62a0 1794 }
63986ba6 1795 else
c611452f 1796 {
1c193821
JS
1797 // FIXME
1798#ifndef __WXWINCE__
65dc921d 1799 retloc = wxSetlocale(LC_ALL, locale);
1c193821 1800#endif
65dc921d
VS
1801#ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS
1802 if (codepage == 0 && (const wxChar*)retloc == NULL)
2b5f62a0 1803 {
65dc921d 1804 retloc = wxT("C");
2b5f62a0 1805 }
65dc921d 1806#endif
c611452f 1807 }
d3f3e35f
VS
1808 }
1809 }
c611452f 1810 else
2b5f62a0 1811 {
1c193821
JS
1812 // FIXME
1813#ifndef __WXWINCE__
c611452f 1814 retloc = wxSetlocale(LC_ALL, wxEmptyString);
1c193821
JS
1815#else
1816 retloc = NULL;
1817#endif
65dc921d
VS
1818#ifdef SETLOCALE_FAILS_ON_UNICODE_LANGS
1819 if ((const wxChar*)retloc == NULL)
1820 {
1821 wxChar buffer[16];
1822 if (GetLocaleInfo(LOCALE_USER_DEFAULT,
1823 LOCALE_IDEFAULTANSICODEPAGE, buffer, 16) > 0 &&
1824 wxStrcmp(buffer, wxT("0")) == 0)
1825 {
1826 retloc = wxT("C");
1827 }
1828 }
1829#endif
2b5f62a0 1830 }
c611452f 1831
2b5f62a0 1832 if ( !retloc )
d3f3e35f
VS
1833 {
1834 wxLogError(wxT("Cannot set locale to language %s."), name.c_str());
7beb59f3 1835 return false;
d3f3e35f 1836 }
85fb2206 1837#elif defined(__WXMAC__)
b51daa4f 1838 if (lang == wxLANGUAGE_DEFAULT)
85fb2206
SC
1839 locale = wxEmptyString;
1840 else
1841 locale = info->CanonicalName;
1842
1843 wxMB2WXbuf retloc = wxSetlocale(LC_ALL, locale);
1844
1845 if ( !retloc )
1846 {
1847 // Some C libraries don't like xx_YY form and require xx only
1848 retloc = wxSetlocale(LC_ALL, locale.Mid(0,2));
1849 }
1850 if ( !retloc )
1851 {
1852 wxLogError(wxT("Cannot set locale to '%s'."), locale.c_str());
1853 return false;
1854 }
d3f3e35f 1855#else
ead190e4 1856 wxUnusedVar(flags);
7beb59f3 1857 return false;
e879e020 1858 #define WX_NO_LOCALE_SUPPORT
d3f3e35f 1859#endif
ec37df57 1860
e879e020 1861#ifndef WX_NO_LOCALE_SUPPORT
10545ca4 1862 wxChar *szLocale = retloc ? wxStrdup(retloc) : NULL;
b7e1957a 1863 bool ret = Init(name, canonical, szLocale,
b78a78f7
VS
1864 (flags & wxLOCALE_LOAD_DEFAULT) != 0,
1865 (flags & wxLOCALE_CONV_ENCODING) != 0);
10545ca4
VZ
1866 free(szLocale);
1867
549a7c37 1868 if (IsOk()) // setlocale() succeeded
10545ca4
VZ
1869 m_language = lang;
1870
b78a78f7 1871 return ret;
b7e1957a 1872#endif // !WX_NO_LOCALE_SUPPORT
d3f3e35f
VS
1873}
1874
1875
1876
fd323a5e
VZ
1877void wxLocale::AddCatalogLookupPathPrefix(const wxString& prefix)
1878{
f830b2b1 1879 if ( gs_searchPrefixes.Index(prefix) == wxNOT_FOUND )
fd323a5e 1880 {
f830b2b1 1881 gs_searchPrefixes.Add(prefix);
fd323a5e
VZ
1882 }
1883 //else: already have it
1884}
1885
41780009 1886/*static*/ int wxLocale::GetSystemLanguage()
d3f3e35f 1887{
41780009 1888 CreateLanguagesDB();
ec37df57
VZ
1889
1890 // init i to avoid compiler warning
1891 size_t i = 0,
41780009 1892 count = ms_languagesDB->GetCount();
d3f3e35f 1893
432e8391 1894#if defined(__UNIX__) && !defined(__WXMAC__)
ec37df57
VZ
1895 // first get the string identifying the language from the environment
1896 wxString langFull;
1897 if (!wxGetEnv(wxT("LC_ALL"), &langFull) &&
1898 !wxGetEnv(wxT("LC_MESSAGES"), &langFull) &&
1899 !wxGetEnv(wxT("LANG"), &langFull))
1900 {
41780009
VS
1901 // no language specified, threat it as English
1902 return wxLANGUAGE_ENGLISH;
ec37df57 1903 }
d3f3e35f 1904
efd1393b 1905 if ( langFull == _T("C") || langFull == _T("POSIX") )
d3f3e35f 1906 {
ec37df57 1907 // default C locale
41780009 1908 return wxLANGUAGE_ENGLISH;
d3f3e35f
VS
1909 }
1910
ec37df57
VZ
1911 // the language string has the following form
1912 //
efd1393b 1913 // lang[_LANG][.encoding][@modifier]
ec37df57 1914 //
efd1393b
VZ
1915 // (see environ(5) in the Open Unix specification)
1916 //
1917 // where lang is the primary language, LANG is a sublang/territory,
1918 // encoding is the charset to use and modifier "allows the user to select
1919 // a specific instance of localization data within a single category"
ec37df57
VZ
1920 //
1921 // for example, the following strings are valid:
1922 // fr
1923 // fr_FR
1924 // de_DE.iso88591
efd1393b
VZ
1925 // de_DE@euro
1926 // de_DE.iso88591@euro
ec37df57
VZ
1927
1928 // for now we don't use the encoding, although we probably should (doing
1929 // translations of the msg catalogs on the fly as required) (TODO)
efd1393b
VZ
1930 //
1931 // we don't use the modifiers neither but we probably should translate
1932 // "euro" into iso885915
1933 size_t posEndLang = langFull.find_first_of(_T("@."));
1934 if ( posEndLang != wxString::npos )
1935 {
1936 langFull.Truncate(posEndLang);
1937 }
ec37df57
VZ
1938
1939 // in addition to the format above, we also can have full language names
1940 // in LANG env var - for example, SuSE is known to use LANG="german" - so
1941 // check for this
1942
1943 // do we have just the language (or sublang too)?
df69528b 1944 bool justLang = langFull.length() == LEN_LANG;
ec37df57 1945 if ( justLang ||
df69528b 1946 (langFull.length() == LEN_FULL && langFull[LEN_LANG] == wxT('_')) )
d3f3e35f 1947 {
ec37df57 1948 // 0. Make sure the lang is according to latest ISO 639
3103e8a9 1949 // (this is necessary because glibc uses iw and in instead
ec37df57
VZ
1950 // of he and id respectively).
1951
1952 // the language itself (second part is the dialect/sublang)
1953 wxString langOrig = ExtractLang(langFull);
1954
1955 wxString lang;
1956 if ( langOrig == wxT("iw"))
1957 lang = _T("he");
cf5e94bc 1958 else if (langOrig == wxT("in"))
ec37df57 1959 lang = wxT("id");
cf5e94bc 1960 else if (langOrig == wxT("ji"))
ec37df57 1961 lang = wxT("yi");
cf5e94bc
VS
1962 else if (langOrig == wxT("no_NO"))
1963 lang = wxT("nb_NO");
1964 else if (langOrig == wxT("no_NY"))
1965 lang = wxT("nn_NO");
1966 else if (langOrig == wxT("no"))
1967 lang = wxT("nb_NO");
ec37df57
VZ
1968 else
1969 lang = langOrig;
1970
1971 // did we change it?
1972 if ( lang != langOrig )
d3f3e35f 1973 {
ec37df57
VZ
1974 langFull = lang + ExtractNotLang(langFull);
1975 }
1976
1977 // 1. Try to find the language either as is:
1978 for ( i = 0; i < count; i++ )
1979 {
41780009 1980 if ( ms_languagesDB->Item(i).CanonicalName == langFull )
d3f3e35f 1981 {
d3f3e35f
VS
1982 break;
1983 }
1984 }
d3f3e35f 1985
ec37df57
VZ
1986 // 2. If langFull is of the form xx_YY, try to find xx:
1987 if ( i == count && !justLang )
d3f3e35f 1988 {
ec37df57 1989 for ( i = 0; i < count; i++ )
d3f3e35f 1990 {
41780009 1991 if ( ms_languagesDB->Item(i).CanonicalName == lang )
ec37df57
VZ
1992 {
1993 break;
1994 }
d3f3e35f
VS
1995 }
1996 }
d3f3e35f 1997
ec37df57
VZ
1998 // 3. If langFull is of the form xx, try to find any xx_YY record:
1999 if ( i == count && justLang )
d3f3e35f 2000 {
ec37df57 2001 for ( i = 0; i < count; i++ )
d3f3e35f 2002 {
41780009 2003 if ( ExtractLang(ms_languagesDB->Item(i).CanonicalName)
ec37df57
VZ
2004 == langFull )
2005 {
2006 break;
2007 }
d3f3e35f
VS
2008 }
2009 }
2010 }
ec37df57 2011 else // not standard format
d3f3e35f 2012 {
ec37df57
VZ
2013 // try to find the name in verbose description
2014 for ( i = 0; i < count; i++ )
d3f3e35f 2015 {
41780009 2016 if (ms_languagesDB->Item(i).Description.CmpNoCase(langFull) == 0)
d3f3e35f 2017 {
d3f3e35f
VS
2018 break;
2019 }
2020 }
2021 }
0e32fdb8 2022#elif defined(__WXMAC__)
44c44c82 2023 const wxChar * lc = NULL ;
0e32fdb8
SC
2024 long lang = GetScriptVariable( smSystemScript, smScriptLang) ;
2025 switch( GetScriptManagerVariable( smRegionCode ) ) {
2026 case verUS :
44c44c82 2027 lc = wxT("en_US") ;
0e32fdb8
SC
2028 break ;
2029 case verFrance :
44c44c82 2030 lc = wxT("fr_FR") ;
0e32fdb8
SC
2031 break ;
2032 case verBritain :
44c44c82 2033 lc = wxT("en_GB") ;
0e32fdb8
SC
2034 break ;
2035 case verGermany :
44c44c82 2036 lc = wxT("de_DE") ;
0e32fdb8
SC
2037 break ;
2038 case verItaly :
44c44c82 2039 lc = wxT("it_IT") ;
0e32fdb8
SC
2040 break ;
2041 case verNetherlands :
44c44c82 2042 lc = wxT("nl_NL") ;
0e32fdb8
SC
2043 break ;
2044 case verFlemish :
44c44c82 2045 lc = wxT("nl_BE") ;
0e32fdb8
SC
2046 break ;
2047 case verSweden :
44c44c82 2048 lc = wxT("sv_SE" );
0e32fdb8
SC
2049 break ;
2050 case verSpain :
44c44c82 2051 lc = wxT("es_ES" );
0e32fdb8
SC
2052 break ;
2053 case verDenmark :
44c44c82 2054 lc = wxT("da_DK") ;
0e32fdb8
SC
2055 break ;
2056 case verPortugal :
44c44c82 2057 lc = wxT("pt_PT") ;
0e32fdb8
SC
2058 break ;
2059 case verFrCanada:
44c44c82 2060 lc = wxT("fr_CA") ;
0e32fdb8
SC
2061 break ;
2062 case verNorway:
cf5e94bc 2063 lc = wxT("nb_NO") ;
0e32fdb8
SC
2064 break ;
2065 case verIsrael:
44c44c82 2066 lc = wxT("iw_IL") ;
0e32fdb8
SC
2067 break ;
2068 case verJapan:
44c44c82 2069 lc = wxT("ja_JP") ;
0e32fdb8
SC
2070 break ;
2071 case verAustralia:
44c44c82 2072 lc = wxT("en_AU") ;
0e32fdb8
SC
2073 break ;
2074 case verArabic:
44c44c82 2075 lc = wxT("ar") ;
0e32fdb8
SC
2076 break ;
2077 case verFinland:
44c44c82 2078 lc = wxT("fi_FI") ;
0e32fdb8
SC
2079 break ;
2080 case verFrSwiss:
44c44c82 2081 lc = wxT("fr_CH") ;
0e32fdb8
SC
2082 break ;
2083 case verGrSwiss:
44c44c82 2084 lc = wxT("de_CH") ;
0e32fdb8
SC
2085 break ;
2086 case verGreece:
44c44c82 2087 lc = wxT("el_GR") ;
0e32fdb8
SC
2088 break ;
2089 case verIceland:
44c44c82 2090 lc = wxT("is_IS") ;
0e32fdb8
SC
2091 break ;
2092 case verMalta:
44c44c82 2093 lc = wxT("mt_MT") ;
0e32fdb8
SC
2094 break ;
2095 case verCyprus:
2096 // _CY is not part of wx, so we have to translate according to the system language
2097 if ( lang == langGreek ) {
44c44c82 2098 lc = wxT("el_GR") ;
0e32fdb8
SC
2099 }
2100 else if ( lang == langTurkish ) {
44c44c82 2101 lc = wxT("tr_TR") ;
0e32fdb8
SC
2102 }
2103 break ;
2104 case verTurkey:
44c44c82 2105 lc = wxT("tr_TR") ;
0e32fdb8
SC
2106 break ;
2107 case verYugoCroatian:
44c44c82 2108 lc = wxT("hr_HR") ;
0e32fdb8
SC
2109 break ;
2110 case verIndiaHindi:
44c44c82 2111 lc = wxT("hi_IN") ;
0e32fdb8
SC
2112 break ;
2113 case verPakistanUrdu:
44c44c82 2114 lc = wxT("ur_PK") ;
0e32fdb8
SC
2115 break ;
2116 case verTurkishModified:
44c44c82 2117 lc = wxT("tr_TR") ;
0e32fdb8
SC
2118 break ;
2119 case verItalianSwiss:
44c44c82 2120 lc = wxT("it_CH") ;
0e32fdb8
SC
2121 break ;
2122 case verInternational:
44c44c82 2123 lc = wxT("en") ;
0e32fdb8
SC
2124 break ;
2125 case verRomania:
44c44c82 2126 lc = wxT("ro_RO") ;
0e32fdb8
SC
2127 break ;
2128 case verGreecePoly:
44c44c82 2129 lc = wxT("el_GR") ;
0e32fdb8
SC
2130 break ;
2131 case verLithuania:
44c44c82 2132 lc = wxT("lt_LT") ;
0e32fdb8
SC
2133 break ;
2134 case verPoland:
44c44c82 2135 lc = wxT("pl_PL") ;
0e32fdb8
SC
2136 break ;
2137 case verMagyar :
2138 case verHungary:
44c44c82 2139 lc = wxT("hu_HU") ;
0e32fdb8
SC
2140 break ;
2141 case verEstonia:
44c44c82 2142 lc = wxT("et_EE") ;
0e32fdb8
SC
2143 break ;
2144 case verLatvia:
44c44c82 2145 lc = wxT("lv_LV") ;
0e32fdb8
SC
2146 break ;
2147 case verSami:
2148 // not known
2149 break ;
2150 case verFaroeIsl:
44c44c82 2151 lc = wxT("fo_FO") ;
0e32fdb8
SC
2152 break ;
2153 case verIran:
44c44c82 2154 lc = wxT("fa_IR") ;
0e32fdb8
SC
2155 break ;
2156 case verRussia:
44c44c82 2157 lc = wxT("ru_RU") ;
0e32fdb8
SC
2158 break ;
2159 case verIreland:
44c44c82 2160 lc = wxT("ga_IE") ;
0e32fdb8
SC
2161 break ;
2162 case verKorea:
44c44c82 2163 lc = wxT("ko_KR") ;
0e32fdb8
SC
2164 break ;
2165 case verChina:
44c44c82 2166 lc = wxT("zh_CN") ;
0e32fdb8
SC
2167 break ;
2168 case verTaiwan:
44c44c82 2169 lc = wxT("zh_TW") ;
0e32fdb8
SC
2170 break ;
2171 case verThailand:
44c44c82 2172 lc = wxT("th_TH") ;
0e32fdb8
SC
2173 break ;
2174 case verCzech:
44c44c82 2175 lc = wxT("cs_CZ") ;
0e32fdb8
SC
2176 break ;
2177 case verSlovak:
44c44c82 2178 lc = wxT("sk_SK") ;
0e32fdb8
SC
2179 break ;
2180 case verBengali:
44c44c82 2181 lc = wxT("bn") ;
0e32fdb8
SC
2182 break ;
2183 case verByeloRussian:
44c44c82 2184 lc = wxT("be_BY") ;
0e32fdb8
SC
2185 break ;
2186 case verUkraine:
44c44c82 2187 lc = wxT("uk_UA") ;
0e32fdb8
SC
2188 break ;
2189 case verGreeceAlt:
44c44c82 2190 lc = wxT("el_GR") ;
0e32fdb8
SC
2191 break ;
2192 case verSerbian:
44c44c82 2193 lc = wxT("sr_YU") ;
0e32fdb8
SC
2194 break ;
2195 case verSlovenian:
44c44c82 2196 lc = wxT("sl_SI") ;
0e32fdb8
SC
2197 break ;
2198 case verMacedonian:
44c44c82 2199 lc = wxT("mk_MK") ;
0e32fdb8
SC
2200 break ;
2201 case verCroatia:
44c44c82 2202 lc = wxT("hr_HR") ;
0e32fdb8
SC
2203 break ;
2204 case verBrazil:
44c44c82 2205 lc = wxT("pt_BR ") ;
0e32fdb8
SC
2206 break ;
2207 case verBulgaria:
44c44c82 2208 lc = wxT("bg_BG") ;
0e32fdb8
SC
2209 break ;
2210 case verCatalonia:
44c44c82 2211 lc = wxT("ca_ES") ;
0e32fdb8
SC
2212 break ;
2213 case verScottishGaelic:
44c44c82 2214 lc = wxT("gd") ;
0e32fdb8
SC
2215 break ;
2216 case verManxGaelic:
44c44c82 2217 lc = wxT("gv") ;
0e32fdb8
SC
2218 break ;
2219 case verBreton:
44c44c82 2220 lc = wxT("br") ;
0e32fdb8
SC
2221 break ;
2222 case verNunavut:
44c44c82 2223 lc = wxT("iu_CA") ;
0e32fdb8
SC
2224 break ;
2225 case verWelsh:
44c44c82 2226 lc = wxT("cy") ;
0e32fdb8
SC
2227 break ;
2228 case verIrishGaelicScript:
44c44c82 2229 lc = wxT("ga_IE") ;
0e32fdb8
SC
2230 break ;
2231 case verEngCanada:
44c44c82 2232 lc = wxT("en_CA") ;
0e32fdb8
SC
2233 break ;
2234 case verBhutan:
44c44c82 2235 lc = wxT("dz_BT") ;
0e32fdb8
SC
2236 break ;
2237 case verArmenian:
44c44c82 2238 lc = wxT("hy_AM") ;
0e32fdb8
SC
2239 break ;
2240 case verGeorgian:
44c44c82 2241 lc = wxT("ka_GE") ;
0e32fdb8
SC
2242 break ;
2243 case verSpLatinAmerica:
44c44c82 2244 lc = wxT("es_AR") ;
0e32fdb8
SC
2245 break ;
2246 case verTonga:
44c44c82 2247 lc = wxT("to_TO" );
0e32fdb8
SC
2248 break ;
2249 case verFrenchUniversal:
44c44c82 2250 lc = wxT("fr_FR") ;
0e32fdb8
SC
2251 break ;
2252 case verAustria:
44c44c82 2253 lc = wxT("de_AT") ;
0e32fdb8
SC
2254 break ;
2255 case verGujarati:
44c44c82 2256 lc = wxT("gu_IN") ;
0e32fdb8
SC
2257 break ;
2258 case verPunjabi:
44c44c82 2259 lc = wxT("pa") ;
0e32fdb8
SC
2260 break ;
2261 case verIndiaUrdu:
44c44c82 2262 lc = wxT("ur_IN") ;
0e32fdb8
SC
2263 break ;
2264 case verVietnam:
44c44c82 2265 lc = wxT("vi_VN") ;
0e32fdb8
SC
2266 break ;
2267 case verFrBelgium:
44c44c82 2268 lc = wxT("fr_BE") ;
0e32fdb8
SC
2269 break ;
2270 case verUzbek:
44c44c82 2271 lc = wxT("uz_UZ") ;
0e32fdb8
SC
2272 break ;
2273 case verSingapore:
44c44c82 2274 lc = wxT("zh_SG") ;
0e32fdb8
SC
2275 break ;
2276 case verNynorsk:
44c44c82 2277 lc = wxT("nn_NO") ;
0e32fdb8
SC
2278 break ;
2279 case verAfrikaans:
44c44c82 2280 lc = wxT("af_ZA") ;
0e32fdb8
SC
2281 break ;
2282 case verEsperanto:
44c44c82 2283 lc = wxT("eo") ;
0e32fdb8
SC
2284 break ;
2285 case verMarathi:
44c44c82 2286 lc = wxT("mr_IN") ;
0e32fdb8
SC
2287 break ;
2288 case verTibetan:
44c44c82 2289 lc = wxT("bo") ;
0e32fdb8
SC
2290 break ;
2291 case verNepal:
44c44c82 2292 lc = wxT("ne_NP") ;
0e32fdb8
SC
2293 break ;
2294 case verGreenland:
44c44c82 2295 lc = wxT("kl_GL") ;
0e32fdb8
SC
2296 break ;
2297 default :
2298 break ;
2299 }
2300 for ( i = 0; i < count; i++ )
2301 {
2302 if ( ms_languagesDB->Item(i).CanonicalName == lc )
2303 {
2304 break;
2305 }
2306 }
9e7ed2b0 2307
d3f3e35f
VS
2308#elif defined(__WIN32__)
2309 LCID lcid = GetUserDefaultLCID();
ec37df57 2310 if ( lcid != 0 )
d3f3e35f 2311 {
ec37df57
VZ
2312 wxUint32 lang = PRIMARYLANGID(LANGIDFROMLCID(lcid));
2313 wxUint32 sublang = SUBLANGID(LANGIDFROMLCID(lcid));
2314
2315 for ( i = 0; i < count; i++ )
d3f3e35f 2316 {
41780009
VS
2317 if (ms_languagesDB->Item(i).WinLang == lang &&
2318 ms_languagesDB->Item(i).WinSublang == sublang)
ec37df57
VZ
2319 {
2320 break;
2321 }
d3f3e35f
VS
2322 }
2323 }
ec37df57
VZ
2324 //else: leave wxlang == wxLANGUAGE_UNKNOWN
2325#endif // Unix/Win32
d3f3e35f 2326
ec37df57
VZ
2327 if ( i < count )
2328 {
2329 // we did find a matching entry, use it
41780009 2330 return ms_languagesDB->Item(i).Language;
ec37df57 2331 }
d3f3e35f 2332
ec37df57
VZ
2333 // no info about this language in the database
2334 return wxLANGUAGE_UNKNOWN;
2335}
d3f3e35f 2336
dccce9ea
VZ
2337// ----------------------------------------------------------------------------
2338// encoding stuff
2339// ----------------------------------------------------------------------------
2340
2341// this is a bit strange as under Windows we get the encoding name using its
2342// numeric value and under Unix we do it the other way round, but this just
97626624 2343// reflects the way different systems provide the encoding info
dccce9ea
VZ
2344
2345/* static */
2346wxString wxLocale::GetSystemEncodingName()
2347{
2348 wxString encname;
2349
c67d6888 2350#if defined(__WIN32__) && !defined(__WXMICROWIN__)
dccce9ea
VZ
2351 // FIXME: what is the error return value for GetACP()?
2352 UINT codepage = ::GetACP();
ecffe992 2353 encname.Printf(_T("windows-%u"), codepage);
1ad48afb
SC
2354#elif defined(__WXMAC__)
2355 // default is just empty string, this resolves to the default system
2356 // encoding later
dccce9ea
VZ
2357#elif defined(__UNIX_LIKE__)
2358
2359#if defined(HAVE_LANGINFO_H) && defined(CODESET)
2360 // GNU libc provides current character set this way (this conforms
2361 // to Unix98)
2ec6905c
VS
2362 char *oldLocale = strdup(setlocale(LC_CTYPE, NULL));
2363 setlocale(LC_CTYPE, "");
f284605f 2364 const char *alang = nl_langinfo(CODESET);
2ec6905c 2365 setlocale(LC_CTYPE, oldLocale);
030c0bea 2366 free(oldLocale);
84f858e9
VZ
2367
2368 if ( alang )
dccce9ea 2369 {
09d2016d 2370 encname = wxString::FromAscii( alang );
dccce9ea 2371 }
09d2016d 2372 else // nl_langinfo() failed
dccce9ea
VZ
2373#endif // HAVE_LANGINFO_H
2374 {
2375 // if we can't get at the character set directly, try to see if it's in
2376 // the environment variables (in most cases this won't work, but I was
2377 // out of ideas)
b1ac3b56
RR
2378 char *lang = getenv( "LC_ALL");
2379 char *dot = lang ? strchr(lang, '.') : (char *)NULL;
dccce9ea
VZ
2380 if (!dot)
2381 {
b1ac3b56 2382 lang = getenv( "LC_CTYPE" );
dccce9ea 2383 if ( lang )
b1ac3b56 2384 dot = strchr(lang, '.' );
dccce9ea
VZ
2385 }
2386 if (!dot)
2387 {
b1ac3b56 2388 lang = getenv( "LANG");
dccce9ea 2389 if ( lang )
b1ac3b56 2390 dot = strchr(lang, '.');
dccce9ea
VZ
2391 }
2392
2393 if ( dot )
2394 {
b1ac3b56 2395 encname = wxString::FromAscii( dot+1 );
dccce9ea
VZ
2396 }
2397 }
2398#endif // Win32/Unix
2399
2400 return encname;
2401}
2402
2403/* static */
2404wxFontEncoding wxLocale::GetSystemEncoding()
2405{
c67d6888 2406#if defined(__WIN32__) && !defined(__WXMICROWIN__)
dccce9ea
VZ
2407 UINT codepage = ::GetACP();
2408
3c832d58 2409 // wxWidgets only knows about CP1250-1257, 874, 932, 936, 949, 950
dccce9ea
VZ
2410 if ( codepage >= 1250 && codepage <= 1257 )
2411 {
2412 return (wxFontEncoding)(wxFONTENCODING_CP1250 + codepage - 1250);
2413 }
c7821f94 2414
3c832d58
DS
2415 if ( codepage == 874 )
2416 {
2417 return wxFONTENCODING_CP874;
2418 }
2419
c7821f94
VZ
2420 if ( codepage == 932 )
2421 {
2422 return wxFONTENCODING_CP932;
2423 }
2424
2425 if ( codepage == 936 )
2426 {
2427 return wxFONTENCODING_CP936;
2428 }
2429
2430 if ( codepage == 949 )
2431 {
2432 return wxFONTENCODING_CP949;
2433 }
2434
2435 if ( codepage == 950 )
2436 {
2437 return wxFONTENCODING_CP950;
2438 }
ec79aded 2439#elif defined(__WXMAC__)
7beb59f3 2440 TextEncoding encoding = 0 ;
9e687455 2441#if TARGET_CARBON
7beb59f3 2442 encoding = CFStringGetSystemEncoding() ;
9e687455 2443#else
7beb59f3 2444 UpgradeScriptInfoToTextEncoding ( smSystemScript , kTextLanguageDontCare , kTextRegionDontCare , NULL , &encoding ) ;
9e687455
SC
2445#endif
2446 return wxMacGetFontEncFromSystemEnc( encoding ) ;
1e6feb95 2447#elif defined(__UNIX_LIKE__) && wxUSE_FONTMAP
09d2016d 2448 const wxString encname = GetSystemEncodingName();
dccce9ea
VZ
2449 if ( !encname.empty() )
2450 {
09d2016d 2451 wxFontEncoding enc = wxFontMapperBase::GetEncodingFromName(encname);
9cf28550 2452
2b5f62a0 2453 // on some modern Linux systems (RedHat 8) the default system locale
13f095d2 2454 // is UTF8 -- but it isn't supported by wxGTK1 in ANSI build at all so
2b5f62a0 2455 // don't even try to use it in this case
13f095d2
VZ
2456#if !wxUSE_UNICODE && \
2457 ((defined(__WXGTK__) && !defined(__WXGTK20__)) || defined(__WXMOTIF__))
2b5f62a0
VZ
2458 if ( enc == wxFONTENCODING_UTF8 )
2459 {
2460 // the most similar supported encoding...
2461 enc = wxFONTENCODING_ISO8859_1;
2462 }
2463#endif // !wxUSE_UNICODE
2464
09d2016d
VZ
2465 // GetEncodingFromName() returns wxFONTENCODING_DEFAULT for C locale
2466 // (a.k.a. US-ASCII) which is arguably a bug but keep it like this for
2467 // backwards compatibility and just take care to not return
2468 // wxFONTENCODING_DEFAULT from here as this surely doesn't make sense
2469 if ( enc != wxFONTENCODING_MAX && enc != wxFONTENCODING_DEFAULT )
9cf28550
VZ
2470 {
2471 return enc;
2472 }
2473 //else: return wxFONTENCODING_SYSTEM below
dccce9ea
VZ
2474 }
2475#endif // Win32/Unix
2476
2477 return wxFONTENCODING_SYSTEM;
2478}
2479
14f8fa9d
VZ
2480/* static */
2481void wxLocale::AddLanguage(const wxLanguageInfo& info)
d3f3e35f 2482{
41780009
VS
2483 CreateLanguagesDB();
2484 ms_languagesDB->Add(info);
d3f3e35f
VS
2485}
2486
14f8fa9d
VZ
2487/* static */
2488const wxLanguageInfo *wxLocale::GetLanguageInfo(int lang)
2489{
2490 CreateLanguagesDB();
2491
f0ab09cc
VZ
2492 // calling GetLanguageInfo(wxLANGUAGE_DEFAULT) is a natural thing to do, so
2493 // make it work
2494 if ( lang == wxLANGUAGE_DEFAULT )
2495 lang = GetSystemLanguage();
2496
9d1e1be4 2497 const size_t count = ms_languagesDB->GetCount();
14f8fa9d
VZ
2498 for ( size_t i = 0; i < count; i++ )
2499 {
2500 if ( ms_languagesDB->Item(i).Language == lang )
2501 {
2502 return &ms_languagesDB->Item(i);
2503 }
2504 }
2505
2506 return NULL;
2507}
2508
4a6e4a46
VS
2509/* static */
2510wxString wxLocale::GetLanguageName(int lang)
2511{
2512 const wxLanguageInfo *info = GetLanguageInfo(lang);
2513 if ( !info )
2514 return wxEmptyString;
2515 else
2516 return info->Description;
2517}
2518
9d1e1be4
VZ
2519/* static */
2520const wxLanguageInfo *wxLocale::FindLanguageInfo(const wxString& locale)
2521{
2522 CreateLanguagesDB();
2523
2524 const wxLanguageInfo *infoRet = NULL;
2525
2526 const size_t count = ms_languagesDB->GetCount();
2527 for ( size_t i = 0; i < count; i++ )
2528 {
2529 const wxLanguageInfo *info = &ms_languagesDB->Item(i);
2530
2531 if ( wxStricmp(locale, info->CanonicalName) == 0 ||
2532 wxStricmp(locale, info->Description) == 0 )
2533 {
2534 // exact match, stop searching
2535 infoRet = info;
2536 break;
2537 }
2538
2539 if ( wxStricmp(locale, info->CanonicalName.BeforeFirst(_T('_'))) == 0 )
2540 {
2541 // a match -- but maybe we'll find an exact one later, so continue
2542 // looking
2543 //
2544 // OTOH, maybe we had already found a language match and in this
2545 // case don't overwrite it becauce the entry for the default
2546 // country always appears first in ms_languagesDB
2547 if ( !infoRet )
2548 infoRet = info;
2549 }
2550 }
2551
2552 return infoRet;
2553}
2554
d3f3e35f
VS
2555wxString wxLocale::GetSysName() const
2556{
1c193821
JS
2557 // FIXME
2558#ifndef __WXWINCE__
d3f3e35f 2559 return wxSetlocale(LC_ALL, NULL);
1c193821
JS
2560#else
2561 return wxEmptyString;
2562#endif
d3f3e35f
VS
2563}
2564
c801d85f
KB
2565// clean up
2566wxLocale::~wxLocale()
2567{
fd323a5e
VZ
2568 // free memory
2569 wxMsgCatalog *pTmpCat;
2570 while ( m_pMsgCat != NULL ) {
2571 pTmpCat = m_pMsgCat;
2572 m_pMsgCat = m_pMsgCat->m_pNext;
2573 delete pTmpCat;
2574 }
2575
eb48778d
VZ
2576 // restore old locale pointer
2577 wxSetLocale(m_pOldLocale);
bea561ce 2578
1c193821
JS
2579 // FIXME
2580#ifndef __WXWINCE__
e36e6f95 2581 wxSetlocale(LC_ALL, m_pszOldLocale);
1c193821 2582#endif
10545ca4 2583 free((wxChar *)m_pszOldLocale); // const_cast
c801d85f
KB
2584}
2585
2586// get the translation of given string in current locale
563d535e
VS
2587const wxChar *wxLocale::GetString(const wxChar *szOrigString,
2588 const wxChar *szDomain) const
849a28d0
VS
2589{
2590 return GetString(szOrigString, szOrigString, size_t(-1), szDomain);
2591}
2592
2593const wxChar *wxLocale::GetString(const wxChar *szOrigString,
2594 const wxChar *szOrigString2,
2595 size_t n,
2596 const wxChar *szDomain) const
c801d85f 2597{
563d535e 2598 if ( wxIsEmpty(szOrigString) )
849a28d0 2599 return wxEmptyString;
c801d85f 2600
563d535e
VS
2601 const wxChar *pszTrans = NULL;
2602 wxMsgCatalog *pMsgCat;
7af89395 2603
9e7ed2b0 2604 if ( szDomain != NULL )
563d535e
VS
2605 {
2606 pMsgCat = FindCatalog(szDomain);
2607
2608 // does the catalog exist?
2609 if ( pMsgCat != NULL )
849a28d0 2610 pszTrans = pMsgCat->GetString(szOrigString, n);
563d535e 2611 }
9e7ed2b0 2612 else
563d535e
VS
2613 {
2614 // search in all domains
9e7ed2b0 2615 for ( pMsgCat = m_pMsgCat; pMsgCat != NULL; pMsgCat = pMsgCat->m_pNext )
563d535e 2616 {
849a28d0 2617 pszTrans = pMsgCat->GetString(szOrigString, n);
563d535e
VS
2618 if ( pszTrans != NULL ) // take the first found
2619 break;
2620 }
c801d85f
KB
2621 }
2622
9e7ed2b0 2623 if ( pszTrans == NULL )
563d535e
VS
2624 {
2625#ifdef __WXDEBUG__
9e7ed2b0 2626 if ( !NoTransErr::Suppress() )
563d535e
VS
2627 {
2628 NoTransErr noTransErr;
e90c1d2a 2629
6b91d113
VZ
2630 wxLogTrace(TRACE_I18N,
2631 _T("string \"%s\"[%ld] not found in %slocale '%s'."),
2632 szOrigString, (long)n,
2633 szDomain ? wxString::Format(_T("domain '%s' "), szDomain).c_str()
2634 : _T(""),
2635 m_strLocale.c_str());
563d535e
VS
2636 }
2637#endif // __WXDEBUG__
12419383 2638
849a28d0
VS
2639 if (n == size_t(-1))
2640 return szOrigString;
2641 else
2642 return n == 1 ? szOrigString : szOrigString2;
563d535e 2643 }
12419383 2644
563d535e 2645 return pszTrans;
c801d85f
KB
2646}
2647
c48908df
VZ
2648wxString wxLocale::GetHeaderValue( const wxChar* szHeader,
2649 const wxChar* szDomain ) const
2650{
e6bf9573 2651 if ( wxIsEmpty(szHeader) )
c48908df
VZ
2652 return wxEmptyString;
2653
2654 wxChar const * pszTrans = NULL;
2655 wxMsgCatalog *pMsgCat;
2656
2657 if ( szDomain != NULL )
2658 {
2659 pMsgCat = FindCatalog(szDomain);
2660
2661 // does the catalog exist?
2662 if ( pMsgCat == NULL )
2663 return wxEmptyString;
2664
525d8583 2665 pszTrans = pMsgCat->GetString(wxEmptyString, (size_t)-1);
c48908df
VZ
2666 }
2667 else
2668 {
2669 // search in all domains
2670 for ( pMsgCat = m_pMsgCat; pMsgCat != NULL; pMsgCat = pMsgCat->m_pNext )
2671 {
525d8583 2672 pszTrans = pMsgCat->GetString(wxEmptyString, (size_t)-1);
c48908df
VZ
2673 if ( pszTrans != NULL ) // take the first found
2674 break;
2675 }
2676 }
2677
2678 if ( wxIsEmpty(pszTrans) )
2679 return wxEmptyString;
2680
e6bf9573 2681 wxChar const * pszFound = wxStrstr(pszTrans, szHeader);
c48908df
VZ
2682 if ( pszFound == NULL )
2683 return wxEmptyString;
7beb59f3 2684
e6bf9573 2685 pszFound += wxStrlen(szHeader) + 2 /* ': ' */;
c48908df
VZ
2686
2687 // Every header is separated by \n
7beb59f3 2688
c48908df
VZ
2689 wxChar const * pszEndLine = wxStrchr(pszFound, wxT('\n'));
2690 if ( pszEndLine == NULL ) pszEndLine = pszFound + wxStrlen(pszFound);
2691
2692
2693 // wxString( wxChar*, length);
2694 wxString retVal( pszFound, pszEndLine - pszFound );
2695
2696 return retVal;
2697}
2698
2699
c801d85f 2700// find catalog by name in a linked list, return NULL if !found
e36e6f95 2701wxMsgCatalog *wxLocale::FindCatalog(const wxChar *szDomain) const
c801d85f 2702{
563d535e
VS
2703 // linear search in the linked list
2704 wxMsgCatalog *pMsgCat;
9e7ed2b0 2705 for ( pMsgCat = m_pMsgCat; pMsgCat != NULL; pMsgCat = pMsgCat->m_pNext )
563d535e
VS
2706 {
2707 if ( wxStricmp(pMsgCat->GetName(), szDomain) == 0 )
2708 return pMsgCat;
2709 }
7af89395 2710
563d535e 2711 return NULL;
c801d85f
KB
2712}
2713
2714// check if the given catalog is loaded
e36e6f95 2715bool wxLocale::IsLoaded(const wxChar *szDomain) const
c801d85f
KB
2716{
2717 return FindCatalog(szDomain) != NULL;
2718}
2719
2720// add a catalog to our linked list
e36e6f95 2721bool wxLocale::AddCatalog(const wxChar *szDomain)
d721baa9
VS
2722{
2723 return AddCatalog(szDomain, wxLANGUAGE_ENGLISH, NULL);
2724}
2725
2726// add a catalog to our linked list
2727bool wxLocale::AddCatalog(const wxChar *szDomain,
2728 wxLanguage msgIdLanguage,
2729 const wxChar *msgIdCharset)
2730
c801d85f
KB
2731{
2732 wxMsgCatalog *pMsgCat = new wxMsgCatalog;
7af89395 2733
d721baa9 2734 if ( pMsgCat->Load(m_strShort, szDomain, msgIdCharset, m_bConvertEncoding) ) {
c801d85f
KB
2735 // add it to the head of the list so that in GetString it will
2736 // be searched before the catalogs added earlier
2737 pMsgCat->m_pNext = m_pMsgCat;
2738 m_pMsgCat = pMsgCat;
7af89395 2739
d721baa9 2740 return true;
c801d85f
KB
2741 }
2742 else {
2743 // don't add it because it couldn't be loaded anyway
2744 delete pMsgCat;
7af89395 2745
d721baa9
VS
2746 // It is OK to not load catalog if the msgid language and m_language match,
2747 // in which case we can directly display the texts embedded in program's
2748 // source code:
2749 if (m_language == msgIdLanguage)
2750 return true;
395a6701 2751
d721baa9
VS
2752 // If there's no exact match, we may still get partial match where the
2753 // (basic) language is same, but the country differs. For example, it's
2754 // permitted to use en_US strings from sources even if m_language is en_GB:
2755 const wxLanguageInfo *msgIdLangInfo = GetLanguageInfo(msgIdLanguage);
2756 if ( msgIdLangInfo &&
2757 msgIdLangInfo->CanonicalName.Mid(0, 2) == m_strShort.Mid(0, 2) )
2758 {
2759 return true;
2760 }
2761
2762 return false;
c801d85f
KB
2763 }
2764}
2765
cfb20656
VZ
2766// ----------------------------------------------------------------------------
2767// accessors for locale-dependent data
2768// ----------------------------------------------------------------------------
2769
2770#ifdef __WXMSW__
2771
2772/* static */
3fe73755 2773wxString wxLocale::GetInfo(wxLocaleInfo index, wxLocaleCategory WXUNUSED(cat))
cfb20656
VZ
2774{
2775 wxString str;
2776 wxChar buffer[256];
2777 size_t count;
2778 buffer[0] = wxT('\0');
2779 switch (index)
2780 {
60d876f3 2781 case wxLOCALE_DECIMAL_POINT:
cfb20656
VZ
2782 count = ::GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, buffer, 256);
2783 if (!count)
1e8bd6b2 2784 str << wxT(".");
cfb20656
VZ
2785 else
2786 str << buffer;
2787 break;
60d876f3 2788#if 0
cfb20656
VZ
2789 case wxSYS_LIST_SEPARATOR:
2790 count = ::GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SLIST, buffer, 256);
2791 if (!count)
1e8bd6b2 2792 str << wxT(",");
cfb20656
VZ
2793 else
2794 str << buffer;
2795 break;
2796 case wxSYS_LEADING_ZERO: // 0 means no leading zero, 1 means leading zero
2797 count = ::GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_ILZERO, buffer, 256);
2798 if (!count)
1e8bd6b2 2799 str << wxT("0");
cfb20656
VZ
2800 else
2801 str << buffer;
2802 break;
60d876f3 2803#endif
cfb20656 2804 default:
1e8bd6b2 2805 wxFAIL_MSG(wxT("Unknown System String !"));
cfb20656
VZ
2806 }
2807 return str;
2808}
2809
2810#else // !__WXMSW__
2811
2812/* static */
60d876f3 2813wxString wxLocale::GetInfo(wxLocaleInfo index, wxLocaleCategory cat)
cfb20656 2814{
60d876f3
SN
2815 struct lconv *locale_info = localeconv();
2816 switch (cat)
2817 {
2818 case wxLOCALE_CAT_NUMBER:
2819 switch (index)
2820 {
2821 case wxLOCALE_THOUSANDS_SEP:
3fe73755
SN
2822 return wxString(locale_info->thousands_sep,
2823 *wxConvCurrent);
60d876f3 2824 case wxLOCALE_DECIMAL_POINT:
3fe73755
SN
2825 return wxString(locale_info->decimal_point,
2826 *wxConvCurrent);
60d876f3
SN
2827 default:
2828 return wxEmptyString;
2829 }
2830 case wxLOCALE_CAT_MONEY:
2831 switch (index)
2832 {
2833 case wxLOCALE_THOUSANDS_SEP:
3fe73755
SN
2834 return wxString(locale_info->mon_thousands_sep,
2835 *wxConvCurrent);
60d876f3 2836 case wxLOCALE_DECIMAL_POINT:
3fe73755
SN
2837 return wxString(locale_info->mon_decimal_point,
2838 *wxConvCurrent);
60d876f3
SN
2839 default:
2840 return wxEmptyString;
2841 }
2842 default:
2843 return wxEmptyString;
2844 }
b7b97e77 2845}
cfb20656
VZ
2846
2847#endif // __WXMSW__/!__WXMSW__
2848
c801d85f
KB
2849// ----------------------------------------------------------------------------
2850// global functions and variables
2851// ----------------------------------------------------------------------------
2852
c801d85f
KB
2853// retrieve/change current locale
2854// ------------------------------
2855
2856// the current locale object
84c18814 2857static wxLocale *g_pLocale = NULL;
c801d85f 2858
1678ad78
GL
2859wxLocale *wxGetLocale()
2860{
7af89395 2861 return g_pLocale;
1678ad78
GL
2862}
2863
c801d85f
KB
2864wxLocale *wxSetLocale(wxLocale *pLocale)
2865{
7af89395
VZ
2866 wxLocale *pOld = g_pLocale;
2867 g_pLocale = pLocale;
2868 return pOld;
c801d85f 2869}
d427503c 2870
41780009
VS
2871
2872
2873// ----------------------------------------------------------------------------
2874// wxLocale module (for lazy destruction of languagesDB)
2875// ----------------------------------------------------------------------------
2876
2877class wxLocaleModule: public wxModule
2878{
2879 DECLARE_DYNAMIC_CLASS(wxLocaleModule)
2880 public:
2881 wxLocaleModule() {}
7beb59f3 2882 bool OnInit() { return true; }
41780009
VS
2883 void OnExit() { wxLocale::DestroyLanguagesDB(); }
2884};
2885
2886IMPLEMENT_DYNAMIC_CLASS(wxLocaleModule, wxModule)
2887
2888
2889
d3f3e35f
VS
2890// ----------------------------------------------------------------------------
2891// default languages table & initialization
2892// ----------------------------------------------------------------------------
2893
865a1730 2894
41780009
VS
2895
2896// --- --- --- generated code begins here --- --- ---
2897
d3f3e35f
VS
2898// This table is generated by misc/languages/genlang.py
2899// When making changes, please put them into misc/languages/langtabl.txt
2900
04ef50df 2901#if !defined(__WIN32__) || defined(__WXMICROWIN__)
63986ba6
VS
2902
2903#define SETWINLANG(info,lang,sublang)
2904
2905#else
2906
d3f3e35f
VS
2907#define SETWINLANG(info,lang,sublang) \
2908 info.WinLang = lang, info.WinSublang = sublang;
63986ba6
VS
2909
2910#ifndef LANG_AFRIKAANS
2911#define LANG_AFRIKAANS (0)
2912#endif
2913#ifndef LANG_ALBANIAN
2914#define LANG_ALBANIAN (0)
2915#endif
2916#ifndef LANG_ARABIC
2917#define LANG_ARABIC (0)
2918#endif
2919#ifndef LANG_ARMENIAN
2920#define LANG_ARMENIAN (0)
2921#endif
2922#ifndef LANG_ASSAMESE
2923#define LANG_ASSAMESE (0)
2924#endif
2925#ifndef LANG_AZERI
2926#define LANG_AZERI (0)
2927#endif
2928#ifndef LANG_BASQUE
2929#define LANG_BASQUE (0)
2930#endif
2931#ifndef LANG_BELARUSIAN
2932#define LANG_BELARUSIAN (0)
2933#endif
2934#ifndef LANG_BENGALI
2935#define LANG_BENGALI (0)
2936#endif
2937#ifndef LANG_BULGARIAN
2938#define LANG_BULGARIAN (0)
2939#endif
2940#ifndef LANG_CATALAN
2941#define LANG_CATALAN (0)
2942#endif
2943#ifndef LANG_CHINESE
2944#define LANG_CHINESE (0)
2945#endif
2946#ifndef LANG_CROATIAN
2947#define LANG_CROATIAN (0)
2948#endif
2949#ifndef LANG_CZECH
2950#define LANG_CZECH (0)
2951#endif
2952#ifndef LANG_DANISH
2953#define LANG_DANISH (0)
2954#endif
2955#ifndef LANG_DUTCH
2956#define LANG_DUTCH (0)
2957#endif
2958#ifndef LANG_ENGLISH
2959#define LANG_ENGLISH (0)
2960#endif
2961#ifndef LANG_ESTONIAN
2962#define LANG_ESTONIAN (0)
2963#endif
2964#ifndef LANG_FAEROESE
2965#define LANG_FAEROESE (0)
2966#endif
2967#ifndef LANG_FARSI
2968#define LANG_FARSI (0)
2969#endif
2970#ifndef LANG_FINNISH
2971#define LANG_FINNISH (0)
2972#endif
2973#ifndef LANG_FRENCH
2974#define LANG_FRENCH (0)
2975#endif
2976#ifndef LANG_GEORGIAN
2977#define LANG_GEORGIAN (0)
2978#endif
2979#ifndef LANG_GERMAN
2980#define LANG_GERMAN (0)
2981#endif
2982#ifndef LANG_GREEK
2983#define LANG_GREEK (0)
2984#endif
2985#ifndef LANG_GUJARATI
2986#define LANG_GUJARATI (0)
2987#endif
2988#ifndef LANG_HEBREW
2989#define LANG_HEBREW (0)
2990#endif
2991#ifndef LANG_HINDI
2992#define LANG_HINDI (0)
2993#endif
2994#ifndef LANG_HUNGARIAN
2995#define LANG_HUNGARIAN (0)
2996#endif
2997#ifndef LANG_ICELANDIC
2998#define LANG_ICELANDIC (0)
2999#endif
3000#ifndef LANG_INDONESIAN
3001#define LANG_INDONESIAN (0)
3002#endif
3003#ifndef LANG_ITALIAN
3004#define LANG_ITALIAN (0)
3005#endif
3006#ifndef LANG_JAPANESE
3007#define LANG_JAPANESE (0)
3008#endif
3009#ifndef LANG_KANNADA
3010#define LANG_KANNADA (0)
3011#endif
3012#ifndef LANG_KASHMIRI
3013#define LANG_KASHMIRI (0)
3014#endif
3015#ifndef LANG_KAZAK
3016#define LANG_KAZAK (0)
3017#endif
3018#ifndef LANG_KONKANI
3019#define LANG_KONKANI (0)
3020#endif
3021#ifndef LANG_KOREAN
3022#define LANG_KOREAN (0)
3023#endif
3024#ifndef LANG_LATVIAN
3025#define LANG_LATVIAN (0)
3026#endif
3027#ifndef LANG_LITHUANIAN
3028#define LANG_LITHUANIAN (0)
3029#endif
3030#ifndef LANG_MACEDONIAN
3031#define LANG_MACEDONIAN (0)
3032#endif
3033#ifndef LANG_MALAY
3034#define LANG_MALAY (0)
3035#endif
3036#ifndef LANG_MALAYALAM
3037#define LANG_MALAYALAM (0)
3038#endif
3039#ifndef LANG_MANIPURI
3040#define LANG_MANIPURI (0)
3041#endif
3042#ifndef LANG_MARATHI
3043#define LANG_MARATHI (0)
3044#endif
3045#ifndef LANG_NEPALI
3046#define LANG_NEPALI (0)
3047#endif
3048#ifndef LANG_NORWEGIAN
3049#define LANG_NORWEGIAN (0)
3050#endif
3051#ifndef LANG_ORIYA
3052#define LANG_ORIYA (0)
3053#endif
3054#ifndef LANG_POLISH
3055#define LANG_POLISH (0)
3056#endif
3057#ifndef LANG_PORTUGUESE
3058#define LANG_PORTUGUESE (0)
3059#endif
3060#ifndef LANG_PUNJABI
3061#define LANG_PUNJABI (0)
3062#endif
3063#ifndef LANG_ROMANIAN
3064#define LANG_ROMANIAN (0)
3065#endif
3066#ifndef LANG_RUSSIAN
3067#define LANG_RUSSIAN (0)
3068#endif
3069#ifndef LANG_SANSKRIT
3070#define LANG_SANSKRIT (0)
3071#endif
3072#ifndef LANG_SERBIAN
3073#define LANG_SERBIAN (0)
3074#endif
3075#ifndef LANG_SINDHI
3076#define LANG_SINDHI (0)
3077#endif
3078#ifndef LANG_SLOVAK
3079#define LANG_SLOVAK (0)
3080#endif
3081#ifndef LANG_SLOVENIAN
3082#define LANG_SLOVENIAN (0)
3083#endif
3084#ifndef LANG_SPANISH
3085#define LANG_SPANISH (0)
3086#endif
3087#ifndef LANG_SWAHILI
3088#define LANG_SWAHILI (0)
3089#endif
3090#ifndef LANG_SWEDISH
3091#define LANG_SWEDISH (0)
3092#endif
3093#ifndef LANG_TAMIL
3094#define LANG_TAMIL (0)
3095#endif
3096#ifndef LANG_TATAR
3097#define LANG_TATAR (0)
3098#endif
3099#ifndef LANG_TELUGU
3100#define LANG_TELUGU (0)
3101#endif
3102#ifndef LANG_THAI
3103#define LANG_THAI (0)
3104#endif
3105#ifndef LANG_TURKISH
3106#define LANG_TURKISH (0)
3107#endif
3108#ifndef LANG_UKRAINIAN
3109#define LANG_UKRAINIAN (0)
3110#endif
3111#ifndef LANG_URDU
3112#define LANG_URDU (0)
3113#endif
3114#ifndef LANG_UZBEK
3115#define LANG_UZBEK (0)
3116#endif
3117#ifndef LANG_VIETNAMESE
3118#define LANG_VIETNAMESE (0)
3119#endif
3120#ifndef SUBLANG_ARABIC_ALGERIA
3121#define SUBLANG_ARABIC_ALGERIA SUBLANG_DEFAULT
3122#endif
3123#ifndef SUBLANG_ARABIC_BAHRAIN
3124#define SUBLANG_ARABIC_BAHRAIN SUBLANG_DEFAULT
3125#endif
3126#ifndef SUBLANG_ARABIC_EGYPT
3127#define SUBLANG_ARABIC_EGYPT SUBLANG_DEFAULT
3128#endif
3129#ifndef SUBLANG_ARABIC_IRAQ
3130#define SUBLANG_ARABIC_IRAQ SUBLANG_DEFAULT
3131#endif
3132#ifndef SUBLANG_ARABIC_JORDAN
3133#define SUBLANG_ARABIC_JORDAN SUBLANG_DEFAULT
3134#endif
3135#ifndef SUBLANG_ARABIC_KUWAIT
3136#define SUBLANG_ARABIC_KUWAIT SUBLANG_DEFAULT
3137#endif
3138#ifndef SUBLANG_ARABIC_LEBANON
3139#define SUBLANG_ARABIC_LEBANON SUBLANG_DEFAULT
3140#endif
3141#ifndef SUBLANG_ARABIC_LIBYA
3142#define SUBLANG_ARABIC_LIBYA SUBLANG_DEFAULT
3143#endif
3144#ifndef SUBLANG_ARABIC_MOROCCO
3145#define SUBLANG_ARABIC_MOROCCO SUBLANG_DEFAULT
3146#endif
3147#ifndef SUBLANG_ARABIC_OMAN
3148#define SUBLANG_ARABIC_OMAN SUBLANG_DEFAULT
3149#endif
3150#ifndef SUBLANG_ARABIC_QATAR
3151#define SUBLANG_ARABIC_QATAR SUBLANG_DEFAULT
3152#endif
3153#ifndef SUBLANG_ARABIC_SAUDI_ARABIA
3154#define SUBLANG_ARABIC_SAUDI_ARABIA SUBLANG_DEFAULT
3155#endif
3156#ifndef SUBLANG_ARABIC_SYRIA
3157#define SUBLANG_ARABIC_SYRIA SUBLANG_DEFAULT
3158#endif
3159#ifndef SUBLANG_ARABIC_TUNISIA
3160#define SUBLANG_ARABIC_TUNISIA SUBLANG_DEFAULT
3161#endif
3162#ifndef SUBLANG_ARABIC_UAE
3163#define SUBLANG_ARABIC_UAE SUBLANG_DEFAULT
3164#endif
3165#ifndef SUBLANG_ARABIC_YEMEN
3166#define SUBLANG_ARABIC_YEMEN SUBLANG_DEFAULT
3167#endif
3168#ifndef SUBLANG_AZERI_CYRILLIC
3169#define SUBLANG_AZERI_CYRILLIC SUBLANG_DEFAULT
3170#endif
3171#ifndef SUBLANG_AZERI_LATIN
3172#define SUBLANG_AZERI_LATIN SUBLANG_DEFAULT
3173#endif
3174#ifndef SUBLANG_CHINESE_SIMPLIFIED
3175#define SUBLANG_CHINESE_SIMPLIFIED SUBLANG_DEFAULT
3176#endif
3177#ifndef SUBLANG_CHINESE_TRADITIONAL
3178#define SUBLANG_CHINESE_TRADITIONAL SUBLANG_DEFAULT
3179#endif
3180#ifndef SUBLANG_CHINESE_HONGKONG
3181#define SUBLANG_CHINESE_HONGKONG SUBLANG_DEFAULT
3182#endif
3183#ifndef SUBLANG_CHINESE_MACAU
3184#define SUBLANG_CHINESE_MACAU SUBLANG_DEFAULT
3185#endif
3186#ifndef SUBLANG_CHINESE_SINGAPORE
3187#define SUBLANG_CHINESE_SINGAPORE SUBLANG_DEFAULT
3188#endif
3189#ifndef SUBLANG_DUTCH
3190#define SUBLANG_DUTCH SUBLANG_DEFAULT
3191#endif
3192#ifndef SUBLANG_DUTCH_BELGIAN
3193#define SUBLANG_DUTCH_BELGIAN SUBLANG_DEFAULT
3194#endif
3195#ifndef SUBLANG_ENGLISH_UK
3196#define SUBLANG_ENGLISH_UK SUBLANG_DEFAULT
3197#endif
3198#ifndef SUBLANG_ENGLISH_US
3199#define SUBLANG_ENGLISH_US SUBLANG_DEFAULT
3200#endif
3201#ifndef SUBLANG_ENGLISH_AUS
3202#define SUBLANG_ENGLISH_AUS SUBLANG_DEFAULT
3203#endif
3204#ifndef SUBLANG_ENGLISH_BELIZE
3205#define SUBLANG_ENGLISH_BELIZE SUBLANG_DEFAULT
3206#endif
3207#ifndef SUBLANG_ENGLISH_CAN
3208#define SUBLANG_ENGLISH_CAN SUBLANG_DEFAULT
3209#endif
3210#ifndef SUBLANG_ENGLISH_CARIBBEAN
3211#define SUBLANG_ENGLISH_CARIBBEAN SUBLANG_DEFAULT
3212#endif
3213#ifndef SUBLANG_ENGLISH_EIRE
3214#define SUBLANG_ENGLISH_EIRE SUBLANG_DEFAULT
3215#endif
3216#ifndef SUBLANG_ENGLISH_JAMAICA
3217#define SUBLANG_ENGLISH_JAMAICA SUBLANG_DEFAULT
3218#endif
3219#ifndef SUBLANG_ENGLISH_NZ
3220#define SUBLANG_ENGLISH_NZ SUBLANG_DEFAULT
3221#endif
3222#ifndef SUBLANG_ENGLISH_PHILIPPINES
3223#define SUBLANG_ENGLISH_PHILIPPINES SUBLANG_DEFAULT
3224#endif
3225#ifndef SUBLANG_ENGLISH_SOUTH_AFRICA
3226#define SUBLANG_ENGLISH_SOUTH_AFRICA SUBLANG_DEFAULT
3227#endif
3228#ifndef SUBLANG_ENGLISH_TRINIDAD
3229#define SUBLANG_ENGLISH_TRINIDAD SUBLANG_DEFAULT
3230#endif
3231#ifndef SUBLANG_ENGLISH_ZIMBABWE
3232#define SUBLANG_ENGLISH_ZIMBABWE SUBLANG_DEFAULT
3233#endif
3234#ifndef SUBLANG_FRENCH
3235#define SUBLANG_FRENCH SUBLANG_DEFAULT
3236#endif
3237#ifndef SUBLANG_FRENCH_BELGIAN
3238#define SUBLANG_FRENCH_BELGIAN SUBLANG_DEFAULT
3239#endif
3240#ifndef SUBLANG_FRENCH_CANADIAN
3241#define SUBLANG_FRENCH_CANADIAN SUBLANG_DEFAULT
3242#endif
3243#ifndef SUBLANG_FRENCH_LUXEMBOURG
3244#define SUBLANG_FRENCH_LUXEMBOURG SUBLANG_DEFAULT
3245#endif
3246#ifndef SUBLANG_FRENCH_MONACO
3247#define SUBLANG_FRENCH_MONACO SUBLANG_DEFAULT
3248#endif
3249#ifndef SUBLANG_FRENCH_SWISS
3250#define SUBLANG_FRENCH_SWISS SUBLANG_DEFAULT
3251#endif
3252#ifndef SUBLANG_GERMAN
3253#define SUBLANG_GERMAN SUBLANG_DEFAULT
3254#endif
3255#ifndef SUBLANG_GERMAN_AUSTRIAN
3256#define SUBLANG_GERMAN_AUSTRIAN SUBLANG_DEFAULT
3257#endif
3258#ifndef SUBLANG_GERMAN_LIECHTENSTEIN
3259#define SUBLANG_GERMAN_LIECHTENSTEIN SUBLANG_DEFAULT
3260#endif
3261#ifndef SUBLANG_GERMAN_LUXEMBOURG
3262#define SUBLANG_GERMAN_LUXEMBOURG SUBLANG_DEFAULT
3263#endif
3264#ifndef SUBLANG_GERMAN_SWISS
3265#define SUBLANG_GERMAN_SWISS SUBLANG_DEFAULT
3266#endif
3267#ifndef SUBLANG_ITALIAN
3268#define SUBLANG_ITALIAN SUBLANG_DEFAULT
3269#endif
3270#ifndef SUBLANG_ITALIAN_SWISS
3271#define SUBLANG_ITALIAN_SWISS SUBLANG_DEFAULT
3272#endif
3273#ifndef SUBLANG_KASHMIRI_INDIA
3274#define SUBLANG_KASHMIRI_INDIA SUBLANG_DEFAULT
3275#endif
3276#ifndef SUBLANG_KOREAN
3277#define SUBLANG_KOREAN SUBLANG_DEFAULT
3278#endif
3279#ifndef SUBLANG_LITHUANIAN
3280#define SUBLANG_LITHUANIAN SUBLANG_DEFAULT
3281#endif
3282#ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM
3283#define SUBLANG_MALAY_BRUNEI_DARUSSALAM SUBLANG_DEFAULT
3284#endif
3285#ifndef SUBLANG_MALAY_MALAYSIA
3286#define SUBLANG_MALAY_MALAYSIA SUBLANG_DEFAULT
3287#endif
3288#ifndef SUBLANG_NEPALI_INDIA
3289#define SUBLANG_NEPALI_INDIA SUBLANG_DEFAULT
3290#endif
3291#ifndef SUBLANG_NORWEGIAN_BOKMAL
3292#define SUBLANG_NORWEGIAN_BOKMAL SUBLANG_DEFAULT
3293#endif
3294#ifndef SUBLANG_NORWEGIAN_NYNORSK
3295#define SUBLANG_NORWEGIAN_NYNORSK SUBLANG_DEFAULT
3296#endif
3297#ifndef SUBLANG_PORTUGUESE
3298#define SUBLANG_PORTUGUESE SUBLANG_DEFAULT
3299#endif
3300#ifndef SUBLANG_PORTUGUESE_BRAZILIAN
3301#define SUBLANG_PORTUGUESE_BRAZILIAN SUBLANG_DEFAULT
3302#endif
3303#ifndef SUBLANG_SERBIAN_CYRILLIC
3304#define SUBLANG_SERBIAN_CYRILLIC SUBLANG_DEFAULT
3305#endif
3306#ifndef SUBLANG_SERBIAN_LATIN
3307#define SUBLANG_SERBIAN_LATIN SUBLANG_DEFAULT
3308#endif
3309#ifndef SUBLANG_SPANISH
3310#define SUBLANG_SPANISH SUBLANG_DEFAULT
3311#endif
3312#ifndef SUBLANG_SPANISH_ARGENTINA
3313#define SUBLANG_SPANISH_ARGENTINA SUBLANG_DEFAULT
3314#endif
3315#ifndef SUBLANG_SPANISH_BOLIVIA
3316#define SUBLANG_SPANISH_BOLIVIA SUBLANG_DEFAULT
3317#endif
3318#ifndef SUBLANG_SPANISH_CHILE
3319#define SUBLANG_SPANISH_CHILE SUBLANG_DEFAULT
3320#endif
3321#ifndef SUBLANG_SPANISH_COLOMBIA
3322#define SUBLANG_SPANISH_COLOMBIA SUBLANG_DEFAULT
3323#endif
3324#ifndef SUBLANG_SPANISH_COSTA_RICA
3325#define SUBLANG_SPANISH_COSTA_RICA SUBLANG_DEFAULT
3326#endif
3327#ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC
3328#define SUBLANG_SPANISH_DOMINICAN_REPUBLIC SUBLANG_DEFAULT
3329#endif
3330#ifndef SUBLANG_SPANISH_ECUADOR
3331#define SUBLANG_SPANISH_ECUADOR SUBLANG_DEFAULT
3332#endif
3333#ifndef SUBLANG_SPANISH_EL_SALVADOR
3334#define SUBLANG_SPANISH_EL_SALVADOR SUBLANG_DEFAULT
3335#endif
3336#ifndef SUBLANG_SPANISH_GUATEMALA
3337#define SUBLANG_SPANISH_GUATEMALA SUBLANG_DEFAULT
3338#endif
3339#ifndef SUBLANG_SPANISH_HONDURAS
3340#define SUBLANG_SPANISH_HONDURAS SUBLANG_DEFAULT
3341#endif
3342#ifndef SUBLANG_SPANISH_MEXICAN
3343#define SUBLANG_SPANISH_MEXICAN SUBLANG_DEFAULT
3344#endif
3345#ifndef SUBLANG_SPANISH_MODERN
3346#define SUBLANG_SPANISH_MODERN SUBLANG_DEFAULT
3347#endif
3348#ifndef SUBLANG_SPANISH_NICARAGUA
3349#define SUBLANG_SPANISH_NICARAGUA SUBLANG_DEFAULT
3350#endif
3351#ifndef SUBLANG_SPANISH_PANAMA
3352#define SUBLANG_SPANISH_PANAMA SUBLANG_DEFAULT
3353#endif
3354#ifndef SUBLANG_SPANISH_PARAGUAY
3355#define SUBLANG_SPANISH_PARAGUAY SUBLANG_DEFAULT
3356#endif
3357#ifndef SUBLANG_SPANISH_PERU
3358#define SUBLANG_SPANISH_PERU SUBLANG_DEFAULT
3359#endif
3360#ifndef SUBLANG_SPANISH_PUERTO_RICO
3361#define SUBLANG_SPANISH_PUERTO_RICO SUBLANG_DEFAULT
3362#endif
3363#ifndef SUBLANG_SPANISH_URUGUAY
3364#define SUBLANG_SPANISH_URUGUAY SUBLANG_DEFAULT
3365#endif
3366#ifndef SUBLANG_SPANISH_VENEZUELA
3367#define SUBLANG_SPANISH_VENEZUELA SUBLANG_DEFAULT
3368#endif
3369#ifndef SUBLANG_SWEDISH
3370#define SUBLANG_SWEDISH SUBLANG_DEFAULT
3371#endif
3372#ifndef SUBLANG_SWEDISH_FINLAND
3373#define SUBLANG_SWEDISH_FINLAND SUBLANG_DEFAULT
3374#endif
3375#ifndef SUBLANG_URDU_INDIA
3376#define SUBLANG_URDU_INDIA SUBLANG_DEFAULT
3377#endif
3378#ifndef SUBLANG_URDU_PAKISTAN
3379#define SUBLANG_URDU_PAKISTAN SUBLANG_DEFAULT
3380#endif
3381#ifndef SUBLANG_UZBEK_CYRILLIC
3382#define SUBLANG_UZBEK_CYRILLIC SUBLANG_DEFAULT
3383#endif
3384#ifndef SUBLANG_UZBEK_LATIN
3385#define SUBLANG_UZBEK_LATIN SUBLANG_DEFAULT
d3f3e35f
VS
3386#endif
3387
63986ba6
VS
3388
3389#endif // __WIN32__
3390
d3f3e35f
VS
3391#define LNG(wxlang, canonical, winlang, winsublang, desc) \
3392 info.Language = wxlang; \
3393 info.CanonicalName = wxT(canonical); \
2b5f62a0 3394 info.Description = wxT(desc); \
d3f3e35f
VS
3395 SETWINLANG(info, winlang, winsublang) \
3396 AddLanguage(info);
3397
3398void wxLocale::InitLanguagesDB()
3399{
3400 wxLanguageInfo info;
3401 wxStringTokenizer tkn;
63986ba6 3402
14f8fa9d 3403 LNG(wxLANGUAGE_ABKHAZIAN, "ab" , 0 , 0 , "Abkhazian")
d3f3e35f
VS
3404 LNG(wxLANGUAGE_AFAR, "aa" , 0 , 0 , "Afar")
3405 LNG(wxLANGUAGE_AFRIKAANS, "af_ZA", LANG_AFRIKAANS , SUBLANG_DEFAULT , "Afrikaans")
3406 LNG(wxLANGUAGE_ALBANIAN, "sq_AL", LANG_ALBANIAN , SUBLANG_DEFAULT , "Albanian")
3407 LNG(wxLANGUAGE_AMHARIC, "am" , 0 , 0 , "Amharic")
3408 LNG(wxLANGUAGE_ARABIC, "ar" , LANG_ARABIC , SUBLANG_DEFAULT , "Arabic")
3409 LNG(wxLANGUAGE_ARABIC_ALGERIA, "ar_DZ", LANG_ARABIC , SUBLANG_ARABIC_ALGERIA , "Arabic (Algeria)")
3410 LNG(wxLANGUAGE_ARABIC_BAHRAIN, "ar_BH", LANG_ARABIC , SUBLANG_ARABIC_BAHRAIN , "Arabic (Bahrain)")
3411 LNG(wxLANGUAGE_ARABIC_EGYPT, "ar_EG", LANG_ARABIC , SUBLANG_ARABIC_EGYPT , "Arabic (Egypt)")
3412 LNG(wxLANGUAGE_ARABIC_IRAQ, "ar_IQ", LANG_ARABIC , SUBLANG_ARABIC_IRAQ , "Arabic (Iraq)")
3413 LNG(wxLANGUAGE_ARABIC_JORDAN, "ar_JO", LANG_ARABIC , SUBLANG_ARABIC_JORDAN , "Arabic (Jordan)")
3414 LNG(wxLANGUAGE_ARABIC_KUWAIT, "ar_KW", LANG_ARABIC , SUBLANG_ARABIC_KUWAIT , "Arabic (Kuwait)")
3415 LNG(wxLANGUAGE_ARABIC_LEBANON, "ar_LB", LANG_ARABIC , SUBLANG_ARABIC_LEBANON , "Arabic (Lebanon)")
3416 LNG(wxLANGUAGE_ARABIC_LIBYA, "ar_LY", LANG_ARABIC , SUBLANG_ARABIC_LIBYA , "Arabic (Libya)")
3417 LNG(wxLANGUAGE_ARABIC_MOROCCO, "ar_MA", LANG_ARABIC , SUBLANG_ARABIC_MOROCCO , "Arabic (Morocco)")
3418 LNG(wxLANGUAGE_ARABIC_OMAN, "ar_OM", LANG_ARABIC , SUBLANG_ARABIC_OMAN , "Arabic (Oman)")
3419 LNG(wxLANGUAGE_ARABIC_QATAR, "ar_QA", LANG_ARABIC , SUBLANG_ARABIC_QATAR , "Arabic (Qatar)")
3420 LNG(wxLANGUAGE_ARABIC_SAUDI_ARABIA, "ar_SA", LANG_ARABIC , SUBLANG_ARABIC_SAUDI_ARABIA , "Arabic (Saudi Arabia)")
3421 LNG(wxLANGUAGE_ARABIC_SUDAN, "ar_SD", 0 , 0 , "Arabic (Sudan)")
3422 LNG(wxLANGUAGE_ARABIC_SYRIA, "ar_SY", LANG_ARABIC , SUBLANG_ARABIC_SYRIA , "Arabic (Syria)")
3423 LNG(wxLANGUAGE_ARABIC_TUNISIA, "ar_TN", LANG_ARABIC , SUBLANG_ARABIC_TUNISIA , "Arabic (Tunisia)")
3424 LNG(wxLANGUAGE_ARABIC_UAE, "ar_AE", LANG_ARABIC , SUBLANG_ARABIC_UAE , "Arabic (Uae)")
3425 LNG(wxLANGUAGE_ARABIC_YEMEN, "ar_YE", LANG_ARABIC , SUBLANG_ARABIC_YEMEN , "Arabic (Yemen)")
3426 LNG(wxLANGUAGE_ARMENIAN, "hy" , LANG_ARMENIAN , SUBLANG_DEFAULT , "Armenian")
3427 LNG(wxLANGUAGE_ASSAMESE, "as" , LANG_ASSAMESE , SUBLANG_DEFAULT , "Assamese")
3428 LNG(wxLANGUAGE_AYMARA, "ay" , 0 , 0 , "Aymara")
3429 LNG(wxLANGUAGE_AZERI, "az" , LANG_AZERI , SUBLANG_DEFAULT , "Azeri")
3430 LNG(wxLANGUAGE_AZERI_CYRILLIC, "az" , LANG_AZERI , SUBLANG_AZERI_CYRILLIC , "Azeri (Cyrillic)")
3431 LNG(wxLANGUAGE_AZERI_LATIN, "az" , LANG_AZERI , SUBLANG_AZERI_LATIN , "Azeri (Latin)")
3432 LNG(wxLANGUAGE_BASHKIR, "ba" , 0 , 0 , "Bashkir")
3433 LNG(wxLANGUAGE_BASQUE, "eu_ES", LANG_BASQUE , SUBLANG_DEFAULT , "Basque")
3434 LNG(wxLANGUAGE_BELARUSIAN, "be_BY", LANG_BELARUSIAN, SUBLANG_DEFAULT , "Belarusian")
3435 LNG(wxLANGUAGE_BENGALI, "bn" , LANG_BENGALI , SUBLANG_DEFAULT , "Bengali")
3436 LNG(wxLANGUAGE_BHUTANI, "dz" , 0 , 0 , "Bhutani")
3437 LNG(wxLANGUAGE_BIHARI, "bh" , 0 , 0 , "Bihari")
3438 LNG(wxLANGUAGE_BISLAMA, "bi" , 0 , 0 , "Bislama")
3439 LNG(wxLANGUAGE_BRETON, "br" , 0 , 0 , "Breton")
3440 LNG(wxLANGUAGE_BULGARIAN, "bg_BG", LANG_BULGARIAN , SUBLANG_DEFAULT , "Bulgarian")
3441 LNG(wxLANGUAGE_BURMESE, "my" , 0 , 0 , "Burmese")
3442 LNG(wxLANGUAGE_CAMBODIAN, "km" , 0 , 0 , "Cambodian")
3443 LNG(wxLANGUAGE_CATALAN, "ca_ES", LANG_CATALAN , SUBLANG_DEFAULT , "Catalan")
e6cea1d3 3444 LNG(wxLANGUAGE_CHINESE, "zh_TW", LANG_CHINESE , SUBLANG_DEFAULT , "Chinese")
d3f3e35f 3445 LNG(wxLANGUAGE_CHINESE_SIMPLIFIED, "zh_CN", LANG_CHINESE , SUBLANG_CHINESE_SIMPLIFIED , "Chinese (Simplified)")
3ebd765d 3446 LNG(wxLANGUAGE_CHINESE_TRADITIONAL, "zh_TW", LANG_CHINESE , SUBLANG_CHINESE_TRADITIONAL , "Chinese (Traditional)")
d3f3e35f
VS
3447 LNG(wxLANGUAGE_CHINESE_HONGKONG, "zh_HK", LANG_CHINESE , SUBLANG_CHINESE_HONGKONG , "Chinese (Hongkong)")
3448 LNG(wxLANGUAGE_CHINESE_MACAU, "zh_MO", LANG_CHINESE , SUBLANG_CHINESE_MACAU , "Chinese (Macau)")
3449 LNG(wxLANGUAGE_CHINESE_SINGAPORE, "zh_SG", LANG_CHINESE , SUBLANG_CHINESE_SINGAPORE , "Chinese (Singapore)")
2b5f62a0 3450 LNG(wxLANGUAGE_CHINESE_TAIWAN, "zh_TW", LANG_CHINESE , SUBLANG_CHINESE_TRADITIONAL , "Chinese (Taiwan)")
d3f3e35f
VS
3451 LNG(wxLANGUAGE_CORSICAN, "co" , 0 , 0 , "Corsican")
3452 LNG(wxLANGUAGE_CROATIAN, "hr_HR", LANG_CROATIAN , SUBLANG_DEFAULT , "Croatian")
3453 LNG(wxLANGUAGE_CZECH, "cs_CZ", LANG_CZECH , SUBLANG_DEFAULT , "Czech")
3454 LNG(wxLANGUAGE_DANISH, "da_DK", LANG_DANISH , SUBLANG_DEFAULT , "Danish")
3455 LNG(wxLANGUAGE_DUTCH, "nl_NL", LANG_DUTCH , SUBLANG_DUTCH , "Dutch")
3456 LNG(wxLANGUAGE_DUTCH_BELGIAN, "nl_BE", LANG_DUTCH , SUBLANG_DUTCH_BELGIAN , "Dutch (Belgian)")
3457 LNG(wxLANGUAGE_ENGLISH, "en_GB", LANG_ENGLISH , SUBLANG_ENGLISH_UK , "English")
3458 LNG(wxLANGUAGE_ENGLISH_UK, "en_GB", LANG_ENGLISH , SUBLANG_ENGLISH_UK , "English (U.K.)")
3459 LNG(wxLANGUAGE_ENGLISH_US, "en_US", LANG_ENGLISH , SUBLANG_ENGLISH_US , "English (U.S.)")
3460 LNG(wxLANGUAGE_ENGLISH_AUSTRALIA, "en_AU", LANG_ENGLISH , SUBLANG_ENGLISH_AUS , "English (Australia)")
3461 LNG(wxLANGUAGE_ENGLISH_BELIZE, "en_BZ", LANG_ENGLISH , SUBLANG_ENGLISH_BELIZE , "English (Belize)")
3462 LNG(wxLANGUAGE_ENGLISH_BOTSWANA, "en_BW", 0 , 0 , "English (Botswana)")
3463 LNG(wxLANGUAGE_ENGLISH_CANADA, "en_CA", LANG_ENGLISH , SUBLANG_ENGLISH_CAN , "English (Canada)")
3464 LNG(wxLANGUAGE_ENGLISH_CARIBBEAN, "en_CB", LANG_ENGLISH , SUBLANG_ENGLISH_CARIBBEAN , "English (Caribbean)")
3465 LNG(wxLANGUAGE_ENGLISH_DENMARK, "en_DK", 0 , 0 , "English (Denmark)")
3466 LNG(wxLANGUAGE_ENGLISH_EIRE, "en_IE", LANG_ENGLISH , SUBLANG_ENGLISH_EIRE , "English (Eire)")
3467 LNG(wxLANGUAGE_ENGLISH_JAMAICA, "en_JM", LANG_ENGLISH , SUBLANG_ENGLISH_JAMAICA , "English (Jamaica)")
3468 LNG(wxLANGUAGE_ENGLISH_NEW_ZEALAND, "en_NZ", LANG_ENGLISH , SUBLANG_ENGLISH_NZ , "English (New Zealand)")
3469 LNG(wxLANGUAGE_ENGLISH_PHILIPPINES, "en_PH", LANG_ENGLISH , SUBLANG_ENGLISH_PHILIPPINES , "English (Philippines)")
3470 LNG(wxLANGUAGE_ENGLISH_SOUTH_AFRICA, "en_ZA", LANG_ENGLISH , SUBLANG_ENGLISH_SOUTH_AFRICA , "English (South Africa)")
3471 LNG(wxLANGUAGE_ENGLISH_TRINIDAD, "en_TT", LANG_ENGLISH , SUBLANG_ENGLISH_TRINIDAD , "English (Trinidad)")
3472 LNG(wxLANGUAGE_ENGLISH_ZIMBABWE, "en_ZW", LANG_ENGLISH , SUBLANG_ENGLISH_ZIMBABWE , "English (Zimbabwe)")
3473 LNG(wxLANGUAGE_ESPERANTO, "eo" , 0 , 0 , "Esperanto")
3474 LNG(wxLANGUAGE_ESTONIAN, "et_EE", LANG_ESTONIAN , SUBLANG_DEFAULT , "Estonian")
3475 LNG(wxLANGUAGE_FAEROESE, "fo_FO", LANG_FAEROESE , SUBLANG_DEFAULT , "Faeroese")
865a1730 3476 LNG(wxLANGUAGE_FARSI, "fa_IR", LANG_FARSI , SUBLANG_DEFAULT , "Farsi")
d3f3e35f
VS
3477 LNG(wxLANGUAGE_FIJI, "fj" , 0 , 0 , "Fiji")
3478 LNG(wxLANGUAGE_FINNISH, "fi_FI", LANG_FINNISH , SUBLANG_DEFAULT , "Finnish")
3479 LNG(wxLANGUAGE_FRENCH, "fr_FR", LANG_FRENCH , SUBLANG_FRENCH , "French")
3480 LNG(wxLANGUAGE_FRENCH_BELGIAN, "fr_BE", LANG_FRENCH , SUBLANG_FRENCH_BELGIAN , "French (Belgian)")
3481 LNG(wxLANGUAGE_FRENCH_CANADIAN, "fr_CA", LANG_FRENCH , SUBLANG_FRENCH_CANADIAN , "French (Canadian)")
3482 LNG(wxLANGUAGE_FRENCH_LUXEMBOURG, "fr_LU", LANG_FRENCH , SUBLANG_FRENCH_LUXEMBOURG , "French (Luxembourg)")
3483 LNG(wxLANGUAGE_FRENCH_MONACO, "fr_MC", LANG_FRENCH , SUBLANG_FRENCH_MONACO , "French (Monaco)")
3484 LNG(wxLANGUAGE_FRENCH_SWISS, "fr_CH", LANG_FRENCH , SUBLANG_FRENCH_SWISS , "French (Swiss)")
3485 LNG(wxLANGUAGE_FRISIAN, "fy" , 0 , 0 , "Frisian")
3486 LNG(wxLANGUAGE_GALICIAN, "gl_ES", 0 , 0 , "Galician")
3487 LNG(wxLANGUAGE_GEORGIAN, "ka" , LANG_GEORGIAN , SUBLANG_DEFAULT , "Georgian")
3488 LNG(wxLANGUAGE_GERMAN, "de_DE", LANG_GERMAN , SUBLANG_GERMAN , "German")
3489 LNG(wxLANGUAGE_GERMAN_AUSTRIAN, "de_AT", LANG_GERMAN , SUBLANG_GERMAN_AUSTRIAN , "German (Austrian)")
3490 LNG(wxLANGUAGE_GERMAN_BELGIUM, "de_BE", 0 , 0 , "German (Belgium)")
3491 LNG(wxLANGUAGE_GERMAN_LIECHTENSTEIN, "de_LI", LANG_GERMAN , SUBLANG_GERMAN_LIECHTENSTEIN , "German (Liechtenstein)")
3492 LNG(wxLANGUAGE_GERMAN_LUXEMBOURG, "de_LU", LANG_GERMAN , SUBLANG_GERMAN_LUXEMBOURG , "German (Luxembourg)")
3493 LNG(wxLANGUAGE_GERMAN_SWISS, "de_CH", LANG_GERMAN , SUBLANG_GERMAN_SWISS , "German (Swiss)")
3494 LNG(wxLANGUAGE_GREEK, "el_GR", LANG_GREEK , SUBLANG_DEFAULT , "Greek")
3495 LNG(wxLANGUAGE_GREENLANDIC, "kl_GL", 0 , 0 , "Greenlandic")
3496 LNG(wxLANGUAGE_GUARANI, "gn" , 0 , 0 , "Guarani")
3497 LNG(wxLANGUAGE_GUJARATI, "gu" , LANG_GUJARATI , SUBLANG_DEFAULT , "Gujarati")
3498 LNG(wxLANGUAGE_HAUSA, "ha" , 0 , 0 , "Hausa")
3499 LNG(wxLANGUAGE_HEBREW, "he_IL", LANG_HEBREW , SUBLANG_DEFAULT , "Hebrew")
3500 LNG(wxLANGUAGE_HINDI, "hi_IN", LANG_HINDI , SUBLANG_DEFAULT , "Hindi")
3501 LNG(wxLANGUAGE_HUNGARIAN, "hu_HU", LANG_HUNGARIAN , SUBLANG_DEFAULT , "Hungarian")
3502 LNG(wxLANGUAGE_ICELANDIC, "is_IS", LANG_ICELANDIC , SUBLANG_DEFAULT , "Icelandic")
3503 LNG(wxLANGUAGE_INDONESIAN, "id_ID", LANG_INDONESIAN, SUBLANG_DEFAULT , "Indonesian")
3504 LNG(wxLANGUAGE_INTERLINGUA, "ia" , 0 , 0 , "Interlingua")
3505 LNG(wxLANGUAGE_INTERLINGUE, "ie" , 0 , 0 , "Interlingue")
3506 LNG(wxLANGUAGE_INUKTITUT, "iu" , 0 , 0 , "Inuktitut")
3507 LNG(wxLANGUAGE_INUPIAK, "ik" , 0 , 0 , "Inupiak")
3508 LNG(wxLANGUAGE_IRISH, "ga_IE", 0 , 0 , "Irish")
3509 LNG(wxLANGUAGE_ITALIAN, "it_IT", LANG_ITALIAN , SUBLANG_ITALIAN , "Italian")
3510 LNG(wxLANGUAGE_ITALIAN_SWISS, "it_CH", LANG_ITALIAN , SUBLANG_ITALIAN_SWISS , "Italian (Swiss)")
3511 LNG(wxLANGUAGE_JAPANESE, "ja_JP", LANG_JAPANESE , SUBLANG_DEFAULT , "Japanese")
3512 LNG(wxLANGUAGE_JAVANESE, "jw" , 0 , 0 , "Javanese")
3513 LNG(wxLANGUAGE_KANNADA, "kn" , LANG_KANNADA , SUBLANG_DEFAULT , "Kannada")
3514 LNG(wxLANGUAGE_KASHMIRI, "ks" , LANG_KASHMIRI , SUBLANG_DEFAULT , "Kashmiri")
3515 LNG(wxLANGUAGE_KASHMIRI_INDIA, "ks_IN", LANG_KASHMIRI , SUBLANG_KASHMIRI_INDIA , "Kashmiri (India)")
3516 LNG(wxLANGUAGE_KAZAKH, "kk" , LANG_KAZAK , SUBLANG_DEFAULT , "Kazakh")
c611452f 3517 LNG(wxLANGUAGE_KERNEWEK, "kw_GB", 0 , 0 , "Kernewek")
d3f3e35f
VS
3518 LNG(wxLANGUAGE_KINYARWANDA, "rw" , 0 , 0 , "Kinyarwanda")
3519 LNG(wxLANGUAGE_KIRGHIZ, "ky" , 0 , 0 , "Kirghiz")
3520 LNG(wxLANGUAGE_KIRUNDI, "rn" , 0 , 0 , "Kirundi")
3521 LNG(wxLANGUAGE_KONKANI, "" , LANG_KONKANI , SUBLANG_DEFAULT , "Konkani")
3522 LNG(wxLANGUAGE_KOREAN, "ko_KR", LANG_KOREAN , SUBLANG_KOREAN , "Korean")
3523 LNG(wxLANGUAGE_KURDISH, "ku" , 0 , 0 , "Kurdish")
3524 LNG(wxLANGUAGE_LAOTHIAN, "lo" , 0 , 0 , "Laothian")
3525 LNG(wxLANGUAGE_LATIN, "la" , 0 , 0 , "Latin")
3526 LNG(wxLANGUAGE_LATVIAN, "lv_LV", LANG_LATVIAN , SUBLANG_DEFAULT , "Latvian")
3527 LNG(wxLANGUAGE_LINGALA, "ln" , 0 , 0 , "Lingala")
3528 LNG(wxLANGUAGE_LITHUANIAN, "lt_LT", LANG_LITHUANIAN, SUBLANG_LITHUANIAN , "Lithuanian")
3529 LNG(wxLANGUAGE_MACEDONIAN, "mk_MK", LANG_MACEDONIAN, SUBLANG_DEFAULT , "Macedonian")
3530 LNG(wxLANGUAGE_MALAGASY, "mg" , 0 , 0 , "Malagasy")
3531 LNG(wxLANGUAGE_MALAY, "ms_MY", LANG_MALAY , SUBLANG_DEFAULT , "Malay")
3532 LNG(wxLANGUAGE_MALAYALAM, "ml" , LANG_MALAYALAM , SUBLANG_DEFAULT , "Malayalam")
3533 LNG(wxLANGUAGE_MALAY_BRUNEI_DARUSSALAM, "ms_BN", LANG_MALAY , SUBLANG_MALAY_BRUNEI_DARUSSALAM , "Malay (Brunei Darussalam)")
3534 LNG(wxLANGUAGE_MALAY_MALAYSIA, "ms_MY", LANG_MALAY , SUBLANG_MALAY_MALAYSIA , "Malay (Malaysia)")
3535 LNG(wxLANGUAGE_MALTESE, "mt_MT", 0 , 0 , "Maltese")
3536 LNG(wxLANGUAGE_MANIPURI, "" , LANG_MANIPURI , SUBLANG_DEFAULT , "Manipuri")
3537 LNG(wxLANGUAGE_MAORI, "mi" , 0 , 0 , "Maori")
3538 LNG(wxLANGUAGE_MARATHI, "mr_IN", LANG_MARATHI , SUBLANG_DEFAULT , "Marathi")
3539 LNG(wxLANGUAGE_MOLDAVIAN, "mo" , 0 , 0 , "Moldavian")
3540 LNG(wxLANGUAGE_MONGOLIAN, "mn" , 0 , 0 , "Mongolian")
3541 LNG(wxLANGUAGE_NAURU, "na" , 0 , 0 , "Nauru")
3542 LNG(wxLANGUAGE_NEPALI, "ne" , LANG_NEPALI , SUBLANG_DEFAULT , "Nepali")
3543 LNG(wxLANGUAGE_NEPALI_INDIA, "ne_IN", LANG_NEPALI , SUBLANG_NEPALI_INDIA , "Nepali (India)")
cf5e94bc 3544 LNG(wxLANGUAGE_NORWEGIAN_BOKMAL, "nb_NO", LANG_NORWEGIAN , SUBLANG_NORWEGIAN_BOKMAL , "Norwegian (Bokmal)")
c611452f 3545 LNG(wxLANGUAGE_NORWEGIAN_NYNORSK, "nn_NO", LANG_NORWEGIAN , SUBLANG_NORWEGIAN_NYNORSK , "Norwegian (Nynorsk)")
d3f3e35f
VS
3546 LNG(wxLANGUAGE_OCCITAN, "oc" , 0 , 0 , "Occitan")
3547 LNG(wxLANGUAGE_ORIYA, "or" , LANG_ORIYA , SUBLANG_DEFAULT , "Oriya")
3548 LNG(wxLANGUAGE_OROMO, "om" , 0 , 0 , "(Afan) Oromo")
3549 LNG(wxLANGUAGE_PASHTO, "ps" , 0 , 0 , "Pashto, Pushto")
d3f3e35f
VS
3550 LNG(wxLANGUAGE_POLISH, "pl_PL", LANG_POLISH , SUBLANG_DEFAULT , "Polish")
3551 LNG(wxLANGUAGE_PORTUGUESE, "pt_PT", LANG_PORTUGUESE, SUBLANG_PORTUGUESE , "Portuguese")
3552 LNG(wxLANGUAGE_PORTUGUESE_BRAZILIAN, "pt_BR", LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN , "Portuguese (Brazilian)")
3553 LNG(wxLANGUAGE_PUNJABI, "pa" , LANG_PUNJABI , SUBLANG_DEFAULT , "Punjabi")
3554 LNG(wxLANGUAGE_QUECHUA, "qu" , 0 , 0 , "Quechua")
3555 LNG(wxLANGUAGE_RHAETO_ROMANCE, "rm" , 0 , 0 , "Rhaeto-Romance")
3556 LNG(wxLANGUAGE_ROMANIAN, "ro_RO", LANG_ROMANIAN , SUBLANG_DEFAULT , "Romanian")
3557 LNG(wxLANGUAGE_RUSSIAN, "ru_RU", LANG_RUSSIAN , SUBLANG_DEFAULT , "Russian")
3558 LNG(wxLANGUAGE_RUSSIAN_UKRAINE, "ru_UA", 0 , 0 , "Russian (Ukraine)")
3559 LNG(wxLANGUAGE_SAMOAN, "sm" , 0 , 0 , "Samoan")
3560 LNG(wxLANGUAGE_SANGHO, "sg" , 0 , 0 , "Sangho")
3561 LNG(wxLANGUAGE_SANSKRIT, "sa" , LANG_SANSKRIT , SUBLANG_DEFAULT , "Sanskrit")
3562 LNG(wxLANGUAGE_SCOTS_GAELIC, "gd" , 0 , 0 , "Scots Gaelic")
d3f3e35f
VS
3563 LNG(wxLANGUAGE_SERBIAN_CYRILLIC, "sr_YU", LANG_SERBIAN , SUBLANG_SERBIAN_CYRILLIC , "Serbian (Cyrillic)")
3564 LNG(wxLANGUAGE_SERBIAN_LATIN, "sr_YU", LANG_SERBIAN , SUBLANG_SERBIAN_LATIN , "Serbian (Latin)")
3565 LNG(wxLANGUAGE_SERBO_CROATIAN, "sh" , 0 , 0 , "Serbo-Croatian")
3566 LNG(wxLANGUAGE_SESOTHO, "st" , 0 , 0 , "Sesotho")
3567 LNG(wxLANGUAGE_SETSWANA, "tn" , 0 , 0 , "Setswana")
3568 LNG(wxLANGUAGE_SHONA, "sn" , 0 , 0 , "Shona")
3569 LNG(wxLANGUAGE_SINDHI, "sd" , LANG_SINDHI , SUBLANG_DEFAULT , "Sindhi")
3570 LNG(wxLANGUAGE_SINHALESE, "si" , 0 , 0 , "Sinhalese")
3571 LNG(wxLANGUAGE_SISWATI, "ss" , 0 , 0 , "Siswati")
3572 LNG(wxLANGUAGE_SLOVAK, "sk_SK", LANG_SLOVAK , SUBLANG_DEFAULT , "Slovak")
3573 LNG(wxLANGUAGE_SLOVENIAN, "sl_SI", LANG_SLOVENIAN , SUBLANG_DEFAULT , "Slovenian")
3574 LNG(wxLANGUAGE_SOMALI, "so" , 0 , 0 , "Somali")
3575 LNG(wxLANGUAGE_SPANISH, "es_ES", LANG_SPANISH , SUBLANG_SPANISH , "Spanish")
3576 LNG(wxLANGUAGE_SPANISH_ARGENTINA, "es_AR", LANG_SPANISH , SUBLANG_SPANISH_ARGENTINA , "Spanish (Argentina)")
3577 LNG(wxLANGUAGE_SPANISH_BOLIVIA, "es_BO", LANG_SPANISH , SUBLANG_SPANISH_BOLIVIA , "Spanish (Bolivia)")
3578 LNG(wxLANGUAGE_SPANISH_CHILE, "es_CL", LANG_SPANISH , SUBLANG_SPANISH_CHILE , "Spanish (Chile)")
3579 LNG(wxLANGUAGE_SPANISH_COLOMBIA, "es_CO", LANG_SPANISH , SUBLANG_SPANISH_COLOMBIA , "Spanish (Colombia)")
3580 LNG(wxLANGUAGE_SPANISH_COSTA_RICA, "es_CR", LANG_SPANISH , SUBLANG_SPANISH_COSTA_RICA , "Spanish (Costa Rica)")
3581 LNG(wxLANGUAGE_SPANISH_DOMINICAN_REPUBLIC, "es_DO", LANG_SPANISH , SUBLANG_SPANISH_DOMINICAN_REPUBLIC, "Spanish (Dominican republic)")
3582 LNG(wxLANGUAGE_SPANISH_ECUADOR, "es_EC", LANG_SPANISH , SUBLANG_SPANISH_ECUADOR , "Spanish (Ecuador)")
3583 LNG(wxLANGUAGE_SPANISH_EL_SALVADOR, "es_SV", LANG_SPANISH , SUBLANG_SPANISH_EL_SALVADOR , "Spanish (El Salvador)")
3584 LNG(wxLANGUAGE_SPANISH_GUATEMALA, "es_GT", LANG_SPANISH , SUBLANG_SPANISH_GUATEMALA , "Spanish (Guatemala)")
3585 LNG(wxLANGUAGE_SPANISH_HONDURAS, "es_HN", LANG_SPANISH , SUBLANG_SPANISH_HONDURAS , "Spanish (Honduras)")
3586 LNG(wxLANGUAGE_SPANISH_MEXICAN, "es_MX", LANG_SPANISH , SUBLANG_SPANISH_MEXICAN , "Spanish (Mexican)")
3587 LNG(wxLANGUAGE_SPANISH_MODERN, "es_ES", LANG_SPANISH , SUBLANG_SPANISH_MODERN , "Spanish (Modern)")
3588 LNG(wxLANGUAGE_SPANISH_NICARAGUA, "es_NI", LANG_SPANISH , SUBLANG_SPANISH_NICARAGUA , "Spanish (Nicaragua)")
3589 LNG(wxLANGUAGE_SPANISH_PANAMA, "es_PA", LANG_SPANISH , SUBLANG_SPANISH_PANAMA , "Spanish (Panama)")
3590 LNG(wxLANGUAGE_SPANISH_PARAGUAY, "es_PY", LANG_SPANISH , SUBLANG_SPANISH_PARAGUAY , "Spanish (Paraguay)")
3591 LNG(wxLANGUAGE_SPANISH_PERU, "es_PE", LANG_SPANISH , SUBLANG_SPANISH_PERU , "Spanish (Peru)")
3592 LNG(wxLANGUAGE_SPANISH_PUERTO_RICO, "es_PR", LANG_SPANISH , SUBLANG_SPANISH_PUERTO_RICO , "Spanish (Puerto Rico)")
3593 LNG(wxLANGUAGE_SPANISH_URUGUAY, "es_UY", LANG_SPANISH , SUBLANG_SPANISH_URUGUAY , "Spanish (Uruguay)")
3594 LNG(wxLANGUAGE_SPANISH_US, "es_US", 0 , 0 , "Spanish (U.S.)")
3595 LNG(wxLANGUAGE_SPANISH_VENEZUELA, "es_VE", LANG_SPANISH , SUBLANG_SPANISH_VENEZUELA , "Spanish (Venezuela)")
3596 LNG(wxLANGUAGE_SUNDANESE, "su" , 0 , 0 , "Sundanese")
3597 LNG(wxLANGUAGE_SWAHILI, "sw_KE", LANG_SWAHILI , SUBLANG_DEFAULT , "Swahili")
3598 LNG(wxLANGUAGE_SWEDISH, "sv_SE", LANG_SWEDISH , SUBLANG_SWEDISH , "Swedish")
3599 LNG(wxLANGUAGE_SWEDISH_FINLAND, "sv_FI", LANG_SWEDISH , SUBLANG_SWEDISH_FINLAND , "Swedish (Finland)")
25a5f9a9 3600 LNG(wxLANGUAGE_TAGALOG, "tl_PH", 0 , 0 , "Tagalog")
d3f3e35f
VS
3601 LNG(wxLANGUAGE_TAJIK, "tg" , 0 , 0 , "Tajik")
3602 LNG(wxLANGUAGE_TAMIL, "ta" , LANG_TAMIL , SUBLANG_DEFAULT , "Tamil")
3603 LNG(wxLANGUAGE_TATAR, "tt" , LANG_TATAR , SUBLANG_DEFAULT , "Tatar")
3604 LNG(wxLANGUAGE_TELUGU, "te" , LANG_TELUGU , SUBLANG_DEFAULT , "Telugu")
3605 LNG(wxLANGUAGE_THAI, "th_TH", LANG_THAI , SUBLANG_DEFAULT , "Thai")
3606 LNG(wxLANGUAGE_TIBETAN, "bo" , 0 , 0 , "Tibetan")
3607 LNG(wxLANGUAGE_TIGRINYA, "ti" , 0 , 0 , "Tigrinya")
3608 LNG(wxLANGUAGE_TONGA, "to" , 0 , 0 , "Tonga")
3609 LNG(wxLANGUAGE_TSONGA, "ts" , 0 , 0 , "Tsonga")
3610 LNG(wxLANGUAGE_TURKISH, "tr_TR", LANG_TURKISH , SUBLANG_DEFAULT , "Turkish")
3611 LNG(wxLANGUAGE_TURKMEN, "tk" , 0 , 0 , "Turkmen")
3612 LNG(wxLANGUAGE_TWI, "tw" , 0 , 0 , "Twi")
3613 LNG(wxLANGUAGE_UIGHUR, "ug" , 0 , 0 , "Uighur")
3614 LNG(wxLANGUAGE_UKRAINIAN, "uk_UA", LANG_UKRAINIAN , SUBLANG_DEFAULT , "Ukrainian")
3615 LNG(wxLANGUAGE_URDU, "ur" , LANG_URDU , SUBLANG_DEFAULT , "Urdu")
3616 LNG(wxLANGUAGE_URDU_INDIA, "ur_IN", LANG_URDU , SUBLANG_URDU_INDIA , "Urdu (India)")
3617 LNG(wxLANGUAGE_URDU_PAKISTAN, "ur_PK", LANG_URDU , SUBLANG_URDU_PAKISTAN , "Urdu (Pakistan)")
3618 LNG(wxLANGUAGE_UZBEK, "uz" , LANG_UZBEK , SUBLANG_DEFAULT , "Uzbek")
3619 LNG(wxLANGUAGE_UZBEK_CYRILLIC, "uz" , LANG_UZBEK , SUBLANG_UZBEK_CYRILLIC , "Uzbek (Cyrillic)")
3620 LNG(wxLANGUAGE_UZBEK_LATIN, "uz" , LANG_UZBEK , SUBLANG_UZBEK_LATIN , "Uzbek (Latin)")
3621 LNG(wxLANGUAGE_VIETNAMESE, "vi_VN", LANG_VIETNAMESE, SUBLANG_DEFAULT , "Vietnamese")
3622 LNG(wxLANGUAGE_VOLAPUK, "vo" , 0 , 0 , "Volapuk")
3623 LNG(wxLANGUAGE_WELSH, "cy" , 0 , 0 , "Welsh")
3624 LNG(wxLANGUAGE_WOLOF, "wo" , 0 , 0 , "Wolof")
3625 LNG(wxLANGUAGE_XHOSA, "xh" , 0 , 0 , "Xhosa")
3626 LNG(wxLANGUAGE_YIDDISH, "yi" , 0 , 0 , "Yiddish")
3627 LNG(wxLANGUAGE_YORUBA, "yo" , 0 , 0 , "Yoruba")
3628 LNG(wxLANGUAGE_ZHUANG, "za" , 0 , 0 , "Zhuang")
3629 LNG(wxLANGUAGE_ZULU, "zu" , 0 , 0 , "Zulu")
9e7ed2b0 3630
4115960d 3631}
d3f3e35f
VS
3632#undef LNG
3633
41780009
VS
3634// --- --- --- generated code ends here --- --- ---
3635
d427503c 3636#endif // wxUSE_INTL