2
0

Translation.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Locale
  17. * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
  18. * @license http://framework.zend.com/license/new-bsd New BSD License
  19. * @version $Id: Locale.php 5357 2007-06-16 19:56:21Z thomas $
  20. */
  21. /**
  22. * Definition class for all Windows locales
  23. *
  24. * @category Zend
  25. * @package Zend_Locale
  26. * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
  27. * @license http://framework.zend.com/license/new-bsd New BSD License
  28. */
  29. class Zend_Locale_Data_Translation
  30. {
  31. /**
  32. * Locale Translation for Full Named Locales
  33. *
  34. * @var array $localeTranslation
  35. */
  36. public static $localeTranslation = array(
  37. 'Australia' => 'AU',
  38. 'Austria' => 'AT',
  39. 'Belgium' => 'BE',
  40. 'Brazil' => 'BR',
  41. 'Canada' => 'CA',
  42. 'China' => 'CN',
  43. 'Czech Republic' => 'CZ',
  44. 'Denmark' => 'DK',
  45. 'Finland' => 'FI',
  46. 'France' => 'FR',
  47. 'Germany' => 'DE',
  48. 'Greece' => 'GR',
  49. 'Hong Kong SAR' => 'HK',
  50. 'Hungary' => 'HU',
  51. 'Iceland' => 'IS',
  52. 'Ireland' => 'IE',
  53. 'Italy' => 'IT',
  54. 'Japan' => 'JP',
  55. 'Korea' => 'KP',
  56. 'Mexiko' => 'MX',
  57. 'The Netherlands' => 'NL',
  58. 'New Zealand' => 'NZ',
  59. 'Norway' => 'NO',
  60. 'Poland' => 'PL',
  61. 'Portugal' => 'PT',
  62. 'Russia' => 'RU',
  63. 'Singapore' => 'SG',
  64. 'Slovakia' => 'SK',
  65. 'Spain' => 'ES',
  66. 'Sweden' => 'SE',
  67. 'Taiwan' => 'TW',
  68. 'Turkey' => 'TR',
  69. 'United Kingdom' => 'GB',
  70. 'United States' => 'US',
  71. 'Chinese' => 'zh',
  72. 'Czech' => 'cs',
  73. 'Danish' => 'da',
  74. 'Dutch' => 'nl',
  75. 'English' => 'en',
  76. 'Finnish' => 'fi',
  77. 'French' => 'fr',
  78. 'German' => 'de',
  79. 'Greek' => 'el',
  80. 'Hungarian' => 'hu',
  81. 'Icelandic' => 'is',
  82. 'Italian' => 'it',
  83. 'Japanese' => 'ja',
  84. 'Korean' => 'ko',
  85. 'Norwegian' => 'no',
  86. 'Polish' => 'pl',
  87. 'Portuguese' => 'pt',
  88. 'Russian' => 'ru',
  89. 'Slovak' => 'sk',
  90. 'Spanish' => 'es',
  91. 'Swedish' => 'sv',
  92. 'Turkish' => 'tr'
  93. );
  94. }