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