2
|
1 |
/*
|
|
2 |
* Copyright 2005-2007 Sun Microsystems, Inc. All Rights Reserved.
|
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
|
7 |
* published by the Free Software Foundation. Sun designates this
|
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
|
9 |
* by Sun in the LICENSE file that accompanied this code.
|
|
10 |
*
|
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
* accompanied this code).
|
|
16 |
*
|
|
17 |
* You should have received a copy of the GNU General Public License version
|
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
*
|
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or
|
|
23 |
* have any questions.
|
|
24 |
*/
|
|
25 |
|
|
26 |
package java.util;
|
|
27 |
|
|
28 |
class LocaleISOData {
|
|
29 |
/**
|
|
30 |
* The 2- and 3-letter ISO 639 language codes.
|
|
31 |
*/
|
|
32 |
static final String isoLanguageTable =
|
|
33 |
"aa" + "aar" // Afar
|
|
34 |
+ "ab" + "abk" // Abkhazian
|
|
35 |
+ "ae" + "ave" // Avestan
|
|
36 |
+ "af" + "afr" // Afrikaans
|
|
37 |
+ "ak" + "aka" // Akan
|
|
38 |
+ "am" + "amh" // Amharic
|
|
39 |
+ "an" + "arg" // Aragonese
|
|
40 |
+ "ar" + "ara" // Arabic
|
|
41 |
+ "as" + "asm" // Assamese
|
|
42 |
+ "av" + "ava" // Avaric
|
|
43 |
+ "ay" + "aym" // Aymara
|
|
44 |
+ "az" + "aze" // Azerbaijani
|
|
45 |
+ "ba" + "bak" // Bashkir
|
|
46 |
+ "be" + "bel" // Belarusian
|
|
47 |
+ "bg" + "bul" // Bulgarian
|
|
48 |
+ "bh" + "bih" // Bihari
|
|
49 |
+ "bi" + "bis" // Bislama
|
|
50 |
+ "bm" + "bam" // Bambara
|
|
51 |
+ "bn" + "ben" // Bengali
|
|
52 |
+ "bo" + "bod" // Tibetan
|
|
53 |
+ "br" + "bre" // Breton
|
|
54 |
+ "bs" + "bos" // Bosnian
|
|
55 |
+ "ca" + "cat" // Catalan
|
|
56 |
+ "ce" + "che" // Chechen
|
|
57 |
+ "ch" + "cha" // Chamorro
|
|
58 |
+ "co" + "cos" // Corsican
|
|
59 |
+ "cr" + "cre" // Cree
|
|
60 |
+ "cs" + "ces" // Czech
|
|
61 |
+ "cu" + "chu" // Church Slavic
|
|
62 |
+ "cv" + "chv" // Chuvash
|
|
63 |
+ "cy" + "cym" // Welsh
|
|
64 |
+ "da" + "dan" // Danish
|
|
65 |
+ "de" + "deu" // German
|
|
66 |
+ "dv" + "div" // Divehi
|
|
67 |
+ "dz" + "dzo" // Dzongkha
|
|
68 |
+ "ee" + "ewe" // Ewe
|
|
69 |
+ "el" + "ell" // Greek
|
|
70 |
+ "en" + "eng" // English
|
|
71 |
+ "eo" + "epo" // Esperanto
|
|
72 |
+ "es" + "spa" // Spanish
|
|
73 |
+ "et" + "est" // Estonian
|
|
74 |
+ "eu" + "eus" // Basque
|
|
75 |
+ "fa" + "fas" // Persian
|
|
76 |
+ "ff" + "ful" // Fulah
|
|
77 |
+ "fi" + "fin" // Finnish
|
|
78 |
+ "fj" + "fij" // Fijian
|
|
79 |
+ "fo" + "fao" // Faroese
|
|
80 |
+ "fr" + "fra" // French
|
|
81 |
+ "fy" + "fry" // Frisian
|
|
82 |
+ "ga" + "gle" // Irish
|
|
83 |
+ "gd" + "gla" // Scottish Gaelic
|
|
84 |
+ "gl" + "glg" // Gallegan
|
|
85 |
+ "gn" + "grn" // Guarani
|
|
86 |
+ "gu" + "guj" // Gujarati
|
|
87 |
+ "gv" + "glv" // Manx
|
|
88 |
+ "ha" + "hau" // Hausa
|
|
89 |
+ "he" + "heb" // Hebrew
|
|
90 |
+ "hi" + "hin" // Hindi
|
|
91 |
+ "ho" + "hmo" // Hiri Motu
|
|
92 |
+ "hr" + "hrv" // Croatian
|
|
93 |
+ "ht" + "hat" // Haitian
|
|
94 |
+ "hu" + "hun" // Hungarian
|
|
95 |
+ "hy" + "hye" // Armenian
|
|
96 |
+ "hz" + "her" // Herero
|
|
97 |
+ "ia" + "ina" // Interlingua
|
|
98 |
+ "id" + "ind" // Indonesian
|
|
99 |
+ "ie" + "ile" // Interlingue
|
|
100 |
+ "ig" + "ibo" // Igbo
|
|
101 |
+ "ii" + "iii" // Sichuan Yi
|
|
102 |
+ "ik" + "ipk" // Inupiaq
|
|
103 |
+ "in" + "ind" // Indonesian (old)
|
|
104 |
+ "io" + "ido" // Ido
|
|
105 |
+ "is" + "isl" // Icelandic
|
|
106 |
+ "it" + "ita" // Italian
|
|
107 |
+ "iu" + "iku" // Inuktitut
|
|
108 |
+ "iw" + "heb" // Hebrew (old)
|
|
109 |
+ "ja" + "jpn" // Japanese
|
|
110 |
+ "ji" + "yid" // Yiddish (old)
|
|
111 |
+ "jv" + "jav" // Javanese
|
|
112 |
+ "ka" + "kat" // Georgian
|
|
113 |
+ "kg" + "kon" // Kongo
|
|
114 |
+ "ki" + "kik" // Kikuyu
|
|
115 |
+ "kj" + "kua" // Kwanyama
|
|
116 |
+ "kk" + "kaz" // Kazakh
|
|
117 |
+ "kl" + "kal" // Greenlandic
|
|
118 |
+ "km" + "khm" // Khmer
|
|
119 |
+ "kn" + "kan" // Kannada
|
|
120 |
+ "ko" + "kor" // Korean
|
|
121 |
+ "kr" + "kau" // Kanuri
|
|
122 |
+ "ks" + "kas" // Kashmiri
|
|
123 |
+ "ku" + "kur" // Kurdish
|
|
124 |
+ "kv" + "kom" // Komi
|
|
125 |
+ "kw" + "cor" // Cornish
|
|
126 |
+ "ky" + "kir" // Kirghiz
|
|
127 |
+ "la" + "lat" // Latin
|
|
128 |
+ "lb" + "ltz" // Luxembourgish
|
|
129 |
+ "lg" + "lug" // Ganda
|
|
130 |
+ "li" + "lim" // Limburgish
|
|
131 |
+ "ln" + "lin" // Lingala
|
|
132 |
+ "lo" + "lao" // Lao
|
|
133 |
+ "lt" + "lit" // Lithuanian
|
|
134 |
+ "lu" + "lub" // Luba-Katanga
|
|
135 |
+ "lv" + "lav" // Latvian
|
|
136 |
+ "mg" + "mlg" // Malagasy
|
|
137 |
+ "mh" + "mah" // Marshallese
|
|
138 |
+ "mi" + "mri" // Maori
|
|
139 |
+ "mk" + "mkd" // Macedonian
|
|
140 |
+ "ml" + "mal" // Malayalam
|
|
141 |
+ "mn" + "mon" // Mongolian
|
|
142 |
+ "mo" + "mol" // Moldavian
|
|
143 |
+ "mr" + "mar" // Marathi
|
|
144 |
+ "ms" + "msa" // Malay
|
|
145 |
+ "mt" + "mlt" // Maltese
|
|
146 |
+ "my" + "mya" // Burmese
|
|
147 |
+ "na" + "nau" // Nauru
|
|
148 |
+ "nb" + "nob" // Norwegian Bokm?l
|
|
149 |
+ "nd" + "nde" // North Ndebele
|
|
150 |
+ "ne" + "nep" // Nepali
|
|
151 |
+ "ng" + "ndo" // Ndonga
|
|
152 |
+ "nl" + "nld" // Dutch
|
|
153 |
+ "nn" + "nno" // Norwegian Nynorsk
|
|
154 |
+ "no" + "nor" // Norwegian
|
|
155 |
+ "nr" + "nbl" // South Ndebele
|
|
156 |
+ "nv" + "nav" // Navajo
|
|
157 |
+ "ny" + "nya" // Nyanja
|
|
158 |
+ "oc" + "oci" // Occitan
|
|
159 |
+ "oj" + "oji" // Ojibwa
|
|
160 |
+ "om" + "orm" // Oromo
|
|
161 |
+ "or" + "ori" // Oriya
|
|
162 |
+ "os" + "oss" // Ossetian
|
|
163 |
+ "pa" + "pan" // Panjabi
|
|
164 |
+ "pi" + "pli" // Pali
|
|
165 |
+ "pl" + "pol" // Polish
|
|
166 |
+ "ps" + "pus" // Pushto
|
|
167 |
+ "pt" + "por" // Portuguese
|
|
168 |
+ "qu" + "que" // Quechua
|
|
169 |
+ "rm" + "roh" // Raeto-Romance
|
|
170 |
+ "rn" + "run" // Rundi
|
|
171 |
+ "ro" + "ron" // Romanian
|
|
172 |
+ "ru" + "rus" // Russian
|
|
173 |
+ "rw" + "kin" // Kinyarwanda
|
|
174 |
+ "sa" + "san" // Sanskrit
|
|
175 |
+ "sc" + "srd" // Sardinian
|
|
176 |
+ "sd" + "snd" // Sindhi
|
|
177 |
+ "se" + "sme" // Northern Sami
|
|
178 |
+ "sg" + "sag" // Sango
|
|
179 |
+ "si" + "sin" // Sinhalese
|
|
180 |
+ "sk" + "slk" // Slovak
|
|
181 |
+ "sl" + "slv" // Slovenian
|
|
182 |
+ "sm" + "smo" // Samoan
|
|
183 |
+ "sn" + "sna" // Shona
|
|
184 |
+ "so" + "som" // Somali
|
|
185 |
+ "sq" + "sqi" // Albanian
|
|
186 |
+ "sr" + "srp" // Serbian
|
|
187 |
+ "ss" + "ssw" // Swati
|
|
188 |
+ "st" + "sot" // Southern Sotho
|
|
189 |
+ "su" + "sun" // Sundanese
|
|
190 |
+ "sv" + "swe" // Swedish
|
|
191 |
+ "sw" + "swa" // Swahili
|
|
192 |
+ "ta" + "tam" // Tamil
|
|
193 |
+ "te" + "tel" // Telugu
|
|
194 |
+ "tg" + "tgk" // Tajik
|
|
195 |
+ "th" + "tha" // Thai
|
|
196 |
+ "ti" + "tir" // Tigrinya
|
|
197 |
+ "tk" + "tuk" // Turkmen
|
|
198 |
+ "tl" + "tgl" // Tagalog
|
|
199 |
+ "tn" + "tsn" // Tswana
|
|
200 |
+ "to" + "ton" // Tonga
|
|
201 |
+ "tr" + "tur" // Turkish
|
|
202 |
+ "ts" + "tso" // Tsonga
|
|
203 |
+ "tt" + "tat" // Tatar
|
|
204 |
+ "tw" + "twi" // Twi
|
|
205 |
+ "ty" + "tah" // Tahitian
|
|
206 |
+ "ug" + "uig" // Uighur
|
|
207 |
+ "uk" + "ukr" // Ukrainian
|
|
208 |
+ "ur" + "urd" // Urdu
|
|
209 |
+ "uz" + "uzb" // Uzbek
|
|
210 |
+ "ve" + "ven" // Venda
|
|
211 |
+ "vi" + "vie" // Vietnamese
|
|
212 |
+ "vo" + "vol" // Volap?k
|
|
213 |
+ "wa" + "wln" // Walloon
|
|
214 |
+ "wo" + "wol" // Wolof
|
|
215 |
+ "xh" + "xho" // Xhosa
|
|
216 |
+ "yi" + "yid" // Yiddish
|
|
217 |
+ "yo" + "yor" // Yoruba
|
|
218 |
+ "za" + "zha" // Zhuang
|
|
219 |
+ "zh" + "zho" // Chinese
|
|
220 |
+ "zu" + "zul" // Zulu
|
|
221 |
;
|
|
222 |
|
|
223 |
/**
|
|
224 |
* The 2- and 3-letter ISO 3166 country codes.
|
|
225 |
*/
|
|
226 |
static final String isoCountryTable =
|
|
227 |
"AD" + "AND" // Andorra, Principality of
|
|
228 |
+ "AE" + "ARE" // United Arab Emirates
|
|
229 |
+ "AF" + "AFG" // Afghanistan
|
|
230 |
+ "AG" + "ATG" // Antigua and Barbuda
|
|
231 |
+ "AI" + "AIA" // Anguilla
|
|
232 |
+ "AL" + "ALB" // Albania, People's Socialist Republic of
|
|
233 |
+ "AM" + "ARM" // Armenia
|
|
234 |
+ "AN" + "ANT" // Netherlands Antilles
|
|
235 |
+ "AO" + "AGO" // Angola, Republic of
|
|
236 |
+ "AQ" + "ATA" // Antarctica (the territory South of 60 deg S)
|
|
237 |
+ "AR" + "ARG" // Argentina, Argentine Republic
|
|
238 |
+ "AS" + "ASM" // American Samoa
|
|
239 |
+ "AT" + "AUT" // Austria, Republic of
|
|
240 |
+ "AU" + "AUS" // Australia, Commonwealth of
|
|
241 |
+ "AW" + "ABW" // Aruba
|
|
242 |
+ "AX" + "ALA" // \u00c5land Islands
|
|
243 |
+ "AZ" + "AZE" // Azerbaijan, Republic of
|
|
244 |
+ "BA" + "BIH" // Bosnia and Herzegovina
|
|
245 |
+ "BB" + "BRB" // Barbados
|
|
246 |
+ "BD" + "BGD" // Bangladesh, People's Republic of
|
|
247 |
+ "BE" + "BEL" // Belgium, Kingdom of
|
|
248 |
+ "BF" + "BFA" // Burkina Faso
|
|
249 |
+ "BG" + "BGR" // Bulgaria, People's Republic of
|
|
250 |
+ "BH" + "BHR" // Bahrain, Kingdom of
|
|
251 |
+ "BI" + "BDI" // Burundi, Republic of
|
|
252 |
+ "BJ" + "BEN" // Benin, People's Republic of
|
|
253 |
+ "BM" + "BMU" // Bermuda
|
|
254 |
+ "BN" + "BRN" // Brunei Darussalam
|
|
255 |
+ "BO" + "BOL" // Bolivia, Republic of
|
|
256 |
+ "BR" + "BRA" // Brazil, Federative Republic of
|
|
257 |
+ "BS" + "BHS" // Bahamas, Commonwealth of the
|
|
258 |
+ "BT" + "BTN" // Bhutan, Kingdom of
|
|
259 |
+ "BV" + "BVT" // Bouvet Island (Bouvetoya)
|
|
260 |
+ "BW" + "BWA" // Botswana, Republic of
|
|
261 |
+ "BY" + "BLR" // Belarus
|
|
262 |
+ "BZ" + "BLZ" // Belize
|
|
263 |
+ "CA" + "CAN" // Canada
|
|
264 |
+ "CC" + "CCK" // Cocos (Keeling) Islands
|
|
265 |
+ "CD" + "COD" // Congo, Democratic Republic of
|
|
266 |
+ "CF" + "CAF" // Central African Republic
|
|
267 |
+ "CG" + "COG" // Congo, People's Republic of
|
|
268 |
+ "CH" + "CHE" // Switzerland, Swiss Confederation
|
|
269 |
+ "CI" + "CIV" // Cote D'Ivoire, Ivory Coast, Republic of the
|
|
270 |
+ "CK" + "COK" // Cook Islands
|
|
271 |
+ "CL" + "CHL" // Chile, Republic of
|
|
272 |
+ "CM" + "CMR" // Cameroon, United Republic of
|
|
273 |
+ "CN" + "CHN" // China, People's Republic of
|
|
274 |
+ "CO" + "COL" // Colombia, Republic of
|
|
275 |
+ "CR" + "CRI" // Costa Rica, Republic of
|
|
276 |
+ "CS" + "SCG" // Serbia and Montenegro
|
|
277 |
+ "CU" + "CUB" // Cuba, Republic of
|
|
278 |
+ "CV" + "CPV" // Cape Verde, Republic of
|
|
279 |
+ "CX" + "CXR" // Christmas Island
|
|
280 |
+ "CY" + "CYP" // Cyprus, Republic of
|
|
281 |
+ "CZ" + "CZE" // Czech Republic
|
|
282 |
+ "DE" + "DEU" // Germany
|
|
283 |
+ "DJ" + "DJI" // Djibouti, Republic of
|
|
284 |
+ "DK" + "DNK" // Denmark, Kingdom of
|
|
285 |
+ "DM" + "DMA" // Dominica, Commonwealth of
|
|
286 |
+ "DO" + "DOM" // Dominican Republic
|
|
287 |
+ "DZ" + "DZA" // Algeria, People's Democratic Republic of
|
|
288 |
+ "EC" + "ECU" // Ecuador, Republic of
|
|
289 |
+ "EE" + "EST" // Estonia
|
|
290 |
+ "EG" + "EGY" // Egypt, Arab Republic of
|
|
291 |
+ "EH" + "ESH" // Western Sahara
|
|
292 |
+ "ER" + "ERI" // Eritrea
|
|
293 |
+ "ES" + "ESP" // Spain, Spanish State
|
|
294 |
+ "ET" + "ETH" // Ethiopia
|
|
295 |
+ "FI" + "FIN" // Finland, Republic of
|
|
296 |
+ "FJ" + "FJI" // Fiji, Republic of the Fiji Islands
|
|
297 |
+ "FK" + "FLK" // Falkland Islands (Malvinas)
|
|
298 |
+ "FM" + "FSM" // Micronesia, Federated States of
|
|
299 |
+ "FO" + "FRO" // Faeroe Islands
|
|
300 |
+ "FR" + "FRA" // France, French Republic
|
|
301 |
+ "GA" + "GAB" // Gabon, Gabonese Republic
|
|
302 |
+ "GB" + "GBR" // United Kingdom of Great Britain & N. Ireland
|
|
303 |
+ "GD" + "GRD" // Grenada
|
|
304 |
+ "GE" + "GEO" // Georgia
|
|
305 |
+ "GF" + "GUF" // French Guiana
|
|
306 |
+ "GG" + "GGY" // Guernsey
|
|
307 |
+ "GH" + "GHA" // Ghana, Republic of
|
|
308 |
+ "GI" + "GIB" // Gibraltar
|
|
309 |
+ "GL" + "GRL" // Greenland
|
|
310 |
+ "GM" + "GMB" // Gambia, Republic of the
|
|
311 |
+ "GN" + "GIN" // Guinea, Revolutionary People's Rep'c of
|
|
312 |
+ "GP" + "GLP" // Guadaloupe
|
|
313 |
+ "GQ" + "GNQ" // Equatorial Guinea, Republic of
|
|
314 |
+ "GR" + "GRC" // Greece, Hellenic Republic
|
|
315 |
+ "GS" + "SGS" // South Georgia and the South Sandwich Islands
|
|
316 |
+ "GT" + "GTM" // Guatemala, Republic of
|
|
317 |
+ "GU" + "GUM" // Guam
|
|
318 |
+ "GW" + "GNB" // Guinea-Bissau, Republic of
|
|
319 |
+ "GY" + "GUY" // Guyana, Republic of
|
|
320 |
+ "HK" + "HKG" // Hong Kong, Special Administrative Region of China
|
|
321 |
+ "HM" + "HMD" // Heard and McDonald Islands
|
|
322 |
+ "HN" + "HND" // Honduras, Republic of
|
|
323 |
+ "HR" + "HRV" // Hrvatska (Croatia)
|
|
324 |
+ "HT" + "HTI" // Haiti, Republic of
|
|
325 |
+ "HU" + "HUN" // Hungary, Hungarian People's Republic
|
|
326 |
+ "ID" + "IDN" // Indonesia, Republic of
|
|
327 |
+ "IE" + "IRL" // Ireland
|
|
328 |
+ "IL" + "ISR" // Israel, State of
|
|
329 |
+ "IM" + "IMN" // Isle of Man
|
|
330 |
+ "IN" + "IND" // India, Republic of
|
|
331 |
+ "IO" + "IOT" // British Indian Ocean Territory (Chagos Archipelago)
|
|
332 |
+ "IQ" + "IRQ" // Iraq, Republic of
|
|
333 |
+ "IR" + "IRN" // Iran, Islamic Republic of
|
|
334 |
+ "IS" + "ISL" // Iceland, Republic of
|
|
335 |
+ "IT" + "ITA" // Italy, Italian Republic
|
|
336 |
+ "JE" + "JEY" // Jersey
|
|
337 |
+ "JM" + "JAM" // Jamaica
|
|
338 |
+ "JO" + "JOR" // Jordan, Hashemite Kingdom of
|
|
339 |
+ "JP" + "JPN" // Japan
|
|
340 |
+ "KE" + "KEN" // Kenya, Republic of
|
|
341 |
+ "KG" + "KGZ" // Kyrgyz Republic
|
|
342 |
+ "KH" + "KHM" // Cambodia, Kingdom of
|
|
343 |
+ "KI" + "KIR" // Kiribati, Republic of
|
|
344 |
+ "KM" + "COM" // Comoros, Union of the
|
|
345 |
+ "KN" + "KNA" // St. Kitts and Nevis
|
|
346 |
+ "KP" + "PRK" // Korea, Democratic People's Republic of
|
|
347 |
+ "KR" + "KOR" // Korea, Republic of
|
|
348 |
+ "KW" + "KWT" // Kuwait, State of
|
|
349 |
+ "KY" + "CYM" // Cayman Islands
|
|
350 |
+ "KZ" + "KAZ" // Kazakhstan, Republic of
|
|
351 |
+ "LA" + "LAO" // Lao People's Democratic Republic
|
|
352 |
+ "LB" + "LBN" // Lebanon, Lebanese Republic
|
|
353 |
+ "LC" + "LCA" // St. Lucia
|
|
354 |
+ "LI" + "LIE" // Liechtenstein, Principality of
|
|
355 |
+ "LK" + "LKA" // Sri Lanka, Democratic Socialist Republic of
|
|
356 |
+ "LR" + "LBR" // Liberia, Republic of
|
|
357 |
+ "LS" + "LSO" // Lesotho, Kingdom of
|
|
358 |
+ "LT" + "LTU" // Lithuania
|
|
359 |
+ "LU" + "LUX" // Luxembourg, Grand Duchy of
|
|
360 |
+ "LV" + "LVA" // Latvia
|
|
361 |
+ "LY" + "LBY" // Libyan Arab Jamahiriya
|
|
362 |
+ "MA" + "MAR" // Morocco, Kingdom of
|
|
363 |
+ "MC" + "MCO" // Monaco, Principality of
|
|
364 |
+ "MD" + "MDA" // Moldova, Republic of
|
|
365 |
+ "ME" + "MNE" // Montenegro, Republic of
|
|
366 |
+ "MG" + "MDG" // Madagascar, Republic of
|
|
367 |
+ "MH" + "MHL" // Marshall Islands
|
|
368 |
+ "MK" + "MKD" // Macedonia, the former Yugoslav Republic of
|
|
369 |
+ "ML" + "MLI" // Mali, Republic of
|
|
370 |
+ "MM" + "MMR" // Myanmar
|
|
371 |
+ "MN" + "MNG" // Mongolia, Mongolian People's Republic
|
|
372 |
+ "MO" + "MAC" // Macao, Special Administrative Region of China
|
|
373 |
+ "MP" + "MNP" // Northern Mariana Islands
|
|
374 |
+ "MQ" + "MTQ" // Martinique
|
|
375 |
+ "MR" + "MRT" // Mauritania, Islamic Republic of
|
|
376 |
+ "MS" + "MSR" // Montserrat
|
|
377 |
+ "MT" + "MLT" // Malta, Republic of
|
|
378 |
+ "MU" + "MUS" // Mauritius
|
|
379 |
+ "MV" + "MDV" // Maldives, Republic of
|
|
380 |
+ "MW" + "MWI" // Malawi, Republic of
|
|
381 |
+ "MX" + "MEX" // Mexico, United Mexican States
|
|
382 |
+ "MY" + "MYS" // Malaysia
|
|
383 |
+ "MZ" + "MOZ" // Mozambique, People's Republic of
|
|
384 |
+ "NA" + "NAM" // Namibia
|
|
385 |
+ "NC" + "NCL" // New Caledonia
|
|
386 |
+ "NE" + "NER" // Niger, Republic of the
|
|
387 |
+ "NF" + "NFK" // Norfolk Island
|
|
388 |
+ "NG" + "NGA" // Nigeria, Federal Republic of
|
|
389 |
+ "NI" + "NIC" // Nicaragua, Republic of
|
|
390 |
+ "NL" + "NLD" // Netherlands, Kingdom of the
|
|
391 |
+ "NO" + "NOR" // Norway, Kingdom of
|
|
392 |
+ "NP" + "NPL" // Nepal, Kingdom of
|
|
393 |
+ "NR" + "NRU" // Nauru, Republic of
|
|
394 |
+ "NU" + "NIU" // Niue, Republic of
|
|
395 |
+ "NZ" + "NZL" // New Zealand
|
|
396 |
+ "OM" + "OMN" // Oman, Sultanate of
|
|
397 |
+ "PA" + "PAN" // Panama, Republic of
|
|
398 |
+ "PE" + "PER" // Peru, Republic of
|
|
399 |
+ "PF" + "PYF" // French Polynesia
|
|
400 |
+ "PG" + "PNG" // Papua New Guinea
|
|
401 |
+ "PH" + "PHL" // Philippines, Republic of the
|
|
402 |
+ "PK" + "PAK" // Pakistan, Islamic Republic of
|
|
403 |
+ "PL" + "POL" // Poland, Polish People's Republic
|
|
404 |
+ "PM" + "SPM" // St. Pierre and Miquelon
|
|
405 |
+ "PN" + "PCN" // Pitcairn Island
|
|
406 |
+ "PR" + "PRI" // Puerto Rico
|
|
407 |
+ "PS" + "PSE" // Palestinian Territory, Occupied
|
|
408 |
+ "PT" + "PRT" // Portugal, Portuguese Republic
|
|
409 |
+ "PW" + "PLW" // Palau
|
|
410 |
+ "PY" + "PRY" // Paraguay, Republic of
|
|
411 |
+ "QA" + "QAT" // Qatar, State of
|
|
412 |
+ "RE" + "REU" // Reunion
|
|
413 |
+ "RO" + "ROU" // Romania, Socialist Republic of
|
|
414 |
+ "RS" + "SRB" // Serbia, Republic of
|
|
415 |
+ "RU" + "RUS" // Russian Federation
|
|
416 |
+ "RW" + "RWA" // Rwanda, Rwandese Republic
|
|
417 |
+ "SA" + "SAU" // Saudi Arabia, Kingdom of
|
|
418 |
+ "SB" + "SLB" // Solomon Islands
|
|
419 |
+ "SC" + "SYC" // Seychelles, Republic of
|
|
420 |
+ "SD" + "SDN" // Sudan, Democratic Republic of the
|
|
421 |
+ "SE" + "SWE" // Sweden, Kingdom of
|
|
422 |
+ "SG" + "SGP" // Singapore, Republic of
|
|
423 |
+ "SH" + "SHN" // St. Helena
|
|
424 |
+ "SI" + "SVN" // Slovenia
|
|
425 |
+ "SJ" + "SJM" // Svalbard & Jan Mayen Islands
|
|
426 |
+ "SK" + "SVK" // Slovakia (Slovak Republic)
|
|
427 |
+ "SL" + "SLE" // Sierra Leone, Republic of
|
|
428 |
+ "SM" + "SMR" // San Marino, Republic of
|
|
429 |
+ "SN" + "SEN" // Senegal, Republic of
|
|
430 |
+ "SO" + "SOM" // Somalia, Somali Republic
|
|
431 |
+ "SR" + "SUR" // Suriname, Republic of
|
|
432 |
+ "ST" + "STP" // Sao Tome and Principe, Democratic Republic of
|
|
433 |
+ "SV" + "SLV" // El Salvador, Republic of
|
|
434 |
+ "SY" + "SYR" // Syrian Arab Republic
|
|
435 |
+ "SZ" + "SWZ" // Swaziland, Kingdom of
|
|
436 |
+ "TC" + "TCA" // Turks and Caicos Islands
|
|
437 |
+ "TD" + "TCD" // Chad, Republic of
|
|
438 |
+ "TF" + "ATF" // French Southern Territories
|
|
439 |
+ "TG" + "TGO" // Togo, Togolese Republic
|
|
440 |
+ "TH" + "THA" // Thailand, Kingdom of
|
|
441 |
+ "TJ" + "TJK" // Tajikistan
|
|
442 |
+ "TK" + "TKL" // Tokelau (Tokelau Islands)
|
|
443 |
+ "TL" + "TLS" // Timor-Leste, Democratic Republic of
|
|
444 |
+ "TM" + "TKM" // Turkmenistan
|
|
445 |
+ "TN" + "TUN" // Tunisia, Republic of
|
|
446 |
+ "TO" + "TON" // Tonga, Kingdom of
|
|
447 |
+ "TR" + "TUR" // Turkey, Republic of
|
|
448 |
+ "TT" + "TTO" // Trinidad and Tobago, Republic of
|
|
449 |
+ "TV" + "TUV" // Tuvalu
|
|
450 |
+ "TW" + "TWN" // Taiwan, Province of China
|
|
451 |
+ "TZ" + "TZA" // Tanzania, United Republic of
|
|
452 |
+ "UA" + "UKR" // Ukraine
|
|
453 |
+ "UG" + "UGA" // Uganda, Republic of
|
|
454 |
+ "UM" + "UMI" // United States Minor Outlying Islands
|
|
455 |
+ "US" + "USA" // United States of America
|
|
456 |
+ "UY" + "URY" // Uruguay, Eastern Republic of
|
|
457 |
+ "UZ" + "UZB" // Uzbekistan
|
|
458 |
+ "VA" + "VAT" // Holy See (Vatican City State)
|
|
459 |
+ "VC" + "VCT" // St. Vincent and the Grenadines
|
|
460 |
+ "VE" + "VEN" // Venezuela, Bolivarian Republic of
|
|
461 |
+ "VG" + "VGB" // British Virgin Islands
|
|
462 |
+ "VI" + "VIR" // US Virgin Islands
|
|
463 |
+ "VN" + "VNM" // Viet Nam, Socialist Republic of
|
|
464 |
+ "VU" + "VUT" // Vanuatu
|
|
465 |
+ "WF" + "WLF" // Wallis and Futuna Islands
|
|
466 |
+ "WS" + "WSM" // Samoa, Independent State of
|
|
467 |
+ "YE" + "YEM" // Yemen
|
|
468 |
+ "YT" + "MYT" // Mayotte
|
|
469 |
+ "ZA" + "ZAF" // South Africa, Republic of
|
|
470 |
+ "ZM" + "ZMB" // Zambia, Republic of
|
|
471 |
+ "ZW" + "ZWE" // Zimbabwe
|
|
472 |
;
|
|
473 |
|
|
474 |
private LocaleISOData() {
|
|
475 |
}
|
|
476 |
}
|