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