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