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