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