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