Lib_ZF_Locale - Version 1.1.1

Version Notes

1.1.1

Download this release

Release Info

Developer Magento Core Team
Extension Lib_ZF_Locale
Version 1.1.1
Comparing to
See all releases


Code changes from version 1.0.18800 to 1.1.1

lib/Zend/Locale.php CHANGED
@@ -121,7 +121,7 @@ class Zend_Locale {
121
  self::$_browser = $this->getDefault(self::BROWSER, false);
122
  self::$_environment = $this->getDefault(self::ENVIRONMENT, false);
123
  if (empty($locale) and empty(self::$_auto) and empty(self::$_Default)) {
124
- require_once 'Zend/Locale/Exception.php';
125
  throw new Zend_Locale_Exception('Autodetection of Locale has been failed!');
126
  }
127
  }
@@ -234,7 +234,7 @@ class Zend_Locale {
234
  {
235
  if (($locale == "auto") or ($locale == "root") or
236
  ($locale == "environment") or ($locale == "browser")) {
237
- require_once 'Zend/Locale/Exception.php';
238
  throw new Zend_Locale_Exception('Only full qualified locales can be used as default!');
239
  }
240
  if (array_key_exists($locale, self::$_localeData)) {
@@ -247,7 +247,7 @@ class Zend_Locale {
247
  return true;
248
  }
249
  }
250
- require_once 'Zend/Locale/Exception.php';
251
  throw new Zend_Locale_Exception("Unknown locale '$locale' can not be set as default!");
252
  }
253
 
@@ -263,7 +263,7 @@ class Zend_Locale {
263
  */
264
  public function getEnvironment()
265
  {
266
- require_once 'Zend/Locale/Data/Translation.php';
267
 
268
  $language = setlocale(LC_ALL, 0);
269
  $languages = explode(';', $language);
@@ -504,8 +504,8 @@ class Zend_Locale {
504
  public function getTranslationList($path = null, $locale = null, $value = null)
505
  {
506
  // load class within method for speed
507
- require_once 'Zend/Locale/Data.php';
508
- require_once 'Zend/Locale/Exception.php';
509
 
510
  if ($locale === null) {
511
  $locale = $this->_Locale;
@@ -592,8 +592,8 @@ class Zend_Locale {
592
  public function getTranslation($value = null, $path = null, $locale = null)
593
  {
594
  // load class within method for speed
595
- require_once 'Zend/Locale/Data.php';
596
- require_once 'Zend/Locale/Exception.php';
597
 
598
  if ($locale === null) {
599
  $locale = $this->_Locale;
@@ -681,7 +681,7 @@ class Zend_Locale {
681
  public function getQuestion($locale = null)
682
  {
683
  // load class within method for speed
684
- require_once 'Zend/Locale/Data.php';
685
 
686
  if ($locale === null) {
687
  $locale = $this->_Locale;
@@ -831,7 +831,7 @@ class Zend_Locale {
831
  public static function setCache(Zend_Cache_Core $cache)
832
  {
833
  // load class within method for speed
834
- require_once 'Zend/Locale/Data.php';
835
  Zend_Locale_Data::setCache($cache);
836
  }
837
  }
121
  self::$_browser = $this->getDefault(self::BROWSER, false);
122
  self::$_environment = $this->getDefault(self::ENVIRONMENT, false);
123
  if (empty($locale) and empty(self::$_auto) and empty(self::$_Default)) {
124
+ #require_once 'Zend/Locale/Exception.php';
125
  throw new Zend_Locale_Exception('Autodetection of Locale has been failed!');
126
  }
127
  }
234
  {
235
  if (($locale == "auto") or ($locale == "root") or
236
  ($locale == "environment") or ($locale == "browser")) {
237
+ #require_once 'Zend/Locale/Exception.php';
238
  throw new Zend_Locale_Exception('Only full qualified locales can be used as default!');
239
  }
240
  if (array_key_exists($locale, self::$_localeData)) {
247
  return true;
248
  }
249
  }
250
+ #require_once 'Zend/Locale/Exception.php';
251
  throw new Zend_Locale_Exception("Unknown locale '$locale' can not be set as default!");
252
  }
253
 
263
  */
264
  public function getEnvironment()
265
  {
266
+ #require_once 'Zend/Locale/Data/Translation.php';
267
 
268
  $language = setlocale(LC_ALL, 0);
269
  $languages = explode(';', $language);
504
  public function getTranslationList($path = null, $locale = null, $value = null)
505
  {
506
  // load class within method for speed
507
+ #require_once 'Zend/Locale/Data.php';
508
+ #require_once 'Zend/Locale/Exception.php';
509
 
510
  if ($locale === null) {
511
  $locale = $this->_Locale;
592
  public function getTranslation($value = null, $path = null, $locale = null)
593
  {
594
  // load class within method for speed
595
+ #require_once 'Zend/Locale/Data.php';
596
+ #require_once 'Zend/Locale/Exception.php';
597
 
598
  if ($locale === null) {
599
  $locale = $this->_Locale;
681
  public function getQuestion($locale = null)
682
  {
683
  // load class within method for speed
684
+ #require_once 'Zend/Locale/Data.php';
685
 
686
  if ($locale === null) {
687
  $locale = $this->_Locale;
831
  public static function setCache(Zend_Cache_Core $cache)
832
  {
833
  // load class within method for speed
834
+ #require_once 'Zend/Locale/Data.php';
835
  Zend_Locale_Data::setCache($cache);
836
  }
837
  }
lib/Zend/Locale/Data.php CHANGED
@@ -24,7 +24,7 @@
24
  /**
25
  * include needed classes
26
  */
27
- require_once 'Zend/Locale.php';
28
 
29
 
30
  /**
@@ -142,7 +142,7 @@ class Zend_Locale_Data
142
  if (empty(self::$_ldml[(string) $locale])) {
143
  $filename = dirname(__FILE__) . '/Data/' . $locale . '.xml';
144
  if (!file_exists($filename)) {
145
- require_once 'Zend/Locale/Exception.php';
146
  throw new Zend_Locale_Exception("Missing locale file '$filename' for '$locale' locale.");
147
  }
148
 
@@ -279,7 +279,7 @@ class Zend_Locale_Data
279
  }
280
 
281
  if (!($locale = Zend_Locale::isLocale($locale))) {
282
- require_once 'Zend/Locale/Exception.php';
283
  throw new Zend_Locale_Exception("Locale ($locale) is a unknown locale");
284
  }
285
  return $locale;
@@ -749,7 +749,7 @@ class Zend_Locale_Data
749
  break;
750
 
751
  default :
752
- require_once 'Zend/Locale/Exception.php';
753
  throw new Zend_Locale_Exception("Unknown list ($path) for parsing locale data.");
754
  break;
755
  }
@@ -990,6 +990,10 @@ class Zend_Locale_Data
990
  $temp = self::_getFile($locale, '/ldml/numbers/currencies/currency[@type=\'' . $value . '\']/symbol', '', $value);
991
  break;
992
 
 
 
 
 
993
  case 'question':
994
  $temp = self::_getFile($locale, '/ldml/posix/messages/' . $value . 'str', '', $value);
995
  break;
@@ -1141,7 +1145,7 @@ class Zend_Locale_Data
1141
  break;
1142
 
1143
  default :
1144
- require_once 'Zend/Locale/Exception.php';
1145
  throw new Zend_Locale_Exception("Unknown detail ($path) for parsing locale data.");
1146
  break;
1147
  }
24
  /**
25
  * include needed classes
26
  */
27
+ #require_once 'Zend/Locale.php';
28
 
29
 
30
  /**
142
  if (empty(self::$_ldml[(string) $locale])) {
143
  $filename = dirname(__FILE__) . '/Data/' . $locale . '.xml';
144
  if (!file_exists($filename)) {
145
+ #require_once 'Zend/Locale/Exception.php';
146
  throw new Zend_Locale_Exception("Missing locale file '$filename' for '$locale' locale.");
147
  }
148
 
279
  }
280
 
281
  if (!($locale = Zend_Locale::isLocale($locale))) {
282
+ #require_once 'Zend/Locale/Exception.php';
283
  throw new Zend_Locale_Exception("Locale ($locale) is a unknown locale");
284
  }
285
  return $locale;
749
  break;
750
 
751
  default :
752
+ #require_once 'Zend/Locale/Exception.php';
753
  throw new Zend_Locale_Exception("Unknown list ($path) for parsing locale data.");
754
  break;
755
  }
990
  $temp = self::_getFile($locale, '/ldml/numbers/currencies/currency[@type=\'' . $value . '\']/symbol', '', $value);
991
  break;
992
 
993
+ case 'currencysymbolchoice':
994
+ $temp = self::_getFile($locale, '/ldml/numbers/currencies/currency[@type=\'' . $value . '\']/symbol/@choice', '', $value);
995
+ break;
996
+
997
  case 'question':
998
  $temp = self::_getFile($locale, '/ldml/posix/messages/' . $value . 'str', '', $value);
999
  break;
1145
  break;
1146
 
1147
  default :
1148
+ #require_once 'Zend/Locale/Exception.php';
1149
  throw new Zend_Locale_Exception("Unknown detail ($path) for parsing locale data.");
1150
  break;
1151
  }
lib/Zend/Locale/Data/en.xml CHANGED
@@ -3556,11 +3556,11 @@
3556
  </currency>
3557
  <currency type="ROL">
3558
  <displayName>Old Romanian Leu</displayName>
3559
- <symbol choice="true">=0#Old lei|1#Old leu|1&lt;Old lei</symbol>
3560
  </currency>
3561
  <currency type="RON">
3562
  <displayName>Romanian Leu</displayName>
3563
- <symbol choice="true">=0#lei|1#leu|1&lt;lei</symbol>
3564
  </currency>
3565
  <currency type="RSD">
3566
  <displayName>Serbian Dinar</displayName>
@@ -3673,6 +3673,7 @@
3673
  </currency>
3674
  <currency type="TRY">
3675
  <displayName>New Turkish Lira</displayName>
 
3676
  </currency>
3677
  <currency type="TTD">
3678
  <displayName>Trinidad and Tobago Dollar</displayName>
3556
  </currency>
3557
  <currency type="ROL">
3558
  <displayName>Old Romanian Leu</displayName>
3559
+ <symbol choice="true">0Old lei|1Old leu|1&lt;Old lei</symbol>
3560
  </currency>
3561
  <currency type="RON">
3562
  <displayName>Romanian Leu</displayName>
3563
+ <symbol choice="true">0lei|1leu|1&lt;lei</symbol>
3564
  </currency>
3565
  <currency type="RSD">
3566
  <displayName>Serbian Dinar</displayName>
3673
  </currency>
3674
  <currency type="TRY">
3675
  <displayName>New Turkish Lira</displayName>
3676
+ <symbol>YTL</symbol>
3677
  </currency>
3678
  <currency type="TTD">
3679
  <displayName>Trinidad and Tobago Dollar</displayName>
lib/Zend/Locale/Data/lv.xml CHANGED
@@ -1,1529 +1,1530 @@
1
- <?xml version="1.0" encoding="UTF-8" ?>
2
- <!DOCTYPE ldml SYSTEM "http://www.unicode.org/cldr/dtd/1.5/ldml.dtd">
3
- <ldml>
4
- <identity>
5
- <version number="$Revision: 1.70 $"/>
6
- <generation date="$Date: 2007/07/19 23:40:49 $"/>
7
- <language type="lv"/>
8
- </identity>
9
- <localeDisplayNames>
10
- <languages>
11
- <language type="af">afrikāņu</language>
12
- <language type="am">amharu</language>
13
- <language type="ar">arābu</language>
14
- <language type="as">asamiešu</language>
15
- <language type="az">azerbaidžāņu</language>
16
- <language type="be">baltkrievu</language>
17
- <language type="bg">bulgāru</language>
18
- <language type="bh">biharu</language>
19
- <language type="bn">bengāļu</language>
20
- <language type="br">bretoņu</language>
21
- <language type="bs">bosniešu</language>
22
- <language type="ca">katalāņu</language>
23
- <language type="cs">čehu</language>
24
- <language type="cy">velsiešu</language>
25
- <language type="da">dāņu</language>
26
- <language type="de">vācu</language>
27
- <language type="el">grieķu</language>
28
- <language type="en">angļu</language>
29
- <language type="en_US">angļu (ASV)</language>
30
- <language type="eo">esperanto</language>
31
- <language type="es">spāņu</language>
32
- <language type="es_419">spāņu (Latīņamerika)</language>
33
- <language type="et">igauņu</language>
34
- <language type="eu">basku</language>
35
- <language type="fa">persiešu</language>
36
- <language type="fi">somu</language>
37
- <language type="fil">tagalu</language>
38
- <language type="fo">faroisu</language>
39
- <language type="fr">franču</language>
40
- <language type="fy">frīzu</language>
41
- <language type="ga">īru</language>
42
- <language type="gd">skotu-ķeltu</language>
43
- <language type="gl">galisiešu</language>
44
- <language type="gn">gvaranu</language>
45
- <language type="gu">gudžaratu</language>
46
- <language type="he">ivrits</language>
47
- <language type="hi">hindi</language>
48
- <language type="hr">horvātu</language>
49
- <language type="hu">ungāru</language>
50
- <language type="hy">armēņu</language>
51
- <language type="ia">interlingva</language>
52
- <language type="id">indonēziešu</language>
53
- <language type="ie">interlingue</language>
54
- <language type="is">islandiešu</language>
55
- <language type="it">itāliešu</language>
56
- <language type="ja">japāņu</language>
57
- <language type="jv">javiešu</language>
58
- <language type="ka">gruzīnu</language>
59
- <language type="km">khmeru</language>
60
- <language type="kn">kannada</language>
61
- <language type="ko">korejiešu</language>
62
- <language type="ku">kurdu</language>
63
- <language type="ky">kirgīzu</language>
64
- <language type="la">latīņu</language>
65
- <language type="ln">lingala</language>
66
- <language type="lo">laosiešu</language>
67
- <language type="lt">lietuviešu</language>
68
- <language type="lv">latviešu</language>
69
- <language type="mk">maķedoniešu</language>
70
- <language type="ml">malajalamiešu</language>
71
- <language type="mn">mongoļu</language>
72
- <language type="mr">maratu</language>
73
- <language type="ms">malajiešu</language>
74
- <language type="mt">maltiešu</language>
75
- <language type="ne">nepāliešu</language>
76
- <language type="nl">holandiešu</language>
77
- <language type="nn">norvēģu (Nynorsk)</language>
78
- <language type="no">norvēģu</language>
79
- <language type="oc">provansiešu</language>
80
- <language type="or">orisiešu</language>
81
- <language type="pa">pandžabu</language>
82
- <language type="pl">poļu</language>
83
- <language type="ps">puštu</language>
84
- <language type="pt">portugāļu</language>
85
- <language type="ro">rumāņu</language>
86
- <language type="ru">krievu</language>
87
- <language type="sa">sanskrita</language>
88
- <language type="sd">sindžu</language>
89
- <language type="sh">serbu-horvātu</language>
90
- <language type="si">sinhalīzu</language>
91
- <language type="sk">slovāku</language>
92
- <language type="sl">slovēņu</language>
93
- <language type="so">somāļu</language>
94
- <language type="sq">albāņu</language>
95
- <language type="sr">serbu</language>
96
- <language type="st">sesoto</language>
97
- <language type="su">sundaniešu</language>
98
- <language type="sv">zviedru</language>
99
- <language type="sw">svahilu</language>
100
- <language type="ta">tamilu</language>
101
- <language type="te">telugu</language>
102
- <language type="th">taju</language>
103
- <language type="ti">tigrinja</language>
104
- <language type="tk">turkmēņu</language>
105
- <language type="tl">tagalogu</language>
106
- <language type="tlh">klingoniešu</language>
107
- <language type="tr">turku</language>
108
- <language type="tw">čvī</language>
109
- <language type="ug">uighuru</language>
110
- <language type="uk">ukraiņu</language>
111
- <language type="und">nezināma vai nederīga valoda</language>
112
- <language type="ur">urdu</language>
113
- <language type="uz">uzbeku</language>
114
- <language type="vi">vjetnamiešu</language>
115
- <language type="xh">khosu</language>
116
- <language type="yi">ebreju (jidišs)</language>
117
- <language type="zh">ķīniešu</language>
118
- <language type="zh_Hans">ķīniešu vienkāršotā</language>
119
- <language type="zh_Hant">ķīniešu tradicionālā</language>
120
- <language type="zu">zulu</language>
121
- </languages>
122
- <scripts>
123
- <script type="Arab">arābu</script>
124
- <script type="Cyrl">kirilica</script>
125
- <script type="Latn">latīņu</script>
126
- <script type="Zxxx">Bez rakstības</script>
127
- <script type="Zzzz">Nezināma vai nederīga rakstība</script>
128
- </scripts>
129
- <territories>
130
- <territory type="172">Neatkarīgo Valstu Savienība</territory>
131
- <territory type="AD">Andora</territory>
132
- <territory type="AE">Apvienotie Arābu Emirāti</territory>
133
- <territory type="AF">Afganistāna</territory>
134
- <territory type="AG">Antigva un Barbuda</territory>
135
- <territory type="AI">Angilja</territory>
136
- <territory type="AL">Albānija</territory>
137
- <territory type="AM">Armēnija</territory>
138
- <territory type="AN">Antiļas</territory>
139
- <territory type="AO">Angola</territory>
140
- <territory type="AQ">Antarktika</territory>
141
- <territory type="AR">Argentīna</territory>
142
- <territory type="AS">Amerikāņu Samoa</territory>
143
- <territory type="AT">Austrija</territory>
144
- <territory type="AU">Austrālija</territory>
145
- <territory type="AW">Aruba</territory>
146
- <territory type="AX">Olandes salas</territory>
147
- <territory type="AZ">Azerbaidžāna</territory>
148
- <territory type="BA">Bosnija un Hercegovina</territory>
149
- <territory type="BB">Barbadosa</territory>
150
- <territory type="BD">Bangladeša</territory>
151
- <territory type="BE">Beļģija</territory>
152
- <territory type="BF">Burkinafaso</territory>
153
- <territory type="BG">Bulgārija</territory>
154
- <territory type="BH">Bahreina</territory>
155
- <territory type="BI">Burundi</territory>
156
- <territory type="BJ">Benina</territory>
157
- <territory type="BM">Bermudu salas</territory>
158
- <territory type="BN">Bruneja</territory>
159
- <territory type="BO">Bolīvija</territory>
160
- <territory type="BR">Brazīlija</territory>
161
- <territory type="BS">Bahamas</territory>
162
- <territory type="BT">Butāna</territory>
163
- <territory type="BV">Buvē sala</territory>
164
- <territory type="BW">Botsvāna</territory>
165
- <territory type="BY">Baltkrievija</territory>
166
- <territory type="BZ">Beliza</territory>
167
- <territory type="CA">Kanāda</territory>
168
- <territory type="CC">Kokosu (Kīlinga) salas</territory>
169
- <territory type="CD">Kongo Demokrātiskā Republika</territory>
170
- <territory type="CF">Centrālāfrikas Republika</territory>
171
- <territory type="CG">Kongo</territory>
172
- <territory type="CH">Šveice</territory>
173
- <territory type="CI">Kotdivuāra</territory>
174
- <territory type="CK">Kuka salas</territory>
175
- <territory type="CL">Čīle</territory>
176
- <territory type="CM">Kamerūna</territory>
177
- <territory type="CN">Ķīna</territory>
178
- <territory type="CO">Kolumbija</territory>
179
- <territory type="CR">Kostarika</territory>
180
- <territory type="CS">Serbija un Melnkalne</territory>
181
- <territory type="CU">Kuba</territory>
182
- <territory type="CV">Kaboverde</territory>
183
- <territory type="CX">Ziemsvētku sala</territory>
184
- <territory type="CY">Kipra</territory>
185
- <territory type="CZ">Čehija</territory>
186
- <territory type="DE">Vācija</territory>
187
- <territory type="DJ">Džibutija</territory>
188
- <territory type="DK">Dānija</territory>
189
- <territory type="DM">Dominika</territory>
190
- <territory type="DO">Dominikānas Republika</territory>
191
- <territory type="DZ">Alžīrija</territory>
192
- <territory type="EC">Ekvadora</territory>
193
- <territory type="EE">Igaunija</territory>
194
- <territory type="EG">Ēģipte</territory>
195
- <territory type="EH">Rietumsahāra</territory>
196
- <territory type="ER">Eritreja</territory>
197
- <territory type="ES">Spānija</territory>
198
- <territory type="ET">Etiopija</territory>
199
- <territory type="FI">Somija</territory>
200
- <territory type="FJ">Fidži</territory>
201
- <territory type="FK">Folklenda salas</territory>
202
- <territory type="FM">Mikronēzijas Federatīvās Valstis</territory>
203
- <territory type="FO">Farēru salas</territory>
204
- <territory type="FR">Francija</territory>
205
- <territory type="GA">Gabona</territory>
206
- <territory type="GB">Lielbritānija</territory>
207
- <territory type="GD">Grenāda</territory>
208
- <territory type="GE">Gruzija</territory>
209
- <territory type="GF">Franču Gviāna</territory>
210
- <territory type="GG">Gērnsija</territory>
211
- <territory type="GH">Gana</territory>
212
- <territory type="GI">Gibraltārs</territory>
213
- <territory type="GL">Grenlande</territory>
214
- <territory type="GM">Gambija</territory>
215
- <territory type="GN">Gvineja</territory>
216
- <territory type="GP">Gvadelupa</territory>
217
- <territory type="GQ">Ekvatoriālā Gvineja</territory>
218
- <territory type="GR">Grieķija</territory>
219
- <territory type="GS">Dienviddžordžija un Dienvidsendviču salas</territory>
220
- <territory type="GT">Gvatemala</territory>
221
- <territory type="GU">Guama</territory>
222
- <territory type="GW">Gvineja-Bisava</territory>
223
- <territory type="GY">Gajāna</territory>
224
- <territory type="HK">Honkonga, Ķīnas īpašās pārvaldes apgabals</territory>
225
- <territory type="HM">Hērda un Makdonalda salas</territory>
226
- <territory type="HN">Hondurasa</territory>
227
- <territory type="HR">Horvātija</territory>
228
- <territory type="HT">Haiti</territory>
229
- <territory type="HU">Ungārija</territory>
230
- <territory type="ID">Indonēzija</territory>
231
- <territory type="IE">Īrija</territory>
232
- <territory type="IL">Izraēla</territory>
233
- <territory type="IM">Mena</territory>
234
- <territory type="IN">Indija</territory>
235
- <territory type="IO">Britu Indijas okeāna teritorija</territory>
236
- <territory type="IQ">Irāka</territory>
237
- <territory type="IR">Irāna</territory>
238
- <territory type="IS">Islande</territory>
239
- <territory type="IT">Itālija</territory>
240
- <territory type="JE">Džērsija</territory>
241
- <territory type="JM">Jamaika</territory>
242
- <territory type="JO">Jordānija</territory>
243
- <territory type="JP">Japāna</territory>
244
- <territory type="KE">Kenija</territory>
245
- <territory type="KG">Kirgīzija</territory>
246
- <territory type="KH">Kambodža</territory>
247
- <territory type="KI">Kiribati</territory>
248
- <territory type="KM">Komoru salas</territory>
249
- <territory type="KN">Sentkitsa un Nevisa</territory>
250
- <territory type="KP">Ziemeļkoreja</territory>
251
- <territory type="KR">Dienvidkoreja</territory>
252
- <territory type="KW">Kuveita</territory>
253
- <territory type="KY">Kaimanu salas</territory>
254
- <territory type="KZ">Kazahstāna</territory>
255
- <territory type="LA">Laosa</territory>
256
- <territory type="LB">Libāna</territory>
257
- <territory type="LC">Sentlūsija</territory>
258
- <territory type="LI">Lihtenšteina</territory>
259
- <territory type="LK">Šrilanka</territory>
260
- <territory type="LR">Libērija</territory>
261
- <territory type="LS">Lesoto</territory>
262
- <territory type="LT">Lietuva</territory>
263
- <territory type="LU">Luksemburga</territory>
264
- <territory type="LV">Latvija</territory>
265
- <territory type="LY">Lībija</territory>
266
- <territory type="MA">Maroka</territory>
267
- <territory type="MC">Monako</territory>
268
- <territory type="MD">Moldova</territory>
269
- <territory type="ME">Melnkalne</territory>
270
- <territory type="MG">Madagaskara</territory>
271
- <territory type="MH">Māršala salas</territory>
272
- <territory type="MK">Maķedonija</territory>
273
- <territory type="ML">Mali</territory>
274
- <territory type="MM">Mjanma</territory>
275
- <territory type="MN">Mongolija</territory>
276
- <territory type="MO">Makao, Ķīnas īpašās pārvaldes apgabals</territory>
277
- <territory type="MP">Ziemeļu Marianas</territory>
278
- <territory type="MQ">Martinika</territory>
279
- <territory type="MR">Mauritānija</territory>
280
- <territory type="MS">Montserrata</territory>
281
- <territory type="MT">Malta</territory>
282
- <territory type="MU">Maurīcija</territory>
283
- <territory type="MV">Maldīvija</territory>
284
- <territory type="MW">Malāvija</territory>
285
- <territory type="MX">Meksika</territory>
286
- <territory type="MY">Malaizija</territory>
287
- <territory type="MZ">Mozambika</territory>
288
- <territory type="NA">Namībija</territory>
289
- <territory type="NC">Jaunkaledonija</territory>
290
- <territory type="NE">Nigēra</territory>
291
- <territory type="NF">Norfolka</territory>
292
- <territory type="NG">Nigērija</territory>
293
- <territory type="NI">Nikaragva</territory>
294
- <territory type="NL">Nīderlande</territory>
295
- <territory type="NO">Norvēģija</territory>
296
- <territory type="NP">Nepāla</territory>
297
- <territory type="NR">Nauru</territory>
298
- <territory type="NU">Niue</territory>
299
- <territory type="NZ">Jaunzēlande</territory>
300
- <territory type="OM">Omāna</territory>
301
- <territory type="PA">Panama</territory>
302
- <territory type="PE">Peru</territory>
303
- <territory type="PF">Franču Polinēzija</territory>
304
- <territory type="PG">Papua-Jaungvineja</territory>
305
- <territory type="PH">Filipīnas</territory>
306
- <territory type="PK">Pakistāna</territory>
307
- <territory type="PL">Polija</territory>
308
- <territory type="PM">Senpjēra un Mikelona</territory>
309
- <territory type="PN">Pitkērna</territory>
310
- <territory type="PR">Puertoriko</territory>
311
- <territory type="PS">Palestīniešu pašpārvaldes teritorija</territory>
312
- <territory type="PT">Portugāle</territory>
313
- <territory type="PW">Palau</territory>
314
- <territory type="PY">Paragvaja</territory>
315
- <territory type="QA">Katara</territory>
316
- <territory type="RE">Reinjona</territory>
317
- <territory type="RO">Rumānija</territory>
318
- <territory type="RS">Serbija</territory>
319
- <territory type="RU">Krievija</territory>
320
- <territory type="RW">Ruanda</territory>
321
- <territory type="SA">Saūda Arābija</territory>
322
- <territory type="SB">Zālamana salas</territory>
323
- <territory type="SC">Seišeļu salas</territory>
324
- <territory type="SD">Sudāna</territory>
325
- <territory type="SE">Zviedrija</territory>
326
- <territory type="SG">Singapūra</territory>
327
- <territory type="SH">Sv. Helēnas sala</territory>
328
- <territory type="SI">Slovēnija</territory>
329
- <territory type="SJ">Svalbāra un Jana Majena sala</territory>
330
- <territory type="SK">Slovākija</territory>
331
- <territory type="SL">Sjerraleone</territory>
332
- <territory type="SM">Sanmarīno</territory>
333
- <territory type="SN">Senegāla</territory>
334
- <territory type="SO">Somālija</territory>
335
- <territory type="SR">Surinama</territory>
336
- <territory type="ST">Santome un Prinsipi</territory>
337
- <territory type="SV">Salvadora</territory>
338
- <territory type="SY">Sīrija</territory>
339
- <territory type="SZ">Svazilenda</territory>
340
- <territory type="TC">Tērksas un Kaikosas salas</territory>
341
- <territory type="TD">Čada</territory>
342
- <territory type="TF">Franču dienvidu teritorijas</territory>
343
- <territory type="TG">Togo</territory>
344
- <territory type="TH">Taizeme</territory>
345
- <territory type="TJ">Tadžikistāna</territory>
346
- <territory type="TK">Tokelau</territory>
347
- <territory type="TL">Austrumtimora</territory>
348
- <territory type="TM">Turkmenistāna</territory>
349
- <territory type="TN">Tunisija</territory>
350
- <territory type="TO">Tonga</territory>
351
- <territory type="TR">Turcija</territory>
352
- <territory type="TT">Trinidāda un Tobāgo</territory>
353
- <territory type="TV">Tuvalu</territory>
354
- <territory type="TW">Taivāna</territory>
355
- <territory type="TZ">Tanzānija</territory>
356
- <territory type="UA">Ukraina</territory>
357
- <territory type="UG">Uganda</territory>
358
- <territory type="UM">ASV mazās aizjūras teritorijas</territory>
359
- <territory type="US">United States</territory>
360
- <territory type="UY">Urugvaja</territory>
361
- <territory type="UZ">Uzbekistāna</territory>
362
- <territory type="VA">Vatikāns</territory>
363
- <territory type="VC">Sentvinsenta un Grenadīnas</territory>
364
- <territory type="VE">Venecuēla</territory>
365
- <territory type="VG">Britu Virdžīnu salas</territory>
366
- <territory type="VI">Amerikāņu Virdžīnu salas</territory>
367
- <territory type="VN">Vjetnama</territory>
368
- <territory type="VU">Vanuatu</territory>
369
- <territory type="WF">Volisa un Futuna</territory>
370
- <territory type="WS">Samoa</territory>
371
- <territory type="YE">Jemena</territory>
372
- <territory type="YT">Majota</territory>
373
- <territory type="ZA">Dienvidāfrika</territory>
374
- <territory type="ZM">Zambija</territory>
375
- <territory type="ZW">Zimbabve</territory>
376
- <territory type="ZZ">Nezināms vai nederīgs reģions</territory>
377
- </territories>
378
- <keys>
379
- <key type="calendar">Kalendārs</key>
380
- <key type="collation">Šķirošana komplektos</key>
381
- <key type="currency">Valūta</key>
382
- </keys>
383
- <measurementSystemNames>
384
- <measurementSystemName type="US">britu</measurementSystemName>
385
- <measurementSystemName type="metric">metriskā</measurementSystemName>
386
- </measurementSystemNames>
387
- </localeDisplayNames>
388
- <characters>
389
- <exemplarCharacters>[a ā b c č d e ē f g ģ h i ī j k ķ l ļ m n ņ o p r s š t u ū v z ž]</exemplarCharacters>
390
- <exemplarCharacters type="auxiliary">[y q w x]</exemplarCharacters>
391
- </characters>
392
- <delimiters>
393
- <quotationStart>“</quotationStart>
394
- <quotationEnd>”</quotationEnd>
395
- <alternateQuotationStart>‘</alternateQuotationStart>
396
- <alternateQuotationEnd>’</alternateQuotationEnd>
397
- </delimiters>
398
- <dates>
399
- <localizedPatternChars>GanjkHmsSEDFwWxhKzAeugXZvcL</localizedPatternChars>
400
- <calendars>
401
- <calendar type="gregorian">
402
- <months>
403
- <monthContext type="format">
404
- <monthWidth type="abbreviated">
405
- <month type="1">Jan</month>
406
- <month type="2">Feb</month>
407
- <month type="3">Mar</month>
408
- <month type="4">Apr</month>
409
- <month type="5">Mai</month>
410
- <month type="6">Jūn</month>
411
- <month type="7">Jūl</month>
412
- <month type="8">Aug</month>
413
- <month type="9">Sep</month>
414
- <month type="10">Okt</month>
415
- <month type="11">Nov</month>
416
- <month type="12">Dec</month>
417
- </monthWidth>
418
- <monthWidth type="wide">
419
- <month type="1">janvāris</month>
420
- <month type="2">februāris</month>
421
- <month type="3">marts</month>
422
- <month type="4">aprīlis</month>
423
- <month type="5">maijs</month>
424
- <month type="6">jūnijs</month>
425
- <month type="7">jūlijs</month>
426
- <month type="8">augusts</month>
427
- <month type="9">septembris</month>
428
- <month type="10">oktobris</month>
429
- <month type="11">novembris</month>
430
- <month type="12">decembris</month>
431
- </monthWidth>
432
- </monthContext>
433
- <monthContext type="stand-alone">
434
- <monthWidth type="narrow">
435
- <month type="1">1</month>
436
- <month type="2">2</month>
437
- <month type="3">3</month>
438
- <month type="4">4</month>
439
- <month type="5">5</month>
440
- <month type="6">6</month>
441
- <month type="7">7</month>
442
- <month type="8">8</month>
443
- <month type="9">9</month>
444
- <month type="10">10</month>
445
- <month type="11">11</month>
446
- <month type="12">12</month>
447
- </monthWidth>
448
- </monthContext>
449
- </months>
450
- <days>
451
- <dayContext type="format">
452
- <dayWidth type="abbreviated">
453
- <day type="sun">Sv</day>
454
- <day type="mon">P</day>
455
- <day type="tue">O</day>
456
- <day type="wed">T</day>
457
- <day type="thu">C</day>
458
- <day type="fri">Pk</day>
459
- <day type="sat">S</day>
460
- </dayWidth>
461
- <dayWidth type="wide">
462
- <day type="sun">svētdiena</day>
463
- <day type="mon">pirmdiena</day>
464
- <day type="tue">otrdiena</day>
465
- <day type="wed">trešdiena</day>
466
- <day type="thu">ceturtdiena</day>
467
- <day type="fri">piektdiena</day>
468
- <day type="sat">sestdiena</day>
469
- </dayWidth>
470
- </dayContext>
471
- <dayContext type="stand-alone">
472
- <dayWidth type="abbreviated">
473
- <day type="mon">Pr</day>
474
- <day type="wed">Tr</day>
475
- <day type="thu">Ce</day>
476
- <day type="sat">Se</day>
477
- </dayWidth>
478
- <dayWidth type="narrow">
479
- <day type="sun">1</day>
480
- <day type="mon">2</day>
481
- <day type="tue">3</day>
482
- <day type="wed">4</day>
483
- <day type="thu">5</day>
484
- <day type="fri">6</day>
485
- <day type="sat">7</day>
486
- </dayWidth>
487
- </dayContext>
488
- </days>
489
- <quarters>
490
- <quarterContext type="format">
491
- <quarterWidth type="abbreviated">
492
- <quarter type="1">C1</quarter>
493
- <quarter type="2">C2</quarter>
494
- <quarter type="3">C3</quarter>
495
- <quarter type="4">C4</quarter>
496
- </quarterWidth>
497
- <quarterWidth type="wide">
498
- <quarter type="1">1. ceturksnis</quarter>
499
- <quarter type="2">2. ceturksnis</quarter>
500
- <quarter type="3">3. ceturksnis</quarter>
501
- <quarter type="4">4. ceturksnis</quarter>
502
- </quarterWidth>
503
- </quarterContext>
504
- </quarters>
505
- <am>AM</am>
506
- <pm>PM</pm>
507
- <eras>
508
- <eraNames>
509
- <era type="0">pirms mūsu ēras</era>
510
- <era type="1">mūsu ērā</era>
511
- </eraNames>
512
- <eraAbbr>
513
- <era type="0">pmē</era>
514
- <era type="1">mē</era>
515
- </eraAbbr>
516
- <eraNarrow>
517
- <era type="0">p.m.ē.</era>
518
- <era type="1">m.ē.</era>
519
- </eraNarrow>
520
- </eras>
521
- <dateFormats>
522
- <dateFormatLength type="full">
523
- <dateFormat>
524
- <pattern>EEEE, yyyy. 'gada' d. MMMM</pattern>
525
- </dateFormat>
526
- </dateFormatLength>
527
- <dateFormatLength type="long">
528
- <dateFormat>
529
- <pattern>yyyy. 'gada' d. MMMM</pattern>
530
- </dateFormat>
531
- </dateFormatLength>
532
- <dateFormatLength type="medium">
533
- <dateFormat>
534
- <pattern>yyyy.d.M</pattern>
535
- </dateFormat>
536
- </dateFormatLength>
537
- <dateFormatLength type="short">
538
- <dateFormat>
539
- <pattern>yy.d.M</pattern>
540
- </dateFormat>
541
- </dateFormatLength>
542
- </dateFormats>
543
- <timeFormats>
544
- <timeFormatLength type="full">
545
- <timeFormat>
546
- <pattern>HH:mm:ss v</pattern>
547
- </timeFormat>
548
- </timeFormatLength>
549
- <timeFormatLength type="long">
550
- <timeFormat>
551
- <pattern>HH:mm:ss z</pattern>
552
- </timeFormat>
553
- </timeFormatLength>
554
- <timeFormatLength type="medium">
555
- <timeFormat>
556
- <pattern>HH:mm:ss</pattern>
557
- </timeFormat>
558
- </timeFormatLength>
559
- <timeFormatLength type="short">
560
- <timeFormat>
561
- <pattern>HH:mm</pattern>
562
- </timeFormat>
563
- </timeFormatLength>
564
- </timeFormats>
565
- <dateTimeFormats>
566
- <dateTimeFormatLength>
567
- <dateTimeFormat>
568
- <pattern>{1} {0}</pattern>
569
- </dateTimeFormat>
570
- </dateTimeFormatLength>
571
- <availableFormats>
572
- <dateFormatItem id="Ed">E d</dateFormatItem>
573
- <dateFormatItem id="H">H</dateFormatItem>
574
- <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
575
- <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
576
- <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
577
- <dateFormatItem id="Md">d.M</dateFormatItem>
578
- <dateFormatItem id="mmss">mm:ss</dateFormatItem>
579
- <dateFormatItem id="yyQ">Q yy</dateFormatItem>
580
- <dateFormatItem id="yyyy">yyyy. 'g'.</dateFormatItem>
581
- </availableFormats>
582
- </dateTimeFormats>
583
- <fields>
584
- <field type="era">
585
- <displayName>Ēra</displayName>
586
- </field>
587
- <field type="year">
588
- <displayName>Gads</displayName>
589
- </field>
590
- <field type="month">
591
- <displayName>Mēnesis</displayName>
592
- </field>
593
- <field type="week">
594
- <displayName>Nedēļa</displayName>
595
- </field>
596
- <field type="day">
597
- <relative type="0">šodien</relative>
598
- <relative type="1">rīt</relative>
599
- <relative type="2">parīt</relative>
600
- <relative type="3">aizparīt</relative>
601
- <relative type="-1">vakar</relative>
602
- <relative type="-2">aizvakar</relative>
603
- </field>
604
- <field type="weekday">
605
- <displayName>Nedēļas diena</displayName>
606
- </field>
607
- <field type="hour">
608
- <displayName>Stundas</displayName>
609
- </field>
610
- <field type="minute">
611
- <displayName>Minūtes</displayName>
612
- </field>
613
- <field type="second">
614
- <displayName>Sekundes</displayName>
615
- </field>
616
- <field type="zone">
617
- <displayName>Josla</displayName>
618
- </field>
619
- </fields>
620
- </calendar>
621
- </calendars>
622
- <timeZoneNames>
623
- <hourFormat>+HH:mm;−HH:mm</hourFormat>
624
- <gmtFormat>GMT{0}</gmtFormat>
625
- <regionFormat>{0}</regionFormat>
626
- <zone type="Etc/Unknown">
627
- <exemplarCity>Nezināma</exemplarCity>
628
- </zone>
629
- <zone type="Europe/Andorra">
630
- <exemplarCity>Andora</exemplarCity>
631
- </zone>
632
- <zone type="Asia/Dubai">
633
- <exemplarCity>Dubaija</exemplarCity>
634
- </zone>
635
- <zone type="Asia/Kabul">
636
- <exemplarCity>Kabula</exemplarCity>
637
- </zone>
638
- <zone type="America/Antigua">
639
- <exemplarCity>Antigva</exemplarCity>
640
- </zone>
641
- <zone type="America/Anguilla">
642
- <exemplarCity>Angilja</exemplarCity>
643
- </zone>
644
- <zone type="Europe/Tirane">
645
- <exemplarCity>Tirāna</exemplarCity>
646
- </zone>
647
- <zone type="Asia/Yerevan">
648
- <exemplarCity>Erevāna</exemplarCity>
649
- </zone>
650
- <zone type="America/Curacao">
651
- <exemplarCity>Nīderlandes Antiļas</exemplarCity>
652
- </zone>
653
- <zone type="Antarctica/Rothera">
654
- <exemplarCity>Rotera</exemplarCity>
655
- </zone>
656
- <zone type="Antarctica/Palmer">
657
- <exemplarCity>Palmera</exemplarCity>
658
- </zone>
659
- <zone type="Antarctica/South_Pole">
660
- <exemplarCity>Dienvidpols</exemplarCity>
661
- </zone>
662
- <zone type="Antarctica/Syowa">
663
- <exemplarCity>Sjova</exemplarCity>
664
- </zone>
665
- <zone type="Antarctica/Mawson">
666
- <exemplarCity>Mavsona</exemplarCity>
667
- </zone>
668
- <zone type="Antarctica/Davis">
669
- <exemplarCity>Deivisa</exemplarCity>
670
- </zone>
671
- <zone type="Antarctica/Vostok">
672
- <exemplarCity>Vostoka</exemplarCity>
673
- </zone>
674
- <zone type="Antarctica/Casey">
675
- <exemplarCity>Kesija</exemplarCity>
676
- </zone>
677
- <zone type="Antarctica/DumontDUrville">
678
- <exemplarCity>Dumont D'Urville</exemplarCity>
679
- </zone>
680
- <zone type="Antarctica/McMurdo">
681
- <exemplarCity>Makmerdo</exemplarCity>
682
- </zone>
683
- <zone type="America/Buenos_Aires">
684
- <exemplarCity>Buenosairesa</exemplarCity>
685
- </zone>
686
- <zone type="Pacific/Pago_Pago">
687
- <exemplarCity>Pagopago</exemplarCity>
688
- </zone>
689
- <zone type="Europe/Vienna">
690
- <exemplarCity>Vīne</exemplarCity>
691
- </zone>
692
- <zone type="Australia/Adelaide">
693
- <exemplarCity>Adelaida</exemplarCity>
694
- </zone>
695
- <zone type="America/Barbados">
696
- <exemplarCity>Barbadosa</exemplarCity>
697
- </zone>
698
- <zone type="Asia/Dhaka">
699
- <exemplarCity>Daka</exemplarCity>
700
- </zone>
701
- <zone type="Europe/Brussels">
702
- <exemplarCity>Brisele</exemplarCity>
703
- </zone>
704
- <zone type="Africa/Ouagadougou">
705
- <exemplarCity>Vagadugu</exemplarCity>
706
- </zone>
707
- <zone type="Europe/Sofia">
708
- <exemplarCity>Sofija</exemplarCity>
709
- </zone>
710
- <zone type="Asia/Bahrain">
711
- <exemplarCity>Bahreina</exemplarCity>
712
- </zone>
713
- <zone type="Africa/Bujumbura">
714
- <exemplarCity>Bužumbura</exemplarCity>
715
- </zone>
716
- <zone type="Africa/Porto-Novo">
717
- <exemplarCity>Portonovo</exemplarCity>
718
- </zone>
719
- <zone type="Atlantic/Bermuda">
720
- <exemplarCity>Bermudu salas</exemplarCity>
721
- </zone>
722
- <zone type="Asia/Brunei">
723
- <exemplarCity>Bruneja</exemplarCity>
724
- </zone>
725
- <zone type="America/La_Paz">
726
- <exemplarCity>Lapasa</exemplarCity>
727
- </zone>
728
- <zone type="America/Rio_Branco">
729
- <exemplarCity>Riobranko</exemplarCity>
730
- </zone>
731
- <zone type="America/Porto_Velho">
732
- <exemplarCity>Portuvelju</exemplarCity>
733
- </zone>
734
- <zone type="America/Boa_Vista">
735
- <exemplarCity>Boavista</exemplarCity>
736
- </zone>
737
- <zone type="America/Manaus">
738
- <exemplarCity>Manausa</exemplarCity>
739
- </zone>
740
- <zone type="America/Cuiaba">
741
- <exemplarCity>Kujaba</exemplarCity>
742
- </zone>
743
- <zone type="America/Campo_Grande">
744
- <exemplarCity>Kampugrandi</exemplarCity>
745
- </zone>
746
- <zone type="America/Belem">
747
- <exemplarCity>Belena</exemplarCity>
748
- </zone>
749
- <zone type="America/Araguaina">
750
- <exemplarCity>Aragvaina</exemplarCity>
751
- </zone>
752
- <zone type="America/Sao_Paulo">
753
- <exemplarCity>Sanpaulu</exemplarCity>
754
- </zone>
755
- <zone type="America/Bahia">
756
- <exemplarCity>Brazīlija (Salvadora)</exemplarCity>
757
- </zone>
758
- <zone type="America/Maceio">
759
- <exemplarCity>Maseio</exemplarCity>
760
- </zone>
761
- <zone type="America/Recife">
762
- <exemplarCity>Resifi</exemplarCity>
763
- </zone>
764
- <zone type="America/Nassau">
765
- <exemplarCity>Naso</exemplarCity>
766
- </zone>
767
- <zone type="Asia/Thimphu">
768
- <exemplarCity>Timpu</exemplarCity>
769
- </zone>
770
- <zone type="Europe/Minsk">
771
- <exemplarCity>Minska</exemplarCity>
772
- </zone>
773
- <zone type="America/Belize">
774
- <exemplarCity>Beliza</exemplarCity>
775
- </zone>
776
- <zone type="Indian/Cocos">
777
- <exemplarCity>Kokosa</exemplarCity>
778
- </zone>
779
- <zone type="Africa/Kinshasa">
780
- <exemplarCity>Kinšasa</exemplarCity>
781
- </zone>
782
- <zone type="Africa/Lubumbashi">
783
- <exemplarCity>Lubumbaši</exemplarCity>
784
- </zone>
785
- <zone type="Africa/Bangui">
786
- <exemplarCity>Bangi</exemplarCity>
787
- </zone>
788
- <zone type="Africa/Brazzaville">
789
- <exemplarCity>Brazavila</exemplarCity>
790
- </zone>
791
- <zone type="Europe/Zurich">
792
- <exemplarCity>Cīrihe</exemplarCity>
793
- </zone>
794
- <zone type="Africa/Abidjan">
795
- <exemplarCity>Abidžana</exemplarCity>
796
- </zone>
797
- <zone type="Pacific/Easter">
798
- <exemplarCity>Lieldienu sala</exemplarCity>
799
- </zone>
800
- <zone type="America/Santiago">
801
- <exemplarCity>Santjago</exemplarCity>
802
- </zone>
803
- <zone type="Africa/Douala">
804
- <exemplarCity>Duala</exemplarCity>
805
- </zone>
806
- <zone type="America/Costa_Rica">
807
- <exemplarCity>Kostarika</exemplarCity>
808
- </zone>
809
- <zone type="America/Havana">
810
- <exemplarCity>Havanna</exemplarCity>
811
- </zone>
812
- <zone type="Atlantic/Cape_Verde">
813
- <exemplarCity>Kaboverde</exemplarCity>
814
- </zone>
815
- <zone type="Indian/Christmas">
816
- <exemplarCity>Ziemsvētku</exemplarCity>
817
- </zone>
818
- <zone type="Asia/Nicosia">
819
- <exemplarCity>Nikosija</exemplarCity>
820
- </zone>
821
- <zone type="Europe/Berlin">
822
- <exemplarCity>Berlīne</exemplarCity>
823
- </zone>
824
- <zone type="Africa/Djibouti">
825
- <exemplarCity>Džibutija</exemplarCity>
826
- </zone>
827
- <zone type="Europe/Copenhagen">
828
- <exemplarCity>Kopenhāgena</exemplarCity>
829
- </zone>
830
- <zone type="America/Dominica">
831
- <exemplarCity>Dominika</exemplarCity>
832
- </zone>
833
- <zone type="America/Santo_Domingo">
834
- <exemplarCity>Santodomingo</exemplarCity>
835
- </zone>
836
- <zone type="Africa/Algiers">
837
- <exemplarCity>Alžīra</exemplarCity>
838
- </zone>
839
- <zone type="Pacific/Galapagos">
840
- <exemplarCity>Galapagu salas</exemplarCity>
841
- </zone>
842
- <zone type="America/Guayaquil">
843
- <exemplarCity>Gvajakila</exemplarCity>
844
- </zone>
845
- <zone type="Europe/Tallinn">
846
- <exemplarCity>Tallina</exemplarCity>
847
- </zone>
848
- <zone type="Africa/Cairo">
849
- <exemplarCity>Kaira</exemplarCity>
850
- </zone>
851
- <zone type="Africa/El_Aaiun">
852
- <exemplarCity>Ajūna</exemplarCity>
853
- </zone>
854
- <zone type="Atlantic/Canary">
855
- <exemplarCity>Kanāriju salas</exemplarCity>
856
- </zone>
857
- <zone type="Africa/Ceuta">
858
- <exemplarCity>Seūta</exemplarCity>
859
- </zone>
860
- <zone type="Europe/Madrid">
861
- <exemplarCity>Madride</exemplarCity>
862
- </zone>
863
- <zone type="Africa/Addis_Ababa">
864
- <exemplarCity>Adisabeba</exemplarCity>
865
- </zone>
866
- <zone type="Pacific/Fiji">
867
- <exemplarCity>Fidži</exemplarCity>
868
- </zone>
869
- <zone type="Atlantic/Stanley">
870
- <exemplarCity>Stenlija</exemplarCity>
871
- </zone>
872
- <zone type="Pacific/Truk">
873
- <exemplarCity>Trūka</exemplarCity>
874
- </zone>
875
- <zone type="Atlantic/Faeroe">
876
- <exemplarCity>Farēru salas</exemplarCity>
877
- </zone>
878
- <zone type="Europe/Paris">
879
- <exemplarCity>Parīze</exemplarCity>
880
- </zone>
881
- <zone type="Africa/Libreville">
882
- <exemplarCity>Librevila</exemplarCity>
883
- </zone>
884
- <zone type="Europe/London">
885
- <exemplarCity>Londona</exemplarCity>
886
- </zone>
887
- <zone type="America/Grenada">
888
- <exemplarCity>Grenāda</exemplarCity>
889
- </zone>
890
- <zone type="America/Cayenne">
891
- <exemplarCity>Kajenna</exemplarCity>
892
- </zone>
893
- <zone type="Africa/Accra">
894
- <exemplarCity>Akra</exemplarCity>
895
- </zone>
896
- <zone type="Europe/Gibraltar">
897
- <exemplarCity>Gibraltārs</exemplarCity>
898
- </zone>
899
- <zone type="America/Thule">
900
- <exemplarCity>Tūle</exemplarCity>
901
- </zone>
902
- <zone type="America/Godthab">
903
- <exemplarCity>Nūka</exemplarCity>
904
- </zone>
905
- <zone type="America/Scoresbysund">
906
- <exemplarCity>Skoresbisunda</exemplarCity>
907
- </zone>
908
- <zone type="America/Danmarkshavn">
909
- <exemplarCity>Denmārkšavna</exemplarCity>
910
- </zone>
911
- <zone type="Africa/Banjul">
912
- <exemplarCity>Bandžula</exemplarCity>
913
- </zone>
914
- <zone type="Africa/Conakry">
915
- <exemplarCity>Konakri</exemplarCity>
916
- </zone>
917
- <zone type="America/Guadeloupe">
918
- <exemplarCity>Gvadelupa</exemplarCity>
919
- </zone>
920
- <zone type="Europe/Athens">
921
- <exemplarCity>Atēnas</exemplarCity>
922
- </zone>
923
- <zone type="Atlantic/South_Georgia">
924
- <exemplarCity>Dienviddžordžija</exemplarCity>
925
- </zone>
926
- <zone type="America/Guatemala">
927
- <exemplarCity>Gvatemala</exemplarCity>
928
- </zone>
929
- <zone type="Pacific/Guam">
930
- <exemplarCity>Guama</exemplarCity>
931
- </zone>
932
- <zone type="Africa/Bissau">
933
- <exemplarCity>Bisava</exemplarCity>
934
- </zone>
935
- <zone type="America/Guyana">
936
- <exemplarCity>Gajāna</exemplarCity>
937
- </zone>
938
- <zone type="Asia/Hong_Kong">
939
- <exemplarCity>Honkonga</exemplarCity>
940
- </zone>
941
- <zone type="America/Port-au-Prince">
942
- <exemplarCity>Portoprensa</exemplarCity>
943
- </zone>
944
- <zone type="Europe/Budapest">
945
- <exemplarCity>Budapešta</exemplarCity>
946
- </zone>
947
- <zone type="Asia/Jakarta">
948
- <exemplarCity>Džakarta</exemplarCity>
949
- </zone>
950
- <zone type="Asia/Makassar">
951
- <exemplarCity>Makasara</exemplarCity>
952
- </zone>
953
- <zone type="Asia/Jayapura">
954
- <exemplarCity>Džajapūra</exemplarCity>
955
- </zone>
956
- <zone type="Europe/Dublin">
957
- <exemplarCity>Dublina</exemplarCity>
958
- </zone>
959
- <zone type="Indian/Chagos">
960
- <exemplarCity>Čagosa</exemplarCity>
961
- </zone>
962
- <zone type="Asia/Baghdad">
963
- <exemplarCity>Bagdāde</exemplarCity>
964
- </zone>
965
- <zone type="Asia/Tehran">
966
- <exemplarCity>Teherāna</exemplarCity>
967
- </zone>
968
- <zone type="Atlantic/Reykjavik">
969
- <exemplarCity>Reikjavīka</exemplarCity>
970
- </zone>
971
- <zone type="Europe/Rome">
972
- <exemplarCity>Roma</exemplarCity>
973
- </zone>
974
- <zone type="America/Jamaica">
975
- <exemplarCity>Jamaika</exemplarCity>
976
- </zone>
977
- <zone type="Asia/Amman">
978
- <exemplarCity>Ammāna</exemplarCity>
979
- </zone>
980
- <zone type="Asia/Tokyo">
981
- <exemplarCity>Tokija</exemplarCity>
982
- </zone>
983
- <zone type="Asia/Bishkek">
984
- <exemplarCity>Biškeka</exemplarCity>
985
- </zone>
986
- <zone type="Asia/Phnom_Penh">
987
- <exemplarCity>Pnompeņa</exemplarCity>
988
- </zone>
989
- <zone type="Pacific/Enderbury">
990
- <exemplarCity>Enderburija</exemplarCity>
991
- </zone>
992
- <zone type="Pacific/Tarawa">
993
- <exemplarCity>Tarava</exemplarCity>
994
- </zone>
995
- <zone type="Indian/Comoro">
996
- <exemplarCity>Komoru</exemplarCity>
997
- </zone>
998
- <zone type="America/St_Kitts">
999
- <exemplarCity>Sentkitsa</exemplarCity>
1000
- </zone>
1001
- <zone type="Asia/Pyongyang">
1002
- <exemplarCity>Phenjana</exemplarCity>
1003
- </zone>
1004
- <zone type="Asia/Seoul">
1005
- <exemplarCity>Seula</exemplarCity>
1006
- </zone>
1007
- <zone type="Asia/Kuwait">
1008
- <exemplarCity>Kuveita</exemplarCity>
1009
- </zone>
1010
- <zone type="America/Cayman">
1011
- <exemplarCity>Kaimanu Salas</exemplarCity>
1012
- </zone>
1013
- <zone type="Asia/Aqtau">
1014
- <exemplarCity>Aktau</exemplarCity>
1015
- </zone>
1016
- <zone type="Asia/Aqtobe">
1017
- <exemplarCity>Aktobe</exemplarCity>
1018
- </zone>
1019
- <zone type="Asia/Almaty">
1020
- <exemplarCity>Almati</exemplarCity>
1021
- </zone>
1022
- <zone type="Asia/Vientiane">
1023
- <exemplarCity>Vjangčana</exemplarCity>
1024
- </zone>
1025
- <zone type="Asia/Beirut">
1026
- <exemplarCity>Beirūta</exemplarCity>
1027
- </zone>
1028
- <zone type="America/St_Lucia">
1029
- <exemplarCity>Sentlūsija</exemplarCity>
1030
- </zone>
1031
- <zone type="Europe/Vaduz">
1032
- <exemplarCity>Vaduca</exemplarCity>
1033
- </zone>
1034
- <zone type="Asia/Colombo">
1035
- <exemplarCity>Kolombo</exemplarCity>
1036
- </zone>
1037
- <zone type="Africa/Monrovia">
1038
- <exemplarCity>Monrovija</exemplarCity>
1039
- </zone>
1040
- <zone type="Europe/Vilnius">
1041
- <exemplarCity>Viļņa</exemplarCity>
1042
- </zone>
1043
- <zone type="Europe/Luxembourg">
1044
- <exemplarCity>Luksemburga</exemplarCity>
1045
- </zone>
1046
- <zone type="Europe/Riga">
1047
- <exemplarCity>Rīga</exemplarCity>
1048
- </zone>
1049
- <zone type="Africa/Tripoli">
1050
- <exemplarCity>Tripole</exemplarCity>
1051
- </zone>
1052
- <zone type="Africa/Casablanca">
1053
- <exemplarCity>Kasablanka</exemplarCity>
1054
- </zone>
1055
- <zone type="Europe/Monaco">
1056
- <exemplarCity>Monako</exemplarCity>
1057
- </zone>
1058
- <zone type="Europe/Chisinau">
1059
- <exemplarCity>Kišiņeva</exemplarCity>
1060
- </zone>
1061
- <zone type="Indian/Antananarivo">
1062
- <exemplarCity>Antananarivu</exemplarCity>
1063
- </zone>
1064
- <zone type="Pacific/Majuro">
1065
- <exemplarCity>Madžuro</exemplarCity>
1066
- </zone>
1067
- <zone type="Asia/Rangoon">
1068
- <exemplarCity>Jangona</exemplarCity>
1069
- </zone>
1070
- <zone type="Asia/Hovd">
1071
- <exemplarCity>Hovda</exemplarCity>
1072
- </zone>
1073
- <zone type="Asia/Ulaanbaatar">
1074
- <exemplarCity>Ulanbatora</exemplarCity>
1075
- </zone>
1076
- <zone type="Asia/Choibalsan">
1077
- <exemplarCity>Čoibalsana</exemplarCity>
1078
- </zone>
1079
- <zone type="Asia/Macau">
1080
- <exemplarCity>Makao</exemplarCity>
1081
- </zone>
1082
- <zone type="Pacific/Saipan">
1083
- <exemplarCity>Saipana</exemplarCity>
1084
- </zone>
1085
- <zone type="America/Martinique">
1086
- <exemplarCity>Martinika</exemplarCity>
1087
- </zone>
1088
- <zone type="Africa/Nouakchott">
1089
- <exemplarCity>Nuakšota</exemplarCity>
1090
- </zone>
1091
- <zone type="America/Montserrat">
1092
- <exemplarCity>Montserrata</exemplarCity>
1093
- </zone>
1094
- <zone type="Indian/Mauritius">
1095
- <exemplarCity>Maurīcija</exemplarCity>
1096
- </zone>
1097
- <zone type="Indian/Maldives">
1098
- <exemplarCity>Maldīvija</exemplarCity>
1099
- </zone>
1100
- <zone type="Africa/Blantyre">
1101
- <exemplarCity>Blantaira</exemplarCity>
1102
- </zone>
1103
- <zone type="Asia/Kuala_Lumpur">
1104
- <exemplarCity>Kualalumpura</exemplarCity>
1105
- </zone>
1106
- <zone type="Africa/Windhoek">
1107
- <exemplarCity>Vindhuka</exemplarCity>
1108
- </zone>
1109
- <zone type="Pacific/Noumea">
1110
- <exemplarCity>Numea</exemplarCity>
1111
- </zone>
1112
- <zone type="Africa/Niamey">
1113
- <exemplarCity>Niameja</exemplarCity>
1114
- </zone>
1115
- <zone type="Pacific/Norfolk">
1116
- <exemplarCity>Norfolka</exemplarCity>
1117
- </zone>
1118
- <zone type="Africa/Lagos">
1119
- <exemplarCity>Lagosa</exemplarCity>
1120
- </zone>
1121
- <zone type="America/Managua">
1122
- <exemplarCity>Managva</exemplarCity>
1123
- </zone>
1124
- <zone type="Europe/Amsterdam">
1125
- <exemplarCity>Amsterdama</exemplarCity>
1126
- </zone>
1127
- <zone type="Pacific/Auckland">
1128
- <exemplarCity>Oklenda</exemplarCity>
1129
- </zone>
1130
- <zone type="Asia/Muscat">
1131
- <exemplarCity>Muskata</exemplarCity>
1132
- </zone>
1133
- <zone type="Pacific/Tahiti">
1134
- <exemplarCity>Taiti</exemplarCity>
1135
- </zone>
1136
- <zone type="Pacific/Marquesas">
1137
- <exemplarCity>Markvesa</exemplarCity>
1138
- </zone>
1139
- <zone type="Pacific/Gambier">
1140
- <exemplarCity>Gambjera</exemplarCity>
1141
- </zone>
1142
- <zone type="Pacific/Port_Moresby">
1143
- <exemplarCity>Portmorsbi</exemplarCity>
1144
- </zone>
1145
- <zone type="Asia/Karachi">
1146
- <exemplarCity>Karači</exemplarCity>
1147
- </zone>
1148
- <zone type="Europe/Warsaw">
1149
- <exemplarCity>Varšava</exemplarCity>
1150
- </zone>
1151
- <zone type="America/Miquelon">
1152
- <exemplarCity>Mikelona</exemplarCity>
1153
- </zone>
1154
- <zone type="Pacific/Pitcairn">
1155
- <exemplarCity>Pitkērna</exemplarCity>
1156
- </zone>
1157
- <zone type="America/Puerto_Rico">
1158
- <exemplarCity>Puertoriko</exemplarCity>
1159
- </zone>
1160
- <zone type="Atlantic/Azores">
1161
- <exemplarCity>Azoru salas</exemplarCity>
1162
- </zone>
1163
- <zone type="Europe/Lisbon">
1164
- <exemplarCity>Lisabona</exemplarCity>
1165
- </zone>
1166
- <zone type="America/Asuncion">
1167
- <exemplarCity>Asunsjona</exemplarCity>
1168
- </zone>
1169
- <zone type="Asia/Qatar">
1170
- <exemplarCity>Katara</exemplarCity>
1171
- </zone>
1172
- <zone type="Indian/Reunion">
1173
- <exemplarCity>Reinjona</exemplarCity>
1174
- </zone>
1175
- <zone type="Europe/Bucharest">
1176
- <exemplarCity>Bukareste</exemplarCity>
1177
- </zone>
1178
- <zone type="Asia/Anadyr">
1179
- <exemplarCity>Anadira</exemplarCity>
1180
- </zone>
1181
- <zone type="Asia/Riyadh">
1182
- <exemplarCity>Rijāda</exemplarCity>
1183
- </zone>
1184
- <zone type="Pacific/Guadalcanal">
1185
- <exemplarCity>Gvadelkanāla</exemplarCity>
1186
- </zone>
1187
- <zone type="Africa/Khartoum">
1188
- <exemplarCity>Hartūma</exemplarCity>
1189
- </zone>
1190
- <zone type="Europe/Stockholm">
1191
- <exemplarCity>Stokholma</exemplarCity>
1192
- </zone>
1193
- <zone type="Asia/Singapore">
1194
- <exemplarCity>Singapūra</exemplarCity>
1195
- </zone>
1196
- <zone type="Atlantic/St_Helena">
1197
- <exemplarCity>Sv. Helēna</exemplarCity>
1198
- </zone>
1199
- <zone type="Africa/Freetown">
1200
- <exemplarCity>Frītauna</exemplarCity>
1201
- </zone>
1202
- <zone type="Africa/Dakar">
1203
- <exemplarCity>Dakāra</exemplarCity>
1204
- </zone>
1205
- <zone type="Africa/Mogadishu">
1206
- <exemplarCity>Mogadīšo</exemplarCity>
1207
- </zone>
1208
- <zone type="Africa/Sao_Tome">
1209
- <exemplarCity>Santome</exemplarCity>
1210
- </zone>
1211
- <zone type="America/El_Salvador">
1212
- <exemplarCity>Salvadora</exemplarCity>
1213
- </zone>
1214
- <zone type="Asia/Damascus">
1215
- <exemplarCity>Damaska</exemplarCity>
1216
- </zone>
1217
- <zone type="America/Grand_Turk">
1218
- <exemplarCity>Grendturka</exemplarCity>
1219
- </zone>
1220
- <zone type="Africa/Ndjamena">
1221
- <exemplarCity>Ndžamena</exemplarCity>
1222
- </zone>
1223
- <zone type="Indian/Kerguelen">
1224
- <exemplarCity>Kergvelena</exemplarCity>
1225
- </zone>
1226
- <zone type="Asia/Bangkok">
1227
- <exemplarCity>Bangkoka</exemplarCity>
1228
- </zone>
1229
- <zone type="Asia/Dushanbe">
1230
- <exemplarCity>Dušanbe</exemplarCity>
1231
- </zone>
1232
- <zone type="Asia/Ashgabat">
1233
- <exemplarCity>Ašgabata</exemplarCity>
1234
- </zone>
1235
- <zone type="Africa/Tunis">
1236
- <exemplarCity>Tunisa</exemplarCity>
1237
- </zone>
1238
- <zone type="Europe/Istanbul">
1239
- <exemplarCity>Istanbula</exemplarCity>
1240
- </zone>
1241
- <zone type="America/Port_of_Spain">
1242
- <exemplarCity>Portofspeina</exemplarCity>
1243
- </zone>
1244
- <zone type="Asia/Taipei">
1245
- <exemplarCity>Taipeja</exemplarCity>
1246
- </zone>
1247
- <zone type="Africa/Dar_es_Salaam">
1248
- <exemplarCity>Dāresalāma</exemplarCity>
1249
- </zone>
1250
- <zone type="Europe/Kiev">
1251
- <exemplarCity>Kijeva</exemplarCity>
1252
- </zone>
1253
- <zone type="Pacific/Midway">
1254
- <exemplarCity>Midveja</exemplarCity>
1255
- </zone>
1256
- <zone type="Pacific/Johnston">
1257
- <exemplarCity>Džonstauna</exemplarCity>
1258
- </zone>
1259
- <zone type="Pacific/Wake">
1260
- <exemplarCity>Veika</exemplarCity>
1261
- </zone>
1262
- <zone type="America/Anchorage">
1263
- <exemplarCity>Aļaskas laiks</exemplarCity>
1264
- </zone>
1265
- <zone type="America/Los_Angeles">
1266
- <exemplarCity>Losandželosa</exemplarCity>
1267
- </zone>
1268
- <zone type="America/Phoenix">
1269
- <exemplarCity>Fīniksa</exemplarCity>
1270
- </zone>
1271
- <zone type="America/Denver">
1272
- <exemplarCity>Denvera</exemplarCity>
1273
- </zone>
1274
- <zone type="America/Chicago">
1275
- <exemplarCity>Čikāga</exemplarCity>
1276
- </zone>
1277
- <zone type="America/Indianapolis">
1278
- <exemplarCity>Indianapolisa</exemplarCity>
1279
- </zone>
1280
- <zone type="America/New_York">
1281
- <exemplarCity>Ņujorka</exemplarCity>
1282
- </zone>
1283
- <zone type="Asia/Tashkent">
1284
- <exemplarCity>Taškenta</exemplarCity>
1285
- </zone>
1286
- <zone type="America/St_Vincent">
1287
- <exemplarCity>Sentvinsenta</exemplarCity>
1288
- </zone>
1289
- <zone type="America/Caracas">
1290
- <exemplarCity>Karakasa</exemplarCity>
1291
- </zone>
1292
- <zone type="America/St_Thomas">
1293
- <exemplarCity>Senttomasa</exemplarCity>
1294
- </zone>
1295
- <zone type="Asia/Saigon">
1296
- <exemplarCity>Hošimina</exemplarCity>
1297
- </zone>
1298
- <zone type="Pacific/Wallis">
1299
- <exemplarCity>Vallisa</exemplarCity>
1300
- </zone>
1301
- <zone type="Asia/Aden">
1302
- <exemplarCity>Adena</exemplarCity>
1303
- </zone>
1304
- <zone type="Indian/Mayotte">
1305
- <exemplarCity>Majota</exemplarCity>
1306
- </zone>
1307
- <zone type="Africa/Johannesburg">
1308
- <exemplarCity>Johannesburga</exemplarCity>
1309
- </zone>
1310
- </timeZoneNames>
1311
- </dates>
1312
- <numbers>
1313
- <symbols>
1314
- <decimal>,</decimal>
1315
- <group> </group>
1316
- </symbols>
1317
- <decimalFormats>
1318
- <decimalFormatLength>
1319
- <decimalFormat>
1320
- <pattern>#,##0.###</pattern>
1321
- </decimalFormat>
1322
- </decimalFormatLength>
1323
- </decimalFormats>
1324
- <percentFormats>
1325
- <percentFormatLength>
1326
- <percentFormat>
1327
- <pattern>#,##0%</pattern>
1328
- </percentFormat>
1329
- </percentFormatLength>
1330
- </percentFormats>
1331
- <currencyFormats>
1332
- <currencyFormatLength>
1333
- <currencyFormat>
1334
- <pattern>#,##0.00 ¤</pattern>
1335
- </currencyFormat>
1336
- </currencyFormatLength>
1337
- </currencyFormats>
1338
- <currencies>
1339
- <currency type="AED">
1340
- <displayName>Apvienoto Arābu Emirātu dirhēms</displayName>
1341
- </currency>
1342
- <currency type="ARS">
1343
- <displayName>Argentīnas peso</displayName>
1344
- </currency>
1345
- <currency type="AUD">
1346
- <displayName>Austrālijas dolārs</displayName>
1347
- </currency>
1348
- <currency type="BGN">
1349
- <displayName>Bulgārijas leva</displayName>
1350
- </currency>
1351
- <currency type="BND">
1352
- <displayName>Brunejas dolārs</displayName>
1353
- </currency>
1354
- <currency type="BOB">
1355
- <displayName>Bolīvijas boliviano</displayName>
1356
- </currency>
1357
- <currency type="BRL">
1358
- <displayName>Brazīlijas reāls</displayName>
1359
- </currency>
1360
- <currency type="CAD">
1361
- <displayName>Kanādas dolārs</displayName>
1362
- </currency>
1363
- <currency type="CHF">
1364
- <displayName>Šveices franks</displayName>
1365
- </currency>
1366
- <currency type="CLP">
1367
- <displayName>Čīles peso</displayName>
1368
- </currency>
1369
- <currency type="CNY">
1370
- <displayName>Ķīnas juana</displayName>
1371
- </currency>
1372
- <currency type="COP">
1373
- <displayName>Kolumbijas peso</displayName>
1374
- </currency>
1375
- <currency type="CZK">
1376
- <displayName>Čehijas krona</displayName>
1377
- </currency>
1378
- <currency type="DEM">
1379
- <displayName>Vācijas marka</displayName>
1380
- </currency>
1381
- <currency type="DKK">
1382
- <displayName>Dānijas krona</displayName>
1383
- </currency>
1384
- <currency type="EEK">
1385
- <displayName>Igaunijas krona</displayName>
1386
- </currency>
1387
- <currency type="EGP">
1388
- <displayName>Ēģiptes mārciņa</displayName>
1389
- </currency>
1390
- <currency type="EUR">
1391
- <displayName>Eiro</displayName>
1392
- <symbol>€</symbol>
1393
- </currency>
1394
- <currency type="FJD">
1395
- <displayName>Fidži dolārs</displayName>
1396
- </currency>
1397
- <currency type="FRF">
1398
- <displayName>Francijas franks</displayName>
1399
- </currency>
1400
- <currency type="GBP">
1401
- <displayName>Lielbritānijas sterliņu mārciņa</displayName>
1402
- </currency>
1403
- <currency type="HKD">
1404
- <displayName>Honkongas dolārs</displayName>
1405
- </currency>
1406
- <currency type="HRK">
1407
- <displayName>Horvātijas kuna</displayName>
1408
- </currency>
1409
- <currency type="HUF">
1410
- <displayName>Ungārijas forints</displayName>
1411
- </currency>
1412
- <currency type="IDR">
1413
- <displayName>Indonēzijas rūpija</displayName>
1414
- </currency>
1415
- <currency type="ILS">
1416
- <displayName>Izraēlas šekelis</displayName>
1417
- </currency>
1418
- <currency type="INR">
1419
- <displayName>Indijas rūpija</displayName>
1420
- </currency>
1421
- <currency type="JPY">
1422
- <displayName>Japānas jena</displayName>
1423
- </currency>
1424
- <currency type="KES">
1425
- <displayName>Kenijas šiliņš</displayName>
1426
- </currency>
1427
- <currency type="KRW">
1428
- <displayName>Dienvidkorejas vona</displayName>
1429
- </currency>
1430
- <currency type="LTL">
1431
- <displayName>Lietuvas lits</displayName>
1432
- </currency>
1433
- <currency type="LVL">
1434
- <symbol>Ls</symbol>
1435
- </currency>
1436
- <currency type="MAD">
1437
- <displayName>Marokas dirhēms</displayName>
1438
- </currency>
1439
- <currency type="MTL">
1440
- <displayName>Maltas lira</displayName>
1441
- </currency>
1442
- <currency type="MXN">
1443
- <displayName>Meksikas peso</displayName>
1444
- </currency>
1445
- <currency type="MYR">
1446
- <displayName>Malaizijas ringits</displayName>
1447
- </currency>
1448
- <currency type="NOK">
1449
- <displayName>Norvēģijas krona</displayName>
1450
- </currency>
1451
- <currency type="NZD">
1452
- <displayName>Jaunzēlandes dolārs</displayName>
1453
- </currency>
1454
- <currency type="PEN">
1455
- <displayName>Peru jaunais sols</displayName>
1456
- </currency>
1457
- <currency type="PHP">
1458
- <displayName>Filipīnu peso</displayName>
1459
- </currency>
1460
- <currency type="PKR">
1461
- <displayName>Pakistānas rūpija</displayName>
1462
- </currency>
1463
- <currency type="PLN">
1464
- <displayName>Polijas zlots</displayName>
1465
- </currency>
1466
- <currency type="RON">
1467
- <displayName>Rumānijas leja</displayName>
1468
- </currency>
1469
- <currency type="RSD">
1470
- <displayName>Serbijas dinārs</displayName>
1471
- </currency>
1472
- <currency type="RUB">
1473
- <displayName>Krievijas rublis</displayName>
1474
- </currency>
1475
- <currency type="SAR">
1476
- <displayName>Saūda riāls</displayName>
1477
- </currency>
1478
- <currency type="SEK">
1479
- <displayName>Zviedrijas krona</displayName>
1480
- </currency>
1481
- <currency type="SGD">
1482
- <displayName>Singapūras dolārs</displayName>
1483
- </currency>
1484
- <currency type="SIT">
1485
- <displayName>Slovēnijas tolars</displayName>
1486
- </currency>
1487
- <currency type="SKK">
1488
- <displayName>Slovakijas krona</displayName>
1489
- </currency>
1490
- <currency type="THB">
1491
- <displayName>Taizemes bāts</displayName>
1492
- </currency>
1493
- <currency type="TRL">
1494
- <displayName>Turcijas lira</displayName>
1495
- </currency>
1496
- <currency type="TRY">
1497
- <displayName>Jaunā Turcijas lira</displayName>
1498
- </currency>
1499
- <currency type="TWD">
1500
- <displayName>Jaunais Taivānas dolārs</displayName>
1501
- </currency>
1502
- <currency type="UAH">
1503
- <displayName>Ukrainas grivna</displayName>
1504
- </currency>
1505
- <currency type="USD">
1506
- <displayName>ASV dolārs</displayName>
1507
- </currency>
1508
- <currency type="VEB">
1509
- <displayName>Venecuēlas bolivārs</displayName>
1510
- </currency>
1511
- <currency type="VND">
1512
- <displayName>Vjetnamas dongi</displayName>
1513
- </currency>
1514
- <currency type="XXX">
1515
- <displayName>Nezināma vai nederīga valūta</displayName>
1516
- <symbol>XXX</symbol>
1517
- </currency>
1518
- <currency type="ZAR">
1519
- <displayName>Dienvidāfrikas rands</displayName>
1520
- </currency>
1521
- </currencies>
1522
- </numbers>
1523
- <posix>
1524
- <messages>
1525
- <yesstr>jā:ja:j</yesstr>
1526
- <nostr>nē:ne:n</nostr>
1527
- </messages>
1528
- </posix>
1529
- </ldml>
 
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <!DOCTYPE ldml SYSTEM "http://www.unicode.org/cldr/dtd/1.5/ldml.dtd">
3
+ <ldml>
4
+ <identity>
5
+ <version number="$Revision: 1.70 $"/>
6
+ <generation date="$Date: 2007/07/19 23:40:49 $"/>
7
+ <language type="lv"/>
8
+ </identity>
9
+ <localeDisplayNames>
10
+ <languages>
11
+ <language type="af">afrikāņu</language>
12
+ <language type="am">amharu</language>
13
+ <language type="ar">arābu</language>
14
+ <language type="as">asamiešu</language>
15
+ <language type="az">azerbaidžāņu</language>
16
+ <language type="be">baltkrievu</language>
17
+ <language type="bg">bulgāru</language>
18
+ <language type="bh">biharu</language>
19
+ <language type="bn">bengāļu</language>
20
+ <language type="br">bretoņu</language>
21
+ <language type="bs">bosniešu</language>
22
+ <language type="ca">katalāņu</language>
23
+ <language type="cs">čehu</language>
24
+ <language type="cy">velsiešu</language>
25
+ <language type="da">dāņu</language>
26
+ <language type="de">vācu</language>
27
+ <language type="el">grieķu</language>
28
+ <language type="en">angļu</language>
29
+ <language type="en_US">angļu (ASV)</language>
30
+ <language type="eo">esperanto</language>
31
+ <language type="es">spāņu</language>
32
+ <language type="es_419">spāņu (Latīņamerika)</language>
33
+ <language type="et">igauņu</language>
34
+ <language type="eu">basku</language>
35
+ <language type="fa">persiešu</language>
36
+ <language type="fi">somu</language>
37
+ <language type="fil">tagalu</language>
38
+ <language type="fo">faroisu</language>
39
+ <language type="fr">franču</language>
40
+ <language type="fy">frīzu</language>
41
+ <language type="ga">īru</language>
42
+ <language type="gd">skotu-ķeltu</language>
43
+ <language type="gl">galisiešu</language>
44
+ <language type="gn">gvaranu</language>
45
+ <language type="gu">gudžaratu</language>
46
+ <language type="he">ivrits</language>
47
+ <language type="hi">hindi</language>
48
+ <language type="hr">horvātu</language>
49
+ <language type="hu">ungāru</language>
50
+ <language type="hy">armēņu</language>
51
+ <language type="ia">interlingva</language>
52
+ <language type="id">indonēziešu</language>
53
+ <language type="ie">interlingue</language>
54
+ <language type="is">islandiešu</language>
55
+ <language type="it">itāliešu</language>
56
+ <language type="ja">japāņu</language>
57
+ <language type="jv">javiešu</language>
58
+ <language type="ka">gruzīnu</language>
59
+ <language type="km">khmeru</language>
60
+ <language type="kn">kannada</language>
61
+ <language type="ko">korejiešu</language>
62
+ <language type="ku">kurdu</language>
63
+ <language type="ky">kirgīzu</language>
64
+ <language type="la">latīņu</language>
65
+ <language type="ln">lingala</language>
66
+ <language type="lo">laosiešu</language>
67
+ <language type="lt">lietuviešu</language>
68
+ <language type="lv">latviešu</language>
69
+ <language type="mk">maķedoniešu</language>
70
+ <language type="ml">malajalamiešu</language>
71
+ <language type="mn">mongoļu</language>
72
+ <language type="mr">maratu</language>
73
+ <language type="ms">malajiešu</language>
74
+ <language type="mt">maltiešu</language>
75
+ <language type="ne">nepāliešu</language>
76
+ <language type="nl">holandiešu</language>
77
+ <language type="nn">norvēģu (Nynorsk)</language>
78
+ <language type="no">norvēģu</language>
79
+ <language type="oc">provansiešu</language>
80
+ <language type="or">orisiešu</language>
81
+ <language type="pa">pandžabu</language>
82
+ <language type="pl">poļu</language>
83
+ <language type="ps">puštu</language>
84
+ <language type="pt">portugāļu</language>
85
+ <language type="ro">rumāņu</language>
86
+ <language type="ru">krievu</language>
87
+ <language type="sa">sanskrita</language>
88
+ <language type="sd">sindžu</language>
89
+ <language type="sh">serbu-horvātu</language>
90
+ <language type="si">sinhalīzu</language>
91
+ <language type="sk">slovāku</language>
92
+ <language type="sl">slovēņu</language>
93
+ <language type="so">somāļu</language>
94
+ <language type="sq">albāņu</language>
95
+ <language type="sr">serbu</language>
96
+ <language type="st">sesoto</language>
97
+ <language type="su">sundaniešu</language>
98
+ <language type="sv">zviedru</language>
99
+ <language type="sw">svahilu</language>
100
+ <language type="ta">tamilu</language>
101
+ <language type="te">telugu</language>
102
+ <language type="th">taju</language>
103
+ <language type="ti">tigrinja</language>
104
+ <language type="tk">turkmēņu</language>
105
+ <language type="tl">tagalogu</language>
106
+ <language type="tlh">klingoniešu</language>
107
+ <language type="tr">turku</language>
108
+ <language type="tw">čvī</language>
109
+ <language type="ug">uighuru</language>
110
+ <language type="uk">ukraiņu</language>
111
+ <language type="und">nezināma vai nederīga valoda</language>
112
+ <language type="ur">urdu</language>
113
+ <language type="uz">uzbeku</language>
114
+ <language type="vi">vjetnamiešu</language>
115
+ <language type="xh">khosu</language>
116
+ <language type="yi">ebreju (jidišs)</language>
117
+ <language type="zh">ķīniešu</language>
118
+ <language type="zh_Hans">ķīniešu vienkāršotā</language>
119
+ <language type="zh_Hant">ķīniešu tradicionālā</language>
120
+ <language type="zu">zulu</language>
121
+ </languages>
122
+ <scripts>
123
+ <script type="Arab">arābu</script>
124
+ <script type="Cyrl">kirilica</script>
125
+ <script type="Latn">latīņu</script>
126
+ <script type="Zxxx">Bez rakstības</script>
127
+ <script type="Zzzz">Nezināma vai nederīga rakstība</script>
128
+ </scripts>
129
+ <territories>
130
+ <territory type="172">Neatkarīgo Valstu Savienība</territory>
131
+ <territory type="AD">Andora</territory>
132
+ <territory type="AE">Apvienotie Arābu Emirāti</territory>
133
+ <territory type="AF">Afganistāna</territory>
134
+ <territory type="AG">Antigva un Barbuda</territory>
135
+ <territory type="AI">Angilja</territory>
136
+ <territory type="AL">Albānija</territory>
137
+ <territory type="AM">Armēnija</territory>
138
+ <territory type="AN">Antiļas</territory>
139
+ <territory type="AO">Angola</territory>
140
+ <territory type="AQ">Antarktika</territory>
141
+ <territory type="AR">Argentīna</territory>
142
+ <territory type="AS">Amerikāņu Samoa</territory>
143
+ <territory type="AT">Austrija</territory>
144
+ <territory type="AU">Austrālija</territory>
145
+ <territory type="AW">Aruba</territory>
146
+ <territory type="AX">Olandes salas</territory>
147
+ <territory type="AZ">Azerbaidžāna</territory>
148
+ <territory type="BA">Bosnija un Hercegovina</territory>
149
+ <territory type="BB">Barbadosa</territory>
150
+ <territory type="BD">Bangladeša</territory>
151
+ <territory type="BE">Beļģija</territory>
152
+ <territory type="BF">Burkinafaso</territory>
153
+ <territory type="BG">Bulgārija</territory>
154
+ <territory type="BH">Bahreina</territory>
155
+ <territory type="BI">Burundi</territory>
156
+ <territory type="BJ">Benina</territory>
157
+ <territory type="BM">Bermudu salas</territory>
158
+ <territory type="BN">Bruneja</territory>
159
+ <territory type="BO">Bolīvija</territory>
160
+ <territory type="BR">Brazīlija</territory>
161
+ <territory type="BS">Bahamas</territory>
162
+ <territory type="BT">Butāna</territory>
163
+ <territory type="BV">Buvē sala</territory>
164
+ <territory type="BW">Botsvāna</territory>
165
+ <territory type="BY">Baltkrievija</territory>
166
+ <territory type="BZ">Beliza</territory>
167
+ <territory type="CA">Kanāda</territory>
168
+ <territory type="CC">Kokosu (Kīlinga) salas</territory>
169
+ <territory type="CD">Kongo Demokrātiskā Republika</territory>
170
+ <territory type="CF">Centrālāfrikas Republika</territory>
171
+ <territory type="CG">Kongo</territory>
172
+ <territory type="CH">Šveice</territory>
173
+ <territory type="CI">Kotdivuāra</territory>
174
+ <territory type="CK">Kuka salas</territory>
175
+ <territory type="CL">Čīle</territory>
176
+ <territory type="CM">Kamerūna</territory>
177
+ <territory type="CN">Ķīna</territory>
178
+ <territory type="CO">Kolumbija</territory>
179
+ <territory type="CR">Kostarika</territory>
180
+ <territory type="CS">Serbija un Melnkalne</territory>
181
+ <territory type="CU">Kuba</territory>
182
+ <territory type="CV">Kaboverde</territory>
183
+ <territory type="CX">Ziemsvētku sala</territory>
184
+ <territory type="CY">Kipra</territory>
185
+ <territory type="CZ">Čehija</territory>
186
+ <territory type="DE">Vācija</territory>
187
+ <territory type="DJ">Džibutija</territory>
188
+ <territory type="DK">Dānija</territory>
189
+ <territory type="DM">Dominika</territory>
190
+ <territory type="DO">Dominikānas Republika</territory>
191
+ <territory type="DZ">Alžīrija</territory>
192
+ <territory type="EC">Ekvadora</territory>
193
+ <territory type="EE">Igaunija</territory>
194
+ <territory type="EG">Ēģipte</territory>
195
+ <territory type="EH">Rietumsahāra</territory>
196
+ <territory type="ER">Eritreja</territory>
197
+ <territory type="ES">Spānija</territory>
198
+ <territory type="ET">Etiopija</territory>
199
+ <territory type="FI">Somija</territory>
200
+ <territory type="FJ">Fidži</territory>
201
+ <territory type="FK">Folklenda salas</territory>
202
+ <territory type="FM">Mikronēzijas Federatīvās Valstis</territory>
203
+ <territory type="FO">Farēru salas</territory>
204
+ <territory type="FR">Francija</territory>
205
+ <territory type="GA">Gabona</territory>
206
+ <territory type="GB">Lielbritānija</territory>
207
+ <territory type="GD">Grenāda</territory>
208
+ <territory type="GE">Gruzija</territory>
209
+ <territory type="GF">Franču Gviāna</territory>
210
+ <territory type="GG">Gērnsija</territory>
211
+ <territory type="GH">Gana</territory>
212
+ <territory type="GI">Gibraltārs</territory>
213
+ <territory type="GL">Grenlande</territory>
214
+ <territory type="GM">Gambija</territory>
215
+ <territory type="GN">Gvineja</territory>
216
+ <territory type="GP">Gvadelupa</territory>
217
+ <territory type="GQ">Ekvatoriālā Gvineja</territory>
218
+ <territory type="GR">Grieķija</territory>
219
+ <territory type="GS">Dienviddžordžija un Dienvidsendviču salas</territory>
220
+ <territory type="GT">Gvatemala</territory>
221
+ <territory type="GU">Guama</territory>
222
+ <territory type="GW">Gvineja-Bisava</territory>
223
+ <territory type="GY">Gajāna</territory>
224
+ <territory type="HK">Honkonga, Ķīnas īpašās pārvaldes apgabals</territory>
225
+ <territory type="HM">Hērda un Makdonalda salas</territory>
226
+ <territory type="HN">Hondurasa</territory>
227
+ <territory type="HR">Horvātija</territory>
228
+ <territory type="HT">Haiti</territory>
229
+ <territory type="HU">Ungārija</territory>
230
+ <territory type="ID">Indonēzija</territory>
231
+ <territory type="IE">Īrija</territory>
232
+ <territory type="IL">Izraēla</territory>
233
+ <territory type="IM">Mena</territory>
234
+ <territory type="IN">Indija</territory>
235
+ <territory type="IO">Britu Indijas okeāna teritorija</territory>
236
+ <territory type="IQ">Irāka</territory>
237
+ <territory type="IR">Irāna</territory>
238
+ <territory type="IS">Islande</territory>
239
+ <territory type="IT">Itālija</territory>
240
+ <territory type="JE">Džērsija</territory>
241
+ <territory type="JM">Jamaika</territory>
242
+ <territory type="JO">Jordānija</territory>
243
+ <territory type="JP">Japāna</territory>
244
+ <territory type="KE">Kenija</territory>
245
+ <territory type="KG">Kirgīzija</territory>
246
+ <territory type="KH">Kambodža</territory>
247
+ <territory type="KI">Kiribati</territory>
248
+ <territory type="KM">Komoru salas</territory>
249
+ <territory type="KN">Sentkitsa un Nevisa</territory>
250
+ <territory type="KP">Ziemeļkoreja</territory>
251
+ <territory type="KR">Dienvidkoreja</territory>
252
+ <territory type="KW">Kuveita</territory>
253
+ <territory type="KY">Kaimanu salas</territory>
254
+ <territory type="KZ">Kazahstāna</territory>
255
+ <territory type="LA">Laosa</territory>
256
+ <territory type="LB">Libāna</territory>
257
+ <territory type="LC">Sentlūsija</territory>
258
+ <territory type="LI">Lihtenšteina</territory>
259
+ <territory type="LK">Šrilanka</territory>
260
+ <territory type="LR">Libērija</territory>
261
+ <territory type="LS">Lesoto</territory>
262
+ <territory type="LT">Lietuva</territory>
263
+ <territory type="LU">Luksemburga</territory>
264
+ <territory type="LV">Latvija</territory>
265
+ <territory type="LY">Lībija</territory>
266
+ <territory type="MA">Maroka</territory>
267
+ <territory type="MC">Monako</territory>
268
+ <territory type="MD">Moldova</territory>
269
+ <territory type="ME">Melnkalne</territory>
270
+ <territory type="MG">Madagaskara</territory>
271
+ <territory type="MH">Māršala salas</territory>
272
+ <territory type="MK">Maķedonija</territory>
273
+ <territory type="ML">Mali</territory>
274
+ <territory type="MM">Mjanma</territory>
275
+ <territory type="MN">Mongolija</territory>
276
+ <territory type="MO">Makao, Ķīnas īpašās pārvaldes apgabals</territory>
277
+ <territory type="MP">Ziemeļu Marianas</territory>
278
+ <territory type="MQ">Martinika</territory>
279
+ <territory type="MR">Mauritānija</territory>
280
+ <territory type="MS">Montserrata</territory>
281
+ <territory type="MT">Malta</territory>
282
+ <territory type="MU">Maurīcija</territory>
283
+ <territory type="MV">Maldīvija</territory>
284
+ <territory type="MW">Malāvija</territory>
285
+ <territory type="MX">Meksika</territory>
286
+ <territory type="MY">Malaizija</territory>
287
+ <territory type="MZ">Mozambika</territory>
288
+ <territory type="NA">Namībija</territory>
289
+ <territory type="NC">Jaunkaledonija</territory>
290
+ <territory type="NE">Nigēra</territory>
291
+ <territory type="NF">Norfolka</territory>
292
+ <territory type="NG">Nigērija</territory>
293
+ <territory type="NI">Nikaragva</territory>
294
+ <territory type="NL">Nīderlande</territory>
295
+ <territory type="NO">Norvēģija</territory>
296
+ <territory type="NP">Nepāla</territory>
297
+ <territory type="NR">Nauru</territory>
298
+ <territory type="NU">Niue</territory>
299
+ <territory type="NZ">Jaunzēlande</territory>
300
+ <territory type="OM">Omāna</territory>
301
+ <territory type="PA">Panama</territory>
302
+ <territory type="PE">Peru</territory>
303
+ <territory type="PF">Franču Polinēzija</territory>
304
+ <territory type="PG">Papua-Jaungvineja</territory>
305
+ <territory type="PH">Filipīnas</territory>
306
+ <territory type="PK">Pakistāna</territory>
307
+ <territory type="PL">Polija</territory>
308
+ <territory type="PM">Senpjēra un Mikelona</territory>
309
+ <territory type="PN">Pitkērna</territory>
310
+ <territory type="PR">Puertoriko</territory>
311
+ <territory type="PS">Palestīniešu pašpārvaldes teritorija</territory>
312
+ <territory type="PT">Portugāle</territory>
313
+ <territory type="PW">Palau</territory>
314
+ <territory type="PY">Paragvaja</territory>
315
+ <territory type="QA">Katara</territory>
316
+ <territory type="RE">Reinjona</territory>
317
+ <territory type="RO">Rumānija</territory>
318
+ <territory type="RS">Serbija</territory>
319
+ <territory type="RU">Krievija</territory>
320
+ <territory type="RW">Ruanda</territory>
321
+ <territory type="SA">Saūda Arābija</territory>
322
+ <territory type="SB">Zālamana salas</territory>
323
+ <territory type="SC">Seišeļu salas</territory>
324
+ <territory type="SD">Sudāna</territory>
325
+ <territory type="SE">Zviedrija</territory>
326
+ <territory type="SG">Singapūra</territory>
327
+ <territory type="SH">Sv. Helēnas sala</territory>
328
+ <territory type="SI">Slovēnija</territory>
329
+ <territory type="SJ">Svalbāra un Jana Majena sala</territory>
330
+ <territory type="SK">Slovākija</territory>
331
+ <territory type="SL">Sjerraleone</territory>
332
+ <territory type="SM">Sanmarīno</territory>
333
+ <territory type="SN">Senegāla</territory>
334
+ <territory type="SO">Somālija</territory>
335
+ <territory type="SR">Surinama</territory>
336
+ <territory type="ST">Santome un Prinsipi</territory>
337
+ <territory type="SV">Salvadora</territory>
338
+ <territory type="SY">Sīrija</territory>
339
+ <territory type="SZ">Svazilenda</territory>
340
+ <territory type="TC">Tērksas un Kaikosas salas</territory>
341
+ <territory type="TD">Čada</territory>
342
+ <territory type="TF">Franču dienvidu teritorijas</territory>
343
+ <territory type="TG">Togo</territory>
344
+ <territory type="TH">Taizeme</territory>
345
+ <territory type="TJ">Tadžikistāna</territory>
346
+ <territory type="TK">Tokelau</territory>
347
+ <territory type="TL">Austrumtimora</territory>
348
+ <territory type="TM">Turkmenistāna</territory>
349
+ <territory type="TN">Tunisija</territory>
350
+ <territory type="TO">Tonga</territory>
351
+ <territory type="TR">Turcija</territory>
352
+ <territory type="TT">Trinidāda un Tobāgo</territory>
353
+ <territory type="TV">Tuvalu</territory>
354
+ <territory type="TW">Taivāna</territory>
355
+ <territory type="TZ">Tanzānija</territory>
356
+ <territory type="UA">Ukraina</territory>
357
+ <territory type="UG">Uganda</territory>
358
+ <territory type="UM">ASV mazās aizjūras teritorijas</territory>
359
+ <territory type="US">United States</territory>
360
+ <territory type="UY">Urugvaja</territory>
361
+ <territory type="UZ">Uzbekistāna</territory>
362
+ <territory type="VA">Vatikāns</territory>
363
+ <territory type="VC">Sentvinsenta un Grenadīnas</territory>
364
+ <territory type="VE">Venecuēla</territory>
365
+ <territory type="VG">Britu Virdžīnu salas</territory>
366
+ <territory type="VI">Amerikāņu Virdžīnu salas</territory>
367
+ <territory type="VN">Vjetnama</territory>
368
+ <territory type="VU">Vanuatu</territory>
369
+ <territory type="WF">Volisa un Futuna</territory>
370
+ <territory type="WS">Samoa</territory>
371
+ <territory type="YE">Jemena</territory>
372
+ <territory type="YT">Majota</territory>
373
+ <territory type="ZA">Dienvidāfrika</territory>
374
+ <territory type="ZM">Zambija</territory>
375
+ <territory type="ZW">Zimbabve</territory>
376
+ <territory type="ZZ">Nezināms vai nederīgs reģions</territory>
377
+ </territories>
378
+ <keys>
379
+ <key type="calendar">Kalendārs</key>
380
+ <key type="collation">Šķirošana komplektos</key>
381
+ <key type="currency">Valūta</key>
382
+ </keys>
383
+ <measurementSystemNames>
384
+ <measurementSystemName type="US">britu</measurementSystemName>
385
+ <measurementSystemName type="metric">metriskā</measurementSystemName>
386
+ </measurementSystemNames>
387
+ </localeDisplayNames>
388
+ <characters>
389
+ <exemplarCharacters>[a ā b c č d e ē f g ģ h i ī j k ķ l ļ m n ņ o p r s š t u ū v z ž]</exemplarCharacters>
390
+ <exemplarCharacters type="auxiliary">[y q w x]</exemplarCharacters>
391
+ </characters>
392
+ <delimiters>
393
+ <quotationStart>“</quotationStart>
394
+ <quotationEnd>”</quotationEnd>
395
+ <alternateQuotationStart>‘</alternateQuotationStart>
396
+ <alternateQuotationEnd>’</alternateQuotationEnd>
397
+ </delimiters>
398
+ <dates>
399
+ <localizedPatternChars>GanjkHmsSEDFwWxhKzAeugXZvcL</localizedPatternChars>
400
+ <calendars>
401
+ <calendar type="gregorian">
402
+ <months>
403
+ <monthContext type="format">
404
+ <monthWidth type="abbreviated">
405
+ <month type="1">Jan</month>
406
+ <month type="2">Feb</month>
407
+ <month type="3">Mar</month>
408
+ <month type="4">Apr</month>
409
+ <month type="5">Mai</month>
410
+ <month type="6">Jūn</month>
411
+ <month type="7">Jūl</month>
412
+ <month type="8">Aug</month>
413
+ <month type="9">Sep</month>
414
+ <month type="10">Okt</month>
415
+ <month type="11">Nov</month>
416
+ <month type="12">Dec</month>
417
+ </monthWidth>
418
+ <monthWidth type="wide">
419
+ <month type="1">janvāris</month>
420
+ <month type="2">februāris</month>
421
+ <month type="3">marts</month>
422
+ <month type="4">aprīlis</month>
423
+ <month type="5">maijs</month>
424
+ <month type="6">jūnijs</month>
425
+ <month type="7">jūlijs</month>
426
+ <month type="8">augusts</month>
427
+ <month type="9">septembris</month>
428
+ <month type="10">oktobris</month>
429
+ <month type="11">novembris</month>
430
+ <month type="12">decembris</month>
431
+ </monthWidth>
432
+ </monthContext>
433
+ <monthContext type="stand-alone">
434
+ <monthWidth type="narrow">
435
+ <month type="1">1</month>
436
+ <month type="2">2</month>
437
+ <month type="3">3</month>
438
+ <month type="4">4</month>
439
+ <month type="5">5</month>
440
+ <month type="6">6</month>
441
+ <month type="7">7</month>
442
+ <month type="8">8</month>
443
+ <month type="9">9</month>
444
+ <month type="10">10</month>
445
+ <month type="11">11</month>
446
+ <month type="12">12</month>
447
+ </monthWidth>
448
+ </monthContext>
449
+ </months>
450
+ <days>
451
+ <dayContext type="format">
452
+ <dayWidth type="abbreviated">
453
+ <day type="sun">Sv</day>
454
+ <day type="mon">P</day>
455
+ <day type="tue">O</day>
456
+ <day type="wed">T</day>
457
+ <day type="thu">C</day>
458
+ <day type="fri">Pk</day>
459
+ <day type="sat">S</day>
460
+ </dayWidth>
461
+ <dayWidth type="wide">
462
+ <day type="sun">svētdiena</day>
463
+ <day type="mon">pirmdiena</day>
464
+ <day type="tue">otrdiena</day>
465
+ <day type="wed">trešdiena</day>
466
+ <day type="thu">ceturtdiena</day>
467
+ <day type="fri">piektdiena</day>
468
+ <day type="sat">sestdiena</day>
469
+ </dayWidth>
470
+ </dayContext>
471
+ <dayContext type="stand-alone">
472
+ <dayWidth type="abbreviated">
473
+ <day type="mon">Pr</day>
474
+ <day type="wed">Tr</day>
475
+ <day type="thu">Ce</day>
476
+ <day type="sat">Se</day>
477
+ </dayWidth>
478
+ <dayWidth type="narrow">
479
+ <day type="sun">1</day>
480
+ <day type="mon">2</day>
481
+ <day type="tue">3</day>
482
+ <day type="wed">4</day>
483
+ <day type="thu">5</day>
484
+ <day type="fri">6</day>
485
+ <day type="sat">7</day>
486
+ </dayWidth>
487
+ </dayContext>
488
+ </days>
489
+ <quarters>
490
+ <quarterContext type="format">
491
+ <quarterWidth type="abbreviated">
492
+ <quarter type="1">C1</quarter>
493
+ <quarter type="2">C2</quarter>
494
+ <quarter type="3">C3</quarter>
495
+ <quarter type="4">C4</quarter>
496
+ </quarterWidth>
497
+ <quarterWidth type="wide">
498
+ <quarter type="1">1. ceturksnis</quarter>
499
+ <quarter type="2">2. ceturksnis</quarter>
500
+ <quarter type="3">3. ceturksnis</quarter>
501
+ <quarter type="4">4. ceturksnis</quarter>
502
+ </quarterWidth>
503
+ </quarterContext>
504
+ </quarters>
505
+ <am>AM</am>
506
+ <pm>PM</pm>
507
+ <eras>
508
+ <eraNames>
509
+ <era type="0">pirms mūsu ēras</era>
510
+ <era type="1">mūsu ērā</era>
511
+ </eraNames>
512
+ <eraAbbr>
513
+ <era type="0">pmē</era>
514
+ <era type="1">mē</era>
515
+ </eraAbbr>
516
+ <eraNarrow>
517
+ <era type="0">p.m.ē.</era>
518
+ <era type="1">m.ē.</era>
519
+ </eraNarrow>
520
+ </eras>
521
+ <dateFormats>
522
+ <dateFormatLength type="full">
523
+ <dateFormat>
524
+ <pattern>EEEE, yyyy. 'gada' d. MMMM</pattern>
525
+ </dateFormat>
526
+ </dateFormatLength>
527
+ <dateFormatLength type="long">
528
+ <dateFormat>
529
+ <pattern>yyyy. 'gada' d. MMMM</pattern>
530
+ </dateFormat>
531
+ </dateFormatLength>
532
+ <dateFormatLength type="medium">
533
+ <dateFormat>
534
+ <pattern>yyyy.d.M</pattern>
535
+ </dateFormat>
536
+ </dateFormatLength>
537
+ <dateFormatLength type="short">
538
+ <dateFormat>
539
+ <pattern>yy.d.M</pattern>
540
+ </dateFormat>
541
+ </dateFormatLength>
542
+ </dateFormats>
543
+ <timeFormats>
544
+ <timeFormatLength type="full">
545
+ <timeFormat>
546
+ <pattern>HH:mm:ss v</pattern>
547
+ </timeFormat>
548
+ </timeFormatLength>
549
+ <timeFormatLength type="long">
550
+ <timeFormat>
551
+ <pattern>HH:mm:ss z</pattern>
552
+ </timeFormat>
553
+ </timeFormatLength>
554
+ <timeFormatLength type="medium">
555
+ <timeFormat>
556
+ <pattern>HH:mm:ss</pattern>
557
+ </timeFormat>
558
+ </timeFormatLength>
559
+ <timeFormatLength type="short">
560
+ <timeFormat>
561
+ <pattern>HH:mm</pattern>
562
+ </timeFormat>
563
+ </timeFormatLength>
564
+ </timeFormats>
565
+ <dateTimeFormats>
566
+ <dateTimeFormatLength>
567
+ <dateTimeFormat>
568
+ <pattern>{1} {0}</pattern>
569
+ </dateTimeFormat>
570
+ </dateTimeFormatLength>
571
+ <availableFormats>
572
+ <dateFormatItem id="Ed">E d</dateFormatItem>
573
+ <dateFormatItem id="H">H</dateFormatItem>
574
+ <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
575
+ <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
576
+ <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
577
+ <dateFormatItem id="Md">d.M</dateFormatItem>
578
+ <dateFormatItem id="mmss">mm:ss</dateFormatItem>
579
+ <dateFormatItem id="yyQ">Q yy</dateFormatItem>
580
+ <dateFormatItem id="yyyy">yyyy. 'g'.</dateFormatItem>
581
+ </availableFormats>
582
+ </dateTimeFormats>
583
+ <fields>
584
+ <field type="era">
585
+ <displayName>Ēra</displayName>
586
+ </field>
587
+ <field type="year">
588
+ <displayName>Gads</displayName>
589
+ </field>
590
+ <field type="month">
591
+ <displayName>Mēnesis</displayName>
592
+ </field>
593
+ <field type="week">
594
+ <displayName>Nedēļa</displayName>
595
+ </field>
596
+ <field type="day">
597
+ <relative type="0">šodien</relative>
598
+ <relative type="1">rīt</relative>
599
+ <relative type="2">parīt</relative>
600
+ <relative type="3">aizparīt</relative>
601
+ <relative type="-1">vakar</relative>
602
+ <relative type="-2">aizvakar</relative>
603
+ </field>
604
+ <field type="weekday">
605
+ <displayName>Nedēļas diena</displayName>
606
+ </field>
607
+ <field type="hour">
608
+ <displayName>Stundas</displayName>
609
+ </field>
610
+ <field type="minute">
611
+ <displayName>Minūtes</displayName>
612
+ </field>
613
+ <field type="second">
614
+ <displayName>Sekundes</displayName>
615
+ </field>
616
+ <field type="zone">
617
+ <displayName>Josla</displayName>
618
+ </field>
619
+ </fields>
620
+ </calendar>
621
+ </calendars>
622
+ <timeZoneNames>
623
+ <hourFormat>+HH:mm;−HH:mm</hourFormat>
624
+ <gmtFormat>GMT{0}</gmtFormat>
625
+ <regionFormat>{0}</regionFormat>
626
+ <zone type="Etc/Unknown">
627
+ <exemplarCity>Nezināma</exemplarCity>
628
+ </zone>
629
+ <zone type="Europe/Andorra">
630
+ <exemplarCity>Andora</exemplarCity>
631
+ </zone>
632
+ <zone type="Asia/Dubai">
633
+ <exemplarCity>Dubaija</exemplarCity>
634
+ </zone>
635
+ <zone type="Asia/Kabul">
636
+ <exemplarCity>Kabula</exemplarCity>
637
+ </zone>
638
+ <zone type="America/Antigua">
639
+ <exemplarCity>Antigva</exemplarCity>
640
+ </zone>
641
+ <zone type="America/Anguilla">
642
+ <exemplarCity>Angilja</exemplarCity>
643
+ </zone>
644
+ <zone type="Europe/Tirane">
645
+ <exemplarCity>Tirāna</exemplarCity>
646
+ </zone>
647
+ <zone type="Asia/Yerevan">
648
+ <exemplarCity>Erevāna</exemplarCity>
649
+ </zone>
650
+ <zone type="America/Curacao">
651
+ <exemplarCity>Nīderlandes Antiļas</exemplarCity>
652
+ </zone>
653
+ <zone type="Antarctica/Rothera">
654
+ <exemplarCity>Rotera</exemplarCity>
655
+ </zone>
656
+ <zone type="Antarctica/Palmer">
657
+ <exemplarCity>Palmera</exemplarCity>
658
+ </zone>
659
+ <zone type="Antarctica/South_Pole">
660
+ <exemplarCity>Dienvidpols</exemplarCity>
661
+ </zone>
662
+ <zone type="Antarctica/Syowa">
663
+ <exemplarCity>Sjova</exemplarCity>
664
+ </zone>
665
+ <zone type="Antarctica/Mawson">
666
+ <exemplarCity>Mavsona</exemplarCity>
667
+ </zone>
668
+ <zone type="Antarctica/Davis">
669
+ <exemplarCity>Deivisa</exemplarCity>
670
+ </zone>
671
+ <zone type="Antarctica/Vostok">
672
+ <exemplarCity>Vostoka</exemplarCity>
673
+ </zone>
674
+ <zone type="Antarctica/Casey">
675
+ <exemplarCity>Kesija</exemplarCity>
676
+ </zone>
677
+ <zone type="Antarctica/DumontDUrville">
678
+ <exemplarCity>Dumont D'Urville</exemplarCity>
679
+ </zone>
680
+ <zone type="Antarctica/McMurdo">
681
+ <exemplarCity>Makmerdo</exemplarCity>
682
+ </zone>
683
+ <zone type="America/Buenos_Aires">
684
+ <exemplarCity>Buenosairesa</exemplarCity>
685
+ </zone>
686
+ <zone type="Pacific/Pago_Pago">
687
+ <exemplarCity>Pagopago</exemplarCity>
688
+ </zone>
689
+ <zone type="Europe/Vienna">
690
+ <exemplarCity>Vīne</exemplarCity>
691
+ </zone>
692
+ <zone type="Australia/Adelaide">
693
+ <exemplarCity>Adelaida</exemplarCity>
694
+ </zone>
695
+ <zone type="America/Barbados">
696
+ <exemplarCity>Barbadosa</exemplarCity>
697
+ </zone>
698
+ <zone type="Asia/Dhaka">
699
+ <exemplarCity>Daka</exemplarCity>
700
+ </zone>
701
+ <zone type="Europe/Brussels">
702
+ <exemplarCity>Brisele</exemplarCity>
703
+ </zone>
704
+ <zone type="Africa/Ouagadougou">
705
+ <exemplarCity>Vagadugu</exemplarCity>
706
+ </zone>
707
+ <zone type="Europe/Sofia">
708
+ <exemplarCity>Sofija</exemplarCity>
709
+ </zone>
710
+ <zone type="Asia/Bahrain">
711
+ <exemplarCity>Bahreina</exemplarCity>
712
+ </zone>
713
+ <zone type="Africa/Bujumbura">
714
+ <exemplarCity>Bužumbura</exemplarCity>
715
+ </zone>
716
+ <zone type="Africa/Porto-Novo">
717
+ <exemplarCity>Portonovo</exemplarCity>
718
+ </zone>
719
+ <zone type="Atlantic/Bermuda">
720
+ <exemplarCity>Bermudu salas</exemplarCity>
721
+ </zone>
722
+ <zone type="Asia/Brunei">
723
+ <exemplarCity>Bruneja</exemplarCity>
724
+ </zone>
725
+ <zone type="America/La_Paz">
726
+ <exemplarCity>Lapasa</exemplarCity>
727
+ </zone>
728
+ <zone type="America/Rio_Branco">
729
+ <exemplarCity>Riobranko</exemplarCity>
730
+ </zone>
731
+ <zone type="America/Porto_Velho">
732
+ <exemplarCity>Portuvelju</exemplarCity>
733
+ </zone>
734
+ <zone type="America/Boa_Vista">
735
+ <exemplarCity>Boavista</exemplarCity>
736
+ </zone>
737
+ <zone type="America/Manaus">
738
+ <exemplarCity>Manausa</exemplarCity>
739
+ </zone>
740
+ <zone type="America/Cuiaba">
741
+ <exemplarCity>Kujaba</exemplarCity>
742
+ </zone>
743
+ <zone type="America/Campo_Grande">
744
+ <exemplarCity>Kampugrandi</exemplarCity>
745
+ </zone>
746
+ <zone type="America/Belem">
747
+ <exemplarCity>Belena</exemplarCity>
748
+ </zone>
749
+ <zone type="America/Araguaina">
750
+ <exemplarCity>Aragvaina</exemplarCity>
751
+ </zone>
752
+ <zone type="America/Sao_Paulo">
753
+ <exemplarCity>Sanpaulu</exemplarCity>
754
+ </zone>
755
+ <zone type="America/Bahia">
756
+ <exemplarCity>Brazīlija (Salvadora)</exemplarCity>
757
+ </zone>
758
+ <zone type="America/Maceio">
759
+ <exemplarCity>Maseio</exemplarCity>
760
+ </zone>
761
+ <zone type="America/Recife">
762
+ <exemplarCity>Resifi</exemplarCity>
763
+ </zone>
764
+ <zone type="America/Nassau">
765
+ <exemplarCity>Naso</exemplarCity>
766
+ </zone>
767
+ <zone type="Asia/Thimphu">
768
+ <exemplarCity>Timpu</exemplarCity>
769
+ </zone>
770
+ <zone type="Europe/Minsk">
771
+ <exemplarCity>Minska</exemplarCity>
772
+ </zone>
773
+ <zone type="America/Belize">
774
+ <exemplarCity>Beliza</exemplarCity>
775
+ </zone>
776
+ <zone type="Indian/Cocos">
777
+ <exemplarCity>Kokosa</exemplarCity>
778
+ </zone>
779
+ <zone type="Africa/Kinshasa">
780
+ <exemplarCity>Kinšasa</exemplarCity>
781
+ </zone>
782
+ <zone type="Africa/Lubumbashi">
783
+ <exemplarCity>Lubumbaši</exemplarCity>
784
+ </zone>
785
+ <zone type="Africa/Bangui">
786
+ <exemplarCity>Bangi</exemplarCity>
787
+ </zone>
788
+ <zone type="Africa/Brazzaville">
789
+ <exemplarCity>Brazavila</exemplarCity>
790
+ </zone>
791
+ <zone type="Europe/Zurich">
792
+ <exemplarCity>Cīrihe</exemplarCity>
793
+ </zone>
794
+ <zone type="Africa/Abidjan">
795
+ <exemplarCity>Abidžana</exemplarCity>
796
+ </zone>
797
+ <zone type="Pacific/Easter">
798
+ <exemplarCity>Lieldienu sala</exemplarCity>
799
+ </zone>
800
+ <zone type="America/Santiago">
801
+ <exemplarCity>Santjago</exemplarCity>
802
+ </zone>
803
+ <zone type="Africa/Douala">
804
+ <exemplarCity>Duala</exemplarCity>
805
+ </zone>
806
+ <zone type="America/Costa_Rica">
807
+ <exemplarCity>Kostarika</exemplarCity>
808
+ </zone>
809
+ <zone type="America/Havana">
810
+ <exemplarCity>Havanna</exemplarCity>
811
+ </zone>
812
+ <zone type="Atlantic/Cape_Verde">
813
+ <exemplarCity>Kaboverde</exemplarCity>
814
+ </zone>
815
+ <zone type="Indian/Christmas">
816
+ <exemplarCity>Ziemsvētku</exemplarCity>
817
+ </zone>
818
+ <zone type="Asia/Nicosia">
819
+ <exemplarCity>Nikosija</exemplarCity>
820
+ </zone>
821
+ <zone type="Europe/Berlin">
822
+ <exemplarCity>Berlīne</exemplarCity>
823
+ </zone>
824
+ <zone type="Africa/Djibouti">
825
+ <exemplarCity>Džibutija</exemplarCity>
826
+ </zone>
827
+ <zone type="Europe/Copenhagen">
828
+ <exemplarCity>Kopenhāgena</exemplarCity>
829
+ </zone>
830
+ <zone type="America/Dominica">
831
+ <exemplarCity>Dominika</exemplarCity>
832
+ </zone>
833
+ <zone type="America/Santo_Domingo">
834
+ <exemplarCity>Santodomingo</exemplarCity>
835
+ </zone>
836
+ <zone type="Africa/Algiers">
837
+ <exemplarCity>Alžīra</exemplarCity>
838
+ </zone>
839
+ <zone type="Pacific/Galapagos">
840
+ <exemplarCity>Galapagu salas</exemplarCity>
841
+ </zone>
842
+ <zone type="America/Guayaquil">
843
+ <exemplarCity>Gvajakila</exemplarCity>
844
+ </zone>
845
+ <zone type="Europe/Tallinn">
846
+ <exemplarCity>Tallina</exemplarCity>
847
+ </zone>
848
+ <zone type="Africa/Cairo">
849
+ <exemplarCity>Kaira</exemplarCity>
850
+ </zone>
851
+ <zone type="Africa/El_Aaiun">
852
+ <exemplarCity>Ajūna</exemplarCity>
853
+ </zone>
854
+ <zone type="Atlantic/Canary">
855
+ <exemplarCity>Kanāriju salas</exemplarCity>
856
+ </zone>
857
+ <zone type="Africa/Ceuta">
858
+ <exemplarCity>Seūta</exemplarCity>
859
+ </zone>
860
+ <zone type="Europe/Madrid">
861
+ <exemplarCity>Madride</exemplarCity>
862
+ </zone>
863
+ <zone type="Africa/Addis_Ababa">
864
+ <exemplarCity>Adisabeba</exemplarCity>
865
+ </zone>
866
+ <zone type="Pacific/Fiji">
867
+ <exemplarCity>Fidži</exemplarCity>
868
+ </zone>
869
+ <zone type="Atlantic/Stanley">
870
+ <exemplarCity>Stenlija</exemplarCity>
871
+ </zone>
872
+ <zone type="Pacific/Truk">
873
+ <exemplarCity>Trūka</exemplarCity>
874
+ </zone>
875
+ <zone type="Atlantic/Faeroe">
876
+ <exemplarCity>Farēru salas</exemplarCity>
877
+ </zone>
878
+ <zone type="Europe/Paris">
879
+ <exemplarCity>Parīze</exemplarCity>
880
+ </zone>
881
+ <zone type="Africa/Libreville">
882
+ <exemplarCity>Librevila</exemplarCity>
883
+ </zone>
884
+ <zone type="Europe/London">
885
+ <exemplarCity>Londona</exemplarCity>
886
+ </zone>
887
+ <zone type="America/Grenada">
888
+ <exemplarCity>Grenāda</exemplarCity>
889
+ </zone>
890
+ <zone type="America/Cayenne">
891
+ <exemplarCity>Kajenna</exemplarCity>
892
+ </zone>
893
+ <zone type="Africa/Accra">
894
+ <exemplarCity>Akra</exemplarCity>
895
+ </zone>
896
+ <zone type="Europe/Gibraltar">
897
+ <exemplarCity>Gibraltārs</exemplarCity>
898
+ </zone>
899
+ <zone type="America/Thule">
900
+ <exemplarCity>Tūle</exemplarCity>
901
+ </zone>
902
+ <zone type="America/Godthab">
903
+ <exemplarCity>Nūka</exemplarCity>
904
+ </zone>
905
+ <zone type="America/Scoresbysund">
906
+ <exemplarCity>Skoresbisunda</exemplarCity>
907
+ </zone>
908
+ <zone type="America/Danmarkshavn">
909
+ <exemplarCity>Denmārkšavna</exemplarCity>
910
+ </zone>
911
+ <zone type="Africa/Banjul">
912
+ <exemplarCity>Bandžula</exemplarCity>
913
+ </zone>
914
+ <zone type="Africa/Conakry">
915
+ <exemplarCity>Konakri</exemplarCity>
916
+ </zone>
917
+ <zone type="America/Guadeloupe">
918
+ <exemplarCity>Gvadelupa</exemplarCity>
919
+ </zone>
920
+ <zone type="Europe/Athens">
921
+ <exemplarCity>Atēnas</exemplarCity>
922
+ </zone>
923
+ <zone type="Atlantic/South_Georgia">
924
+ <exemplarCity>Dienviddžordžija</exemplarCity>
925
+ </zone>
926
+ <zone type="America/Guatemala">
927
+ <exemplarCity>Gvatemala</exemplarCity>
928
+ </zone>
929
+ <zone type="Pacific/Guam">
930
+ <exemplarCity>Guama</exemplarCity>
931
+ </zone>
932
+ <zone type="Africa/Bissau">
933
+ <exemplarCity>Bisava</exemplarCity>
934
+ </zone>
935
+ <zone type="America/Guyana">
936
+ <exemplarCity>Gajāna</exemplarCity>
937
+ </zone>
938
+ <zone type="Asia/Hong_Kong">
939
+ <exemplarCity>Honkonga</exemplarCity>
940
+ </zone>
941
+ <zone type="America/Port-au-Prince">
942
+ <exemplarCity>Portoprensa</exemplarCity>
943
+ </zone>
944
+ <zone type="Europe/Budapest">
945
+ <exemplarCity>Budapešta</exemplarCity>
946
+ </zone>
947
+ <zone type="Asia/Jakarta">
948
+ <exemplarCity>Džakarta</exemplarCity>
949
+ </zone>
950
+ <zone type="Asia/Makassar">
951
+ <exemplarCity>Makasara</exemplarCity>
952
+ </zone>
953
+ <zone type="Asia/Jayapura">
954
+ <exemplarCity>Džajapūra</exemplarCity>
955
+ </zone>
956
+ <zone type="Europe/Dublin">
957
+ <exemplarCity>Dublina</exemplarCity>
958
+ </zone>
959
+ <zone type="Indian/Chagos">
960
+ <exemplarCity>Čagosa</exemplarCity>
961
+ </zone>
962
+ <zone type="Asia/Baghdad">
963
+ <exemplarCity>Bagdāde</exemplarCity>
964
+ </zone>
965
+ <zone type="Asia/Tehran">
966
+ <exemplarCity>Teherāna</exemplarCity>
967
+ </zone>
968
+ <zone type="Atlantic/Reykjavik">
969
+ <exemplarCity>Reikjavīka</exemplarCity>
970
+ </zone>
971
+ <zone type="Europe/Rome">
972
+ <exemplarCity>Roma</exemplarCity>
973
+ </zone>
974
+ <zone type="America/Jamaica">
975
+ <exemplarCity>Jamaika</exemplarCity>
976
+ </zone>
977
+ <zone type="Asia/Amman">
978
+ <exemplarCity>Ammāna</exemplarCity>
979
+ </zone>
980
+ <zone type="Asia/Tokyo">
981
+ <exemplarCity>Tokija</exemplarCity>
982
+ </zone>
983
+ <zone type="Asia/Bishkek">
984
+ <exemplarCity>Biškeka</exemplarCity>
985
+ </zone>
986
+ <zone type="Asia/Phnom_Penh">
987
+ <exemplarCity>Pnompeņa</exemplarCity>
988
+ </zone>
989
+ <zone type="Pacific/Enderbury">
990
+ <exemplarCity>Enderburija</exemplarCity>
991
+ </zone>
992
+ <zone type="Pacific/Tarawa">
993
+ <exemplarCity>Tarava</exemplarCity>
994
+ </zone>
995
+ <zone type="Indian/Comoro">
996
+ <exemplarCity>Komoru</exemplarCity>
997
+ </zone>
998
+ <zone type="America/St_Kitts">
999
+ <exemplarCity>Sentkitsa</exemplarCity>
1000
+ </zone>
1001
+ <zone type="Asia/Pyongyang">
1002
+ <exemplarCity>Phenjana</exemplarCity>
1003
+ </zone>
1004
+ <zone type="Asia/Seoul">
1005
+ <exemplarCity>Seula</exemplarCity>
1006
+ </zone>
1007
+ <zone type="Asia/Kuwait">
1008
+ <exemplarCity>Kuveita</exemplarCity>
1009
+ </zone>
1010
+ <zone type="America/Cayman">
1011
+ <exemplarCity>Kaimanu Salas</exemplarCity>
1012
+ </zone>
1013
+ <zone type="Asia/Aqtau">
1014
+ <exemplarCity>Aktau</exemplarCity>
1015
+ </zone>
1016
+ <zone type="Asia/Aqtobe">
1017
+ <exemplarCity>Aktobe</exemplarCity>
1018
+ </zone>
1019
+ <zone type="Asia/Almaty">
1020
+ <exemplarCity>Almati</exemplarCity>
1021
+ </zone>
1022
+ <zone type="Asia/Vientiane">
1023
+ <exemplarCity>Vjangčana</exemplarCity>
1024
+ </zone>
1025
+ <zone type="Asia/Beirut">
1026
+ <exemplarCity>Beirūta</exemplarCity>
1027
+ </zone>
1028
+ <zone type="America/St_Lucia">
1029
+ <exemplarCity>Sentlūsija</exemplarCity>
1030
+ </zone>
1031
+ <zone type="Europe/Vaduz">
1032
+ <exemplarCity>Vaduca</exemplarCity>
1033
+ </zone>
1034
+ <zone type="Asia/Colombo">
1035
+ <exemplarCity>Kolombo</exemplarCity>
1036
+ </zone>
1037
+ <zone type="Africa/Monrovia">
1038
+ <exemplarCity>Monrovija</exemplarCity>
1039
+ </zone>
1040
+ <zone type="Europe/Vilnius">
1041
+ <exemplarCity>Viļņa</exemplarCity>
1042
+ </zone>
1043
+ <zone type="Europe/Luxembourg">
1044
+ <exemplarCity>Luksemburga</exemplarCity>
1045
+ </zone>
1046
+ <zone type="Europe/Riga">
1047
+ <exemplarCity>Rīga</exemplarCity>
1048
+ </zone>
1049
+ <zone type="Africa/Tripoli">
1050
+ <exemplarCity>Tripole</exemplarCity>
1051
+ </zone>
1052
+