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