beawesomeinstead-rubyglot 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/libraries/definitions/countries.rb +1236 -0
- data/libraries/definitions/languages.rb +564 -0
- data/libraries/rubyglot.rb +10 -0
- data/libraries/rubyglot/dictionary.rb +17 -0
- data/libraries/rubyglot/locale.rb +28 -0
- data/rakefile +6 -0
- data/readme +0 -0
- data/rubyglot.gemspec +13 -0
- data/specifications/fixtures/en_US.UTF-8.rb +13 -0
- data/specifications/fixtures/ru_RU.UTF-8.rb +13 -0
- data/specifications/localization/dictionary_spec.rb +4 -0
- data/specifications/localization/locale_spec.rb +33 -0
- data/specifications/spec_helper.rb +2 -0
- metadata +69 -0
@@ -0,0 +1,1236 @@
|
|
1
|
+
module RubyGlot
|
2
|
+
module Definitions
|
3
|
+
module Countries
|
4
|
+
define "AD" do |country|
|
5
|
+
country.name "Andorra"
|
6
|
+
country.capital { "capital" => "Andorra la Vella" }
|
7
|
+
country.currency { "ISO 4217" => "EUR" }
|
8
|
+
end
|
9
|
+
define "AE" do |country|
|
10
|
+
country.name "United Arab Emirates"
|
11
|
+
country.capital { "capital" => "Abu Dhabi" }
|
12
|
+
country.currency { "ISO 4217" => "AED" }
|
13
|
+
end
|
14
|
+
define "AF" do |country|
|
15
|
+
country.name "Afghanistan"
|
16
|
+
country.capital { "capital" => "Kabul" }
|
17
|
+
country.currency { "ISO 4217" => "AFN" }
|
18
|
+
end
|
19
|
+
define "AG" do |country|
|
20
|
+
country.name "Antigua and Barbuda"
|
21
|
+
country.capital { "capital" => "St. John's" }
|
22
|
+
country.currency { "ISO 4217" => "XCD" }
|
23
|
+
end
|
24
|
+
define "AI" do |country|
|
25
|
+
country.name "Anguilla"
|
26
|
+
country.capital { "capital" => "The Valley" }
|
27
|
+
country.currency { "ISO 4217" => "XCD" }
|
28
|
+
end
|
29
|
+
define "AL" do |country|
|
30
|
+
country.name "Albania"
|
31
|
+
country.capital { "capital" => "Tirana" }
|
32
|
+
country.currency { "ISO 4217" => "ALL" }
|
33
|
+
end
|
34
|
+
define "AM" do |country|
|
35
|
+
country.name "Armenia"
|
36
|
+
country.capital { "capital" => "Yerevan" }
|
37
|
+
country.currency { "ISO 4217" => "AMD" }
|
38
|
+
end
|
39
|
+
define "AN" do |country|
|
40
|
+
country.name "Netherlands Antilles"
|
41
|
+
country.capital { "capital" => "Willemstad" }
|
42
|
+
country.currency { "ISO 4217" => "ANG" }
|
43
|
+
end
|
44
|
+
define "AO" do |country|
|
45
|
+
country.name "Angola"
|
46
|
+
country.capital { "capital" => "Luanda" }
|
47
|
+
country.currency { "ISO 4217" => "AOA" }
|
48
|
+
end
|
49
|
+
define "AQ" do |country|
|
50
|
+
country.name "Antarctica"
|
51
|
+
country.capital { "capital" => "" }
|
52
|
+
country.currency { "ISO 4217" => "" }
|
53
|
+
end
|
54
|
+
define "AR" do |country|
|
55
|
+
country.name "Argentina"
|
56
|
+
country.capital { "capital" => "Buenos Aires" }
|
57
|
+
country.currency { "ISO 4217" => "ARS" }
|
58
|
+
end
|
59
|
+
define "AS" do |country|
|
60
|
+
country.name "American Samoa"
|
61
|
+
country.capital { "capital" => "Pago Pago" }
|
62
|
+
country.currency { "ISO 4217" => "USD" }
|
63
|
+
end
|
64
|
+
define "AT" do |country|
|
65
|
+
country.name "Austria"
|
66
|
+
country.capital { "capital" => "Vienna" }
|
67
|
+
country.currency { "ISO 4217" => "EUR" }
|
68
|
+
end
|
69
|
+
define "AU" do |country|
|
70
|
+
country.name "Australia"
|
71
|
+
country.capital { "capital" => "Canberra" }
|
72
|
+
country.currency { "ISO 4217" => "AUD" }
|
73
|
+
end
|
74
|
+
define "AW" do |country|
|
75
|
+
country.name "Aruba"
|
76
|
+
country.capital { "capital" => "Oranjestad" }
|
77
|
+
country.currency { "ISO 4217" => "AWG" }
|
78
|
+
end
|
79
|
+
define "AX" do |country|
|
80
|
+
country.name "Aland Islands"
|
81
|
+
country.capital { "capital" => "Mariehamn" }
|
82
|
+
country.currency { "ISO 4217" => "EUR" }
|
83
|
+
end
|
84
|
+
define "AZ" do |country|
|
85
|
+
country.name "Azerbaijan"
|
86
|
+
country.capital { "capital" => "Baku" }
|
87
|
+
country.currency { "ISO 4217" => "AZM" }
|
88
|
+
end
|
89
|
+
define "BA" do |country|
|
90
|
+
country.name "Bosnia and Herzegovina"
|
91
|
+
country.capital { "capital" => "Sarajevo" }
|
92
|
+
country.currency { "ISO 4217" => "BAM" }
|
93
|
+
end
|
94
|
+
define "BB" do |country|
|
95
|
+
country.name "Barbados"
|
96
|
+
country.capital { "capital" => "Bridgetown" }
|
97
|
+
country.currency { "ISO 4217" => "BBD" }
|
98
|
+
end
|
99
|
+
define "BD" do |country|
|
100
|
+
country.name "Bangladesh"
|
101
|
+
country.capital { "capital" => "Dhaka" }
|
102
|
+
country.currency { "ISO 4217" => "BDT" }
|
103
|
+
end
|
104
|
+
define "BE" do |country|
|
105
|
+
country.name "Belgium"
|
106
|
+
country.capital { "capital" => "Brussels" }
|
107
|
+
country.currency { "ISO 4217" => "EUR" }
|
108
|
+
end
|
109
|
+
define "BF" do |country|
|
110
|
+
country.name "Burkina Faso"
|
111
|
+
country.capital { "capital" => "Ouagadougou" }
|
112
|
+
country.currency { "ISO 4217" => "XOF" }
|
113
|
+
end
|
114
|
+
define "BG" do |country|
|
115
|
+
country.name "Bulgaria"
|
116
|
+
country.capital { "capital" => "Sofia" }
|
117
|
+
country.currency { "ISO 4217" => "BGN" }
|
118
|
+
end
|
119
|
+
define "BH" do |country|
|
120
|
+
country.name "Bahrain"
|
121
|
+
country.capital { "capital" => "Manama" }
|
122
|
+
country.currency { "ISO 4217" => "BHD" }
|
123
|
+
end
|
124
|
+
define "BI" do |country|
|
125
|
+
country.name "Burundi"
|
126
|
+
country.capital { "capital" => "Bujumbura" }
|
127
|
+
country.currency { "ISO 4217" => "BIF" }
|
128
|
+
end
|
129
|
+
define "BJ" do |country|
|
130
|
+
country.name "Benin"
|
131
|
+
country.capital { "capital" => "Porto-Novo" }
|
132
|
+
country.currency { "ISO 4217" => "XOF" }
|
133
|
+
end
|
134
|
+
define "BL" do |country|
|
135
|
+
country.name "Saint Barthélemy"
|
136
|
+
country.capital { "capital" => "Gustavia" }
|
137
|
+
country.currency { "ISO 4217" => "EUR" }
|
138
|
+
end
|
139
|
+
define "BM" do |country|
|
140
|
+
country.name "Bermuda"
|
141
|
+
country.capital { "capital" => "Hamilton" }
|
142
|
+
country.currency { "ISO 4217" => "BMD" }
|
143
|
+
end
|
144
|
+
define "BN" do |country|
|
145
|
+
country.name "Brunei"
|
146
|
+
country.capital { "capital" => "Bandar Seri Begawan" }
|
147
|
+
country.currency { "ISO 4217" => "BND" }
|
148
|
+
end
|
149
|
+
define "BO" do |country|
|
150
|
+
country.name "Bolivia"
|
151
|
+
country.capital { "capital" => "La Paz" }
|
152
|
+
country.currency { "ISO 4217" => "BOB" }
|
153
|
+
end
|
154
|
+
define "BR" do |country|
|
155
|
+
country.name "Brazil"
|
156
|
+
country.capital { "capital" => "Brasília" }
|
157
|
+
country.currency { "ISO 4217" => "BRL" }
|
158
|
+
end
|
159
|
+
define "BS" do |country|
|
160
|
+
country.name "Bahamas"
|
161
|
+
country.capital { "capital" => "Nassau" }
|
162
|
+
country.currency { "ISO 4217" => "BSD" }
|
163
|
+
end
|
164
|
+
define "BT" do |country|
|
165
|
+
country.name "Bhutan"
|
166
|
+
country.capital { "capital" => "Thimphu" }
|
167
|
+
country.currency { "ISO 4217" => "BTN" }
|
168
|
+
end
|
169
|
+
define "BV" do |country|
|
170
|
+
country.name "Bouvet Island"
|
171
|
+
country.capital { "capital" => "" }
|
172
|
+
country.currency { "ISO 4217" => "NOK" }
|
173
|
+
end
|
174
|
+
define "BW" do |country|
|
175
|
+
country.name "Botswana"
|
176
|
+
country.capital { "capital" => "Gaborone" }
|
177
|
+
country.currency { "ISO 4217" => "BWP" }
|
178
|
+
end
|
179
|
+
define "BY" do |country|
|
180
|
+
country.name "Belarus"
|
181
|
+
country.capital { "capital" => "Minsk" }
|
182
|
+
country.currency { "ISO 4217" => "BYR" }
|
183
|
+
end
|
184
|
+
define "BZ" do |country|
|
185
|
+
country.name "Belize"
|
186
|
+
country.capital { "capital" => "Belmopan" }
|
187
|
+
country.currency { "ISO 4217" => "BZD" }
|
188
|
+
end
|
189
|
+
define "CA" do |country|
|
190
|
+
country.name "Canada"
|
191
|
+
country.capital { "capital" => "Ottawa" }
|
192
|
+
country.currency { "ISO 4217" => "CAD" }
|
193
|
+
end
|
194
|
+
define "CC" do |country|
|
195
|
+
country.name "Cocos Islands"
|
196
|
+
country.capital { "capital" => "West Island" }
|
197
|
+
country.currency { "ISO 4217" => "AUD" }
|
198
|
+
end
|
199
|
+
define "CD" do |country|
|
200
|
+
country.name "Congo - Kinshasa"
|
201
|
+
country.capital { "capital" => "Kinshasa" }
|
202
|
+
country.currency { "ISO 4217" => "CDF" }
|
203
|
+
end
|
204
|
+
define "CF" do |country|
|
205
|
+
country.name "Central African Republic"
|
206
|
+
country.capital { "capital" => "Bangui" }
|
207
|
+
country.currency { "ISO 4217" => "XAF" }
|
208
|
+
end
|
209
|
+
define "CG" do |country|
|
210
|
+
country.name "Congo - Brazzaville"
|
211
|
+
country.capital { "capital" => "Brazzaville" }
|
212
|
+
country.currency { "ISO 4217" => "XAF" }
|
213
|
+
end
|
214
|
+
define "CH" do |country|
|
215
|
+
country.name "Switzerland"
|
216
|
+
country.capital { "capital" => "Berne" }
|
217
|
+
country.currency { "ISO 4217" => "CHF" }
|
218
|
+
end
|
219
|
+
define "CI" do |country|
|
220
|
+
country.name "Ivory Coast"
|
221
|
+
country.capital { "capital" => "Yamoussoukro" }
|
222
|
+
country.currency { "ISO 4217" => "XOF" }
|
223
|
+
end
|
224
|
+
define "CK" do |country|
|
225
|
+
country.name "Cook Islands"
|
226
|
+
country.capital { "capital" => "Avarua" }
|
227
|
+
country.currency { "ISO 4217" => "NZD" }
|
228
|
+
end
|
229
|
+
define "CL" do |country|
|
230
|
+
country.name "Chile"
|
231
|
+
country.capital { "capital" => "Santiago" }
|
232
|
+
country.currency { "ISO 4217" => "CLP" }
|
233
|
+
end
|
234
|
+
define "CM" do |country|
|
235
|
+
country.name "Cameroon"
|
236
|
+
country.capital { "capital" => "Yaoundé" }
|
237
|
+
country.currency { "ISO 4217" => "XAF" }
|
238
|
+
end
|
239
|
+
define "CN" do |country|
|
240
|
+
country.name "China"
|
241
|
+
country.capital { "capital" => "Beijing" }
|
242
|
+
country.currency { "ISO 4217" => "CNY" }
|
243
|
+
end
|
244
|
+
define "CO" do |country|
|
245
|
+
country.name "Colombia"
|
246
|
+
country.capital { "capital" => "Bogotá" }
|
247
|
+
country.currency { "ISO 4217" => "COP" }
|
248
|
+
end
|
249
|
+
define "CR" do |country|
|
250
|
+
country.name "Costa Rica"
|
251
|
+
country.capital { "capital" => "San José" }
|
252
|
+
country.currency { "ISO 4217" => "CRC" }
|
253
|
+
end
|
254
|
+
define "CU" do |country|
|
255
|
+
country.name "Cuba"
|
256
|
+
country.capital { "capital" => "Havana" }
|
257
|
+
country.currency { "ISO 4217" => "CUP" }
|
258
|
+
end
|
259
|
+
define "CV" do |country|
|
260
|
+
country.name "Cape Verde"
|
261
|
+
country.capital { "capital" => "Praia" }
|
262
|
+
country.currency { "ISO 4217" => "CVE" }
|
263
|
+
end
|
264
|
+
define "CX" do |country|
|
265
|
+
country.name "Christmas Island"
|
266
|
+
country.capital { "capital" => "Flying Fish Cove" }
|
267
|
+
country.currency { "ISO 4217" => "AUD" }
|
268
|
+
end
|
269
|
+
define "CY" do |country|
|
270
|
+
country.name "Cyprus"
|
271
|
+
country.capital { "capital" => "Nicosia" }
|
272
|
+
country.currency { "ISO 4217" => "CYP" }
|
273
|
+
end
|
274
|
+
define "CZ" do |country|
|
275
|
+
country.name "Czech Republic"
|
276
|
+
country.capital { "capital" => "Prague" }
|
277
|
+
country.currency { "ISO 4217" => "CZK" }
|
278
|
+
end
|
279
|
+
define "DE" do |country|
|
280
|
+
country.name "Germany"
|
281
|
+
country.capital { "capital" => "Berlin" }
|
282
|
+
country.currency { "ISO 4217" => "EUR" }
|
283
|
+
end
|
284
|
+
define "DJ" do |country|
|
285
|
+
country.name "Djibouti"
|
286
|
+
country.capital { "capital" => "Djibouti" }
|
287
|
+
country.currency { "ISO 4217" => "DJF" }
|
288
|
+
end
|
289
|
+
define "DK" do |country|
|
290
|
+
country.name "Denmark"
|
291
|
+
country.capital { "capital" => "Copenhagen" }
|
292
|
+
country.currency { "ISO 4217" => "DKK" }
|
293
|
+
end
|
294
|
+
define "DM" do |country|
|
295
|
+
country.name "Dominica"
|
296
|
+
country.capital { "capital" => "Roseau" }
|
297
|
+
country.currency { "ISO 4217" => "XCD" }
|
298
|
+
end
|
299
|
+
define "DO" do |country|
|
300
|
+
country.name "Dominican Republic"
|
301
|
+
country.capital { "capital" => "Santo Domingo" }
|
302
|
+
country.currency { "ISO 4217" => "DOP" }
|
303
|
+
end
|
304
|
+
define "DZ" do |country|
|
305
|
+
country.name "Algeria"
|
306
|
+
country.capital { "capital" => "Algiers" }
|
307
|
+
country.currency { "ISO 4217" => "DZD" }
|
308
|
+
end
|
309
|
+
define "EC" do |country|
|
310
|
+
country.name "Ecuador"
|
311
|
+
country.capital { "capital" => "Quito" }
|
312
|
+
country.currency { "ISO 4217" => "USD" }
|
313
|
+
end
|
314
|
+
define "EE" do |country|
|
315
|
+
country.name "Estonia"
|
316
|
+
country.capital { "capital" => "Tallinn" }
|
317
|
+
country.currency { "ISO 4217" => "EEK" }
|
318
|
+
end
|
319
|
+
define "EG" do |country|
|
320
|
+
country.name "Egypt"
|
321
|
+
country.capital { "capital" => "Cairo" }
|
322
|
+
country.currency { "ISO 4217" => "EGP" }
|
323
|
+
end
|
324
|
+
define "EH" do |country|
|
325
|
+
country.name "Western Sahara"
|
326
|
+
country.capital { "capital" => "El-Aaiun" }
|
327
|
+
country.currency { "ISO 4217" => "MAD" }
|
328
|
+
end
|
329
|
+
define "ER" do |country|
|
330
|
+
country.name "Eritrea"
|
331
|
+
country.capital { "capital" => "Asmara" }
|
332
|
+
country.currency { "ISO 4217" => "ERN" }
|
333
|
+
end
|
334
|
+
define "ES" do |country|
|
335
|
+
country.name "Spain"
|
336
|
+
country.capital { "capital" => "Madrid" }
|
337
|
+
country.currency { "ISO 4217" => "EUR" }
|
338
|
+
end
|
339
|
+
define "ET" do |country|
|
340
|
+
country.name "Ethiopia"
|
341
|
+
country.capital { "capital" => "Addis Ababa" }
|
342
|
+
country.currency { "ISO 4217" => "ETB" }
|
343
|
+
end
|
344
|
+
define "FI" do |country|
|
345
|
+
country.name "Finland"
|
346
|
+
country.capital { "capital" => "Helsinki" }
|
347
|
+
country.currency { "ISO 4217" => "EUR" }
|
348
|
+
end
|
349
|
+
define "FJ" do |country|
|
350
|
+
country.name "Fiji"
|
351
|
+
country.capital { "capital" => "Suva" }
|
352
|
+
country.currency { "ISO 4217" => "FJD" }
|
353
|
+
end
|
354
|
+
define "FK" do |country|
|
355
|
+
country.name "Falkland Islands"
|
356
|
+
country.capital { "capital" => "Stanley" }
|
357
|
+
country.currency { "ISO 4217" => "FKP" }
|
358
|
+
end
|
359
|
+
define "FM" do |country|
|
360
|
+
country.name "Micronesia"
|
361
|
+
country.capital { "capital" => "Palikir" }
|
362
|
+
country.currency { "ISO 4217" => "USD" }
|
363
|
+
end
|
364
|
+
define "FO" do |country|
|
365
|
+
country.name "Faroe Islands"
|
366
|
+
country.capital { "capital" => "Tórshavn" }
|
367
|
+
country.currency { "ISO 4217" => "DKK" }
|
368
|
+
end
|
369
|
+
define "FR" do |country|
|
370
|
+
country.name "France"
|
371
|
+
country.capital { "capital" => "Paris" }
|
372
|
+
country.currency { "ISO 4217" => "EUR" }
|
373
|
+
end
|
374
|
+
define "GA" do |country|
|
375
|
+
country.name "Gabon"
|
376
|
+
country.capital { "capital" => "Libreville" }
|
377
|
+
country.currency { "ISO 4217" => "XAF" }
|
378
|
+
end
|
379
|
+
define "GB" do |country|
|
380
|
+
country.name "United Kingdom"
|
381
|
+
country.capital { "capital" => "London" }
|
382
|
+
country.currency { "ISO 4217" => "GBP" }
|
383
|
+
end
|
384
|
+
define "GD" do |country|
|
385
|
+
country.name "Grenada"
|
386
|
+
country.capital { "capital" => "St. George's" }
|
387
|
+
country.currency { "ISO 4217" => "XCD" }
|
388
|
+
end
|
389
|
+
define "GE" do |country|
|
390
|
+
country.name "Georgia"
|
391
|
+
country.capital { "capital" => "Tbilisi" }
|
392
|
+
country.currency { "ISO 4217" => "GEL" }
|
393
|
+
end
|
394
|
+
define "GF" do |country|
|
395
|
+
country.name "French Guiana"
|
396
|
+
country.capital { "capital" => "Cayenne" }
|
397
|
+
country.currency { "ISO 4217" => "EUR" }
|
398
|
+
end
|
399
|
+
define "GG" do |country|
|
400
|
+
country.name "Guernsey"
|
401
|
+
country.capital { "capital" => "St Peter Port" }
|
402
|
+
country.currency { "ISO 4217" => "GPD" }
|
403
|
+
end
|
404
|
+
define "GH" do |country|
|
405
|
+
country.name "Ghana"
|
406
|
+
country.capital { "capital" => "Accra" }
|
407
|
+
country.currency { "ISO 4217" => "GHC" }
|
408
|
+
end
|
409
|
+
define "GI" do |country|
|
410
|
+
country.name "Gibraltar"
|
411
|
+
country.capital { "capital" => "Gibraltar" }
|
412
|
+
country.currency { "ISO 4217" => "GIP" }
|
413
|
+
end
|
414
|
+
define "GL" do |country|
|
415
|
+
country.name "Greenland"
|
416
|
+
country.capital { "capital" => "Nuuk" }
|
417
|
+
country.currency { "ISO 4217" => "DKK" }
|
418
|
+
end
|
419
|
+
define "GM" do |country|
|
420
|
+
country.name "Gambia"
|
421
|
+
country.capital { "capital" => "Banjul" }
|
422
|
+
country.currency { "ISO 4217" => "GMD" }
|
423
|
+
end
|
424
|
+
define "GN" do |country|
|
425
|
+
country.name "Guinea"
|
426
|
+
country.capital { "capital" => "Conakry" }
|
427
|
+
country.currency { "ISO 4217" => "GNF" }
|
428
|
+
end
|
429
|
+
define "GP" do |country|
|
430
|
+
country.name "Guadeloupe"
|
431
|
+
country.capital { "capital" => "Basse-Terre" }
|
432
|
+
country.currency { "ISO 4217" => "EUR" }
|
433
|
+
end
|
434
|
+
define "GQ" do |country|
|
435
|
+
country.name "Equatorial Guinea"
|
436
|
+
country.capital { "capital" => "Malabo" }
|
437
|
+
country.currency { "ISO 4217" => "XAF" }
|
438
|
+
end
|
439
|
+
define "GR" do |country|
|
440
|
+
country.name "Greece"
|
441
|
+
country.capital { "capital" => "Athens" }
|
442
|
+
country.currency { "ISO 4217" => "EUR" }
|
443
|
+
end
|
444
|
+
define "GS" do |country|
|
445
|
+
country.name "South Georgia and the South Sandwich Islands"
|
446
|
+
country.capital { "capital" => "Grytviken" }
|
447
|
+
country.currency { "ISO 4217" => "GBP" }
|
448
|
+
end
|
449
|
+
define "GT" do |country|
|
450
|
+
country.name "Guatemala"
|
451
|
+
country.capital { "capital" => "Guatemala City" }
|
452
|
+
country.currency { "ISO 4217" => "GTQ" }
|
453
|
+
end
|
454
|
+
define "GU" do |country|
|
455
|
+
country.name "Guam"
|
456
|
+
country.capital { "capital" => "Hagåtña" }
|
457
|
+
country.currency { "ISO 4217" => "USD" }
|
458
|
+
end
|
459
|
+
define "GW" do |country|
|
460
|
+
country.name "Guinea-Bissau"
|
461
|
+
country.capital { "capital" => "Bissau" }
|
462
|
+
country.currency { "ISO 4217" => "XOF" }
|
463
|
+
end
|
464
|
+
define "GY" do |country|
|
465
|
+
country.name "Guyana"
|
466
|
+
country.capital { "capital" => "Georgetown" }
|
467
|
+
country.currency { "ISO 4217" => "GYD" }
|
468
|
+
end
|
469
|
+
define "HK" do |country|
|
470
|
+
country.name "Hong Kong"
|
471
|
+
country.capital { "capital" => "Hong Kong" }
|
472
|
+
country.currency { "ISO 4217" => "HKD" }
|
473
|
+
end
|
474
|
+
define "HM" do |country|
|
475
|
+
country.name "Heard Island and McDonald Islands"
|
476
|
+
country.capital { "capital" => "" }
|
477
|
+
country.currency { "ISO 4217" => "AUD" }
|
478
|
+
end
|
479
|
+
define "HN" do |country|
|
480
|
+
country.name "Honduras"
|
481
|
+
country.capital { "capital" => "Tegucigalpa" }
|
482
|
+
country.currency { "ISO 4217" => "HNL" }
|
483
|
+
end
|
484
|
+
define "HR" do |country|
|
485
|
+
country.name "Croatia"
|
486
|
+
country.capital { "capital" => "Zagreb" }
|
487
|
+
country.currency { "ISO 4217" => "HRK" }
|
488
|
+
end
|
489
|
+
define "HT" do |country|
|
490
|
+
country.name "Haiti"
|
491
|
+
country.capital { "capital" => "Port-au-Prince" }
|
492
|
+
country.currency { "ISO 4217" => "HTG" }
|
493
|
+
end
|
494
|
+
define "HU" do |country|
|
495
|
+
country.name "Hungary"
|
496
|
+
country.capital { "capital" => "Budapest" }
|
497
|
+
country.currency { "ISO 4217" => "HUF" }
|
498
|
+
end
|
499
|
+
define "ID" do |country|
|
500
|
+
country.name "Indonesia"
|
501
|
+
country.capital { "capital" => "Jakarta" }
|
502
|
+
country.currency { "ISO 4217" => "IDR" }
|
503
|
+
end
|
504
|
+
define "IE" do |country|
|
505
|
+
country.name "Ireland"
|
506
|
+
country.capital { "capital" => "Dublin" }
|
507
|
+
country.currency { "ISO 4217" => "EUR" }
|
508
|
+
end
|
509
|
+
define "IL" do |country|
|
510
|
+
country.name "Israel"
|
511
|
+
country.capital { "capital" => "Jerusalem" }
|
512
|
+
country.currency { "ISO 4217" => "ILS" }
|
513
|
+
end
|
514
|
+
define "IM" do |country|
|
515
|
+
country.name "Isle of Man"
|
516
|
+
country.capital { "capital" => "Douglas, Isle of Man" }
|
517
|
+
country.currency { "ISO 4217" => "GPD" }
|
518
|
+
end
|
519
|
+
define "IN" do |country|
|
520
|
+
country.name "India"
|
521
|
+
country.capital { "capital" => "New Delhi" }
|
522
|
+
country.currency { "ISO 4217" => "INR" }
|
523
|
+
end
|
524
|
+
define "IO" do |country|
|
525
|
+
country.name "British Indian Ocean Territory"
|
526
|
+
country.capital { "capital" => "Diego Garcia" }
|
527
|
+
country.currency { "ISO 4217" => "USD" }
|
528
|
+
end
|
529
|
+
define "IQ" do |country|
|
530
|
+
country.name "Iraq"
|
531
|
+
country.capital { "capital" => "Baghdad" }
|
532
|
+
country.currency { "ISO 4217" => "IQD" }
|
533
|
+
end
|
534
|
+
define "IR" do |country|
|
535
|
+
country.name "Iran"
|
536
|
+
country.capital { "capital" => "Tehran" }
|
537
|
+
country.currency { "ISO 4217" => "IRR" }
|
538
|
+
end
|
539
|
+
define "IS" do |country|
|
540
|
+
country.name "Iceland"
|
541
|
+
country.capital { "capital" => "Reykjavík" }
|
542
|
+
country.currency { "ISO 4217" => "ISK" }
|
543
|
+
end
|
544
|
+
define "IT" do |country|
|
545
|
+
country.name "Italy"
|
546
|
+
country.capital { "capital" => "Rome" }
|
547
|
+
country.currency { "ISO 4217" => "EUR" }
|
548
|
+
end
|
549
|
+
define "JE" do |country|
|
550
|
+
country.name "Jersey"
|
551
|
+
country.capital { "capital" => "Saint Helier" }
|
552
|
+
country.currency { "ISO 4217" => "GPD" }
|
553
|
+
end
|
554
|
+
define "JM" do |country|
|
555
|
+
country.name "Jamaica"
|
556
|
+
country.capital { "capital" => "Kingston" }
|
557
|
+
country.currency { "ISO 4217" => "JMD" }
|
558
|
+
end
|
559
|
+
define "JO" do |country|
|
560
|
+
country.name "Jordan"
|
561
|
+
country.capital { "capital" => "Amman" }
|
562
|
+
country.currency { "ISO 4217" => "JOD" }
|
563
|
+
end
|
564
|
+
define "JP" do |country|
|
565
|
+
country.name "Japan"
|
566
|
+
country.capital { "capital" => "Tokyo" }
|
567
|
+
country.currency { "ISO 4217" => "JPY" }
|
568
|
+
end
|
569
|
+
define "KE" do |country|
|
570
|
+
country.name "Kenya"
|
571
|
+
country.capital { "capital" => "Nairobi" }
|
572
|
+
country.currency { "ISO 4217" => "KES" }
|
573
|
+
end
|
574
|
+
define "KG" do |country|
|
575
|
+
country.name "Kyrgyzstan"
|
576
|
+
country.capital { "capital" => "Bishkek" }
|
577
|
+
country.currency { "ISO 4217" => "KGS" }
|
578
|
+
end
|
579
|
+
define "KH" do |country|
|
580
|
+
country.name "Cambodia"
|
581
|
+
country.capital { "capital" => "Phnom Penh" }
|
582
|
+
country.currency { "ISO 4217" => "KHR" }
|
583
|
+
end
|
584
|
+
define "KI" do |country|
|
585
|
+
country.name "Kiribati"
|
586
|
+
country.capital { "capital" => "South Tarawa" }
|
587
|
+
country.currency { "ISO 4217" => "AUD" }
|
588
|
+
end
|
589
|
+
define "KM" do |country|
|
590
|
+
country.name "Comoros"
|
591
|
+
country.capital { "capital" => "Moroni" }
|
592
|
+
country.currency { "ISO 4217" => "KMF" }
|
593
|
+
end
|
594
|
+
define "KN" do |country|
|
595
|
+
country.name "Saint Kitts and Nevis"
|
596
|
+
country.capital { "capital" => "Basseterre" }
|
597
|
+
country.currency { "ISO 4217" => "XCD" }
|
598
|
+
end
|
599
|
+
define "KP" do |country|
|
600
|
+
country.name "North Korea"
|
601
|
+
country.capital { "capital" => "Pyongyang" }
|
602
|
+
country.currency { "ISO 4217" => "KPW" }
|
603
|
+
end
|
604
|
+
define "KR" do |country|
|
605
|
+
country.name "South Korea"
|
606
|
+
country.capital { "capital" => "Seoul" }
|
607
|
+
country.currency { "ISO 4217" => "KRW" }
|
608
|
+
end
|
609
|
+
define "KW" do |country|
|
610
|
+
country.name "Kuwait"
|
611
|
+
country.capital { "capital" => "Kuwait City" }
|
612
|
+
country.currency { "ISO 4217" => "KWD" }
|
613
|
+
end
|
614
|
+
define "KY" do |country|
|
615
|
+
country.name "Cayman Islands"
|
616
|
+
country.capital { "capital" => "George Town" }
|
617
|
+
country.currency { "ISO 4217" => "KYD" }
|
618
|
+
end
|
619
|
+
define "KZ" do |country|
|
620
|
+
country.name "Kazakhstan"
|
621
|
+
country.capital { "capital" => "Astana" }
|
622
|
+
country.currency { "ISO 4217" => "KZT" }
|
623
|
+
end
|
624
|
+
define "LA" do |country|
|
625
|
+
country.name "Laos"
|
626
|
+
country.capital { "capital" => "Vientiane" }
|
627
|
+
country.currency { "ISO 4217" => "LAK" }
|
628
|
+
end
|
629
|
+
define "LB" do |country|
|
630
|
+
country.name "Lebanon"
|
631
|
+
country.capital { "capital" => "Beirut" }
|
632
|
+
country.currency { "ISO 4217" => "LBP" }
|
633
|
+
end
|
634
|
+
define "LC" do |country|
|
635
|
+
country.name "Saint Lucia"
|
636
|
+
country.capital { "capital" => "Castries" }
|
637
|
+
country.currency { "ISO 4217" => "XCD" }
|
638
|
+
end
|
639
|
+
define "LI" do |country|
|
640
|
+
country.name "Liechtenstein"
|
641
|
+
country.capital { "capital" => "Vaduz" }
|
642
|
+
country.currency { "ISO 4217" => "CHF" }
|
643
|
+
end
|
644
|
+
define "LK" do |country|
|
645
|
+
country.name "Sri Lanka"
|
646
|
+
country.capital { "capital" => "Colombo" }
|
647
|
+
country.currency { "ISO 4217" => "LKR" }
|
648
|
+
end
|
649
|
+
define "LR" do |country|
|
650
|
+
country.name "Liberia"
|
651
|
+
country.capital { "capital" => "Monrovia" }
|
652
|
+
country.currency { "ISO 4217" => "LRD" }
|
653
|
+
end
|
654
|
+
define "LS" do |country|
|
655
|
+
country.name "Lesotho"
|
656
|
+
country.capital { "capital" => "Maseru" }
|
657
|
+
country.currency { "ISO 4217" => "LSL" }
|
658
|
+
end
|
659
|
+
define "LT" do |country|
|
660
|
+
country.name "Lithuania"
|
661
|
+
country.capital { "capital" => "Vilnius" }
|
662
|
+
country.currency { "ISO 4217" => "LTL" }
|
663
|
+
end
|
664
|
+
define "LU" do |country|
|
665
|
+
country.name "Luxembourg"
|
666
|
+
country.capital { "capital" => "Luxembourg" }
|
667
|
+
country.currency { "ISO 4217" => "EUR" }
|
668
|
+
end
|
669
|
+
define "LV" do |country|
|
670
|
+
country.name "Latvia"
|
671
|
+
country.capital { "capital" => "Riga" }
|
672
|
+
country.currency { "ISO 4217" => "LVL" }
|
673
|
+
end
|
674
|
+
define "LY" do |country|
|
675
|
+
country.name "Libya"
|
676
|
+
country.capital { "capital" => "Tripolis" }
|
677
|
+
country.currency { "ISO 4217" => "LYD" }
|
678
|
+
end
|
679
|
+
define "MA" do |country|
|
680
|
+
country.name "Morocco"
|
681
|
+
country.capital { "capital" => "Rabat" }
|
682
|
+
country.currency { "ISO 4217" => "MAD" }
|
683
|
+
end
|
684
|
+
define "MC" do |country|
|
685
|
+
country.name "Monaco"
|
686
|
+
country.capital { "capital" => "Monaco" }
|
687
|
+
country.currency { "ISO 4217" => "EUR" }
|
688
|
+
end
|
689
|
+
define "MD" do |country|
|
690
|
+
country.name "Moldova"
|
691
|
+
country.capital { "capital" => "Chişinău" }
|
692
|
+
country.currency { "ISO 4217" => "MDL" }
|
693
|
+
end
|
694
|
+
define "ME" do |country|
|
695
|
+
country.name "Montenegro"
|
696
|
+
country.capital { "capital" => "Podgorica" }
|
697
|
+
country.currency { "ISO 4217" => "EUR" }
|
698
|
+
end
|
699
|
+
define "MF" do |country|
|
700
|
+
country.name "Saint Martin"
|
701
|
+
country.capital { "capital" => "Marigot" }
|
702
|
+
country.currency { "ISO 4217" => "EUR" }
|
703
|
+
end
|
704
|
+
define "MG" do |country|
|
705
|
+
country.name "Madagascar"
|
706
|
+
country.capital { "capital" => "Antananarivo" }
|
707
|
+
country.currency { "ISO 4217" => "MGA" }
|
708
|
+
end
|
709
|
+
define "MH" do |country|
|
710
|
+
country.name "Marshall Islands"
|
711
|
+
country.capital { "capital" => "Uliga" }
|
712
|
+
country.currency { "ISO 4217" => "USD" }
|
713
|
+
end
|
714
|
+
define "MK" do |country|
|
715
|
+
country.name "Macedonia"
|
716
|
+
country.capital { "capital" => "Skopje" }
|
717
|
+
country.currency { "ISO 4217" => "MKD" }
|
718
|
+
end
|
719
|
+
define "ML" do |country|
|
720
|
+
country.name "Mali"
|
721
|
+
country.capital { "capital" => "Bamako" }
|
722
|
+
country.currency { "ISO 4217" => "XOF" }
|
723
|
+
end
|
724
|
+
define "MM" do |country|
|
725
|
+
country.name "Myanmar"
|
726
|
+
country.capital { "capital" => "Yangon" }
|
727
|
+
country.currency { "ISO 4217" => "MMK" }
|
728
|
+
end
|
729
|
+
define "MN" do |country|
|
730
|
+
country.name "Mongolia"
|
731
|
+
country.capital { "capital" => "Ulan Bator" }
|
732
|
+
country.currency { "ISO 4217" => "MNT" }
|
733
|
+
end
|
734
|
+
define "MO" do |country|
|
735
|
+
country.name "Macao"
|
736
|
+
country.capital { "capital" => "Macao" }
|
737
|
+
country.currency { "ISO 4217" => "MOP" }
|
738
|
+
end
|
739
|
+
define "MP" do |country|
|
740
|
+
country.name "Northern Mariana Islands"
|
741
|
+
country.capital { "capital" => "Saipan" }
|
742
|
+
country.currency { "ISO 4217" => "USD" }
|
743
|
+
end
|
744
|
+
define "MQ" do |country|
|
745
|
+
country.name "Martinique"
|
746
|
+
country.capital { "capital" => "Fort-de-France" }
|
747
|
+
country.currency { "ISO 4217" => "EUR" }
|
748
|
+
end
|
749
|
+
define "MR" do |country|
|
750
|
+
country.name "Mauritania"
|
751
|
+
country.capital { "capital" => "Nouakchott" }
|
752
|
+
country.currency { "ISO 4217" => "MRO" }
|
753
|
+
end
|
754
|
+
define "MS" do |country|
|
755
|
+
country.name "Montserrat"
|
756
|
+
country.capital { "capital" => "Plymouth" }
|
757
|
+
country.currency { "ISO 4217" => "XCD" }
|
758
|
+
end
|
759
|
+
define "MT" do |country|
|
760
|
+
country.name "Malta"
|
761
|
+
country.capital { "capital" => "Valletta" }
|
762
|
+
country.currency { "ISO 4217" => "MTL" }
|
763
|
+
end
|
764
|
+
define "MU" do |country|
|
765
|
+
country.name "Mauritius"
|
766
|
+
country.capital { "capital" => "Port Louis" }
|
767
|
+
country.currency { "ISO 4217" => "MUR" }
|
768
|
+
end
|
769
|
+
define "MV" do |country|
|
770
|
+
country.name "Maldives"
|
771
|
+
country.capital { "capital" => "Malé" }
|
772
|
+
country.currency { "ISO 4217" => "MVR" }
|
773
|
+
end
|
774
|
+
define "MW" do |country|
|
775
|
+
country.name "Malawi"
|
776
|
+
country.capital { "capital" => "Lilongwe" }
|
777
|
+
country.currency { "ISO 4217" => "MWK" }
|
778
|
+
end
|
779
|
+
define "MX" do |country|
|
780
|
+
country.name "Mexico"
|
781
|
+
country.capital { "capital" => "Mexico City" }
|
782
|
+
country.currency { "ISO 4217" => "MXN" }
|
783
|
+
end
|
784
|
+
define "MY" do |country|
|
785
|
+
country.name "Malaysia"
|
786
|
+
country.capital { "capital" => "Kuala Lumpur" }
|
787
|
+
country.currency { "ISO 4217" => "MYR" }
|
788
|
+
end
|
789
|
+
define "MZ" do |country|
|
790
|
+
country.name "Mozambique"
|
791
|
+
country.capital { "capital" => "Maputo" }
|
792
|
+
country.currency { "ISO 4217" => "MZN" }
|
793
|
+
end
|
794
|
+
define "NA" do |country|
|
795
|
+
country.name "Namibia"
|
796
|
+
country.capital { "capital" => "Windhoek" }
|
797
|
+
country.currency { "ISO 4217" => "NAD" }
|
798
|
+
end
|
799
|
+
define "NC" do |country|
|
800
|
+
country.name "New Caledonia"
|
801
|
+
country.capital { "capital" => "Nouméa" }
|
802
|
+
country.currency { "ISO 4217" => "XPF" }
|
803
|
+
end
|
804
|
+
define "NE" do |country|
|
805
|
+
country.name "Niger"
|
806
|
+
country.capital { "capital" => "Niamey" }
|
807
|
+
country.currency { "ISO 4217" => "XOF" }
|
808
|
+
end
|
809
|
+
define "NF" do |country|
|
810
|
+
country.name "Norfolk Island"
|
811
|
+
country.capital { "capital" => "Kingston" }
|
812
|
+
country.currency { "ISO 4217" => "AUD" }
|
813
|
+
end
|
814
|
+
define "NG" do |country|
|
815
|
+
country.name "Nigeria"
|
816
|
+
country.capital { "capital" => "Abuja" }
|
817
|
+
country.currency { "ISO 4217" => "NGN" }
|
818
|
+
end
|
819
|
+
define "NI" do |country|
|
820
|
+
country.name "Nicaragua"
|
821
|
+
country.capital { "capital" => "Managua" }
|
822
|
+
country.currency { "ISO 4217" => "NIO" }
|
823
|
+
end
|
824
|
+
define "NL" do |country|
|
825
|
+
country.name "Netherlands"
|
826
|
+
country.capital { "capital" => "Amsterdam" }
|
827
|
+
country.currency { "ISO 4217" => "EUR" }
|
828
|
+
end
|
829
|
+
define "NO" do |country|
|
830
|
+
country.name "Norway"
|
831
|
+
country.capital { "capital" => "Oslo" }
|
832
|
+
country.currency { "ISO 4217" => "NOK" }
|
833
|
+
end
|
834
|
+
define "NP" do |country|
|
835
|
+
country.name "Nepal"
|
836
|
+
country.capital { "capital" => "Kathmandu" }
|
837
|
+
country.currency { "ISO 4217" => "NPR" }
|
838
|
+
end
|
839
|
+
define "NR" do |country|
|
840
|
+
country.name "Nauru"
|
841
|
+
country.capital { "capital" => "Yaren" }
|
842
|
+
country.currency { "ISO 4217" => "AUD" }
|
843
|
+
end
|
844
|
+
define "NU" do |country|
|
845
|
+
country.name "Niue"
|
846
|
+
country.capital { "capital" => "Alofi" }
|
847
|
+
country.currency { "ISO 4217" => "NZD" }
|
848
|
+
end
|
849
|
+
define "NZ" do |country|
|
850
|
+
country.name "New Zealand"
|
851
|
+
country.capital { "capital" => "Wellington" }
|
852
|
+
country.currency { "ISO 4217" => "NZD" }
|
853
|
+
end
|
854
|
+
define "OM" do |country|
|
855
|
+
country.name "Oman"
|
856
|
+
country.capital { "capital" => "Muscat" }
|
857
|
+
country.currency { "ISO 4217" => "OMR" }
|
858
|
+
end
|
859
|
+
define "PA" do |country|
|
860
|
+
country.name "Panama"
|
861
|
+
country.capital { "capital" => "Panama City" }
|
862
|
+
country.currency { "ISO 4217" => "PAB" }
|
863
|
+
end
|
864
|
+
define "PE" do |country|
|
865
|
+
country.name "Peru"
|
866
|
+
country.capital { "capital" => "Lima" }
|
867
|
+
country.currency { "ISO 4217" => "PEN" }
|
868
|
+
end
|
869
|
+
define "PF" do |country|
|
870
|
+
country.name "French Polynesia"
|
871
|
+
country.capital { "capital" => "Papeete" }
|
872
|
+
country.currency { "ISO 4217" => "XPF" }
|
873
|
+
end
|
874
|
+
define "PG" do |country|
|
875
|
+
country.name "Papua New Guinea"
|
876
|
+
country.capital { "capital" => "Port Moresby" }
|
877
|
+
country.currency { "ISO 4217" => "PGK" }
|
878
|
+
end
|
879
|
+
define "PH" do |country|
|
880
|
+
country.name "Philippines"
|
881
|
+
country.capital { "capital" => "Manila" }
|
882
|
+
country.currency { "ISO 4217" => "PHP" }
|
883
|
+
end
|
884
|
+
define "PK" do |country|
|
885
|
+
country.name "Pakistan"
|
886
|
+
country.capital { "capital" => "Islamabad" }
|
887
|
+
country.currency { "ISO 4217" => "PKR" }
|
888
|
+
end
|
889
|
+
define "PL" do |country|
|
890
|
+
country.name "Poland"
|
891
|
+
country.capital { "capital" => "Warsaw" }
|
892
|
+
country.currency { "ISO 4217" => "PLN" }
|
893
|
+
end
|
894
|
+
define "PM" do |country|
|
895
|
+
country.name "Saint Pierre and Miquelon"
|
896
|
+
country.capital { "capital" => "Saint-Pierre" }
|
897
|
+
country.currency { "ISO 4217" => "EUR" }
|
898
|
+
end
|
899
|
+
define "PN" do |country|
|
900
|
+
country.name "Pitcairn"
|
901
|
+
country.capital { "capital" => "Adamstown" }
|
902
|
+
country.currency { "ISO 4217" => "NZD" }
|
903
|
+
end
|
904
|
+
define "PR" do |country|
|
905
|
+
country.name "Puerto Rico"
|
906
|
+
country.capital { "capital" => "San Juan" }
|
907
|
+
country.currency { "ISO 4217" => "USD" }
|
908
|
+
end
|
909
|
+
define "PS" do |country|
|
910
|
+
country.name "Palestinian Territory"
|
911
|
+
country.capital { "capital" => "East Jerusalem" }
|
912
|
+
country.currency { "ISO 4217" => "ILS" }
|
913
|
+
end
|
914
|
+
define "PT" do |country|
|
915
|
+
country.name "Portugal"
|
916
|
+
country.capital { "capital" => "Lisbon" }
|
917
|
+
country.currency { "ISO 4217" => "EUR" }
|
918
|
+
end
|
919
|
+
define "PW" do |country|
|
920
|
+
country.name "Palau"
|
921
|
+
country.capital { "capital" => "Koror" }
|
922
|
+
country.currency { "ISO 4217" => "USD" }
|
923
|
+
end
|
924
|
+
define "PY" do |country|
|
925
|
+
country.name "Paraguay"
|
926
|
+
country.capital { "capital" => "Asunción" }
|
927
|
+
country.currency { "ISO 4217" => "PYG" }
|
928
|
+
end
|
929
|
+
define "QA" do |country|
|
930
|
+
country.name "Qatar"
|
931
|
+
country.capital { "capital" => "Doha" }
|
932
|
+
country.currency { "ISO 4217" => "QAR" }
|
933
|
+
end
|
934
|
+
define "RE" do |country|
|
935
|
+
country.name "Reunion"
|
936
|
+
country.capital { "capital" => "Saint-Denis" }
|
937
|
+
country.currency { "ISO 4217" => "EUR" }
|
938
|
+
end
|
939
|
+
define "RO" do |country|
|
940
|
+
country.name "Romania"
|
941
|
+
country.capital { "capital" => "Bucharest" }
|
942
|
+
country.currency { "ISO 4217" => "RON" }
|
943
|
+
end
|
944
|
+
define "RS" do |country|
|
945
|
+
country.name "Serbia"
|
946
|
+
country.capital { "capital" => "Belgrade" }
|
947
|
+
country.currency { "ISO 4217" => "RSD" }
|
948
|
+
end
|
949
|
+
define "RU" do |country|
|
950
|
+
country.name "Russia"
|
951
|
+
country.capital { "capital" => "Moscow" }
|
952
|
+
country.currency { "ISO 4217" => "RUB" }
|
953
|
+
end
|
954
|
+
define "RW" do |country|
|
955
|
+
country.name "Rwanda"
|
956
|
+
country.capital { "capital" => "Kigali" }
|
957
|
+
country.currency { "ISO 4217" => "RWF" }
|
958
|
+
end
|
959
|
+
define "SA" do |country|
|
960
|
+
country.name "Saudi Arabia"
|
961
|
+
country.capital { "capital" => "Riyadh" }
|
962
|
+
country.currency { "ISO 4217" => "SAR" }
|
963
|
+
end
|
964
|
+
define "SB" do |country|
|
965
|
+
country.name "Solomon Islands"
|
966
|
+
country.capital { "capital" => "Honiara" }
|
967
|
+
country.currency { "ISO 4217" => "SBD" }
|
968
|
+
end
|
969
|
+
define "SC" do |country|
|
970
|
+
country.name "Seychelles"
|
971
|
+
country.capital { "capital" => "Victoria" }
|
972
|
+
country.currency { "ISO 4217" => "SCR" }
|
973
|
+
end
|
974
|
+
define "SD" do |country|
|
975
|
+
country.name "Sudan"
|
976
|
+
country.capital { "capital" => "Khartoum" }
|
977
|
+
country.currency { "ISO 4217" => "SDD" }
|
978
|
+
end
|
979
|
+
define "SE" do |country|
|
980
|
+
country.name "Sweden"
|
981
|
+
country.capital { "capital" => "Stockholm" }
|
982
|
+
country.currency { "ISO 4217" => "SEK" }
|
983
|
+
end
|
984
|
+
define "SG" do |country|
|
985
|
+
country.name "Singapore"
|
986
|
+
country.capital { "capital" => "Singapur" }
|
987
|
+
country.currency { "ISO 4217" => "SGD" }
|
988
|
+
end
|
989
|
+
define "SH" do |country|
|
990
|
+
country.name "Saint Helena"
|
991
|
+
country.capital { "capital" => "Jamestown" }
|
992
|
+
country.currency { "ISO 4217" => "SHP" }
|
993
|
+
end
|
994
|
+
define "SI" do |country|
|
995
|
+
country.name "Slovenia"
|
996
|
+
country.capital { "capital" => "Ljubljana" }
|
997
|
+
country.currency { "ISO 4217" => "EUR" }
|
998
|
+
end
|
999
|
+
define "SJ" do |country|
|
1000
|
+
country.name "Svalbard and Jan Mayen"
|
1001
|
+
country.capital { "capital" => "Longyearbyen" }
|
1002
|
+
country.currency { "ISO 4217" => "NOK" }
|
1003
|
+
end
|
1004
|
+
define "SK" do |country|
|
1005
|
+
country.name "Slovakia"
|
1006
|
+
country.capital { "capital" => "Bratislava" }
|
1007
|
+
country.currency { "ISO 4217" => "SKK" }
|
1008
|
+
end
|
1009
|
+
define "SL" do |country|
|
1010
|
+
country.name "Sierra Leone"
|
1011
|
+
country.capital { "capital" => "Freetown" }
|
1012
|
+
country.currency { "ISO 4217" => "SLL" }
|
1013
|
+
end
|
1014
|
+
define "SM" do |country|
|
1015
|
+
country.name "San Marino"
|
1016
|
+
country.capital { "capital" => "San Marino" }
|
1017
|
+
country.currency { "ISO 4217" => "EUR" }
|
1018
|
+
end
|
1019
|
+
define "SN" do |country|
|
1020
|
+
country.name "Senegal"
|
1021
|
+
country.capital { "capital" => "Dakar" }
|
1022
|
+
country.currency { "ISO 4217" => "XOF" }
|
1023
|
+
end
|
1024
|
+
define "SO" do |country|
|
1025
|
+
country.name "Somalia"
|
1026
|
+
country.capital { "capital" => "Mogadishu" }
|
1027
|
+
country.currency { "ISO 4217" => "SOS" }
|
1028
|
+
end
|
1029
|
+
define "SR" do |country|
|
1030
|
+
country.name "Suriname"
|
1031
|
+
country.capital { "capital" => "Paramaribo" }
|
1032
|
+
country.currency { "ISO 4217" => "SRD" }
|
1033
|
+
end
|
1034
|
+
define "ST" do |country|
|
1035
|
+
country.name "Sao Tome and Principe"
|
1036
|
+
country.capital { "capital" => "São Tomé" }
|
1037
|
+
country.currency { "ISO 4217" => "STD" }
|
1038
|
+
end
|
1039
|
+
define "SV" do |country|
|
1040
|
+
country.name "El Salvador"
|
1041
|
+
country.capital { "capital" => "San Salvador" }
|
1042
|
+
country.currency { "ISO 4217" => "USD" }
|
1043
|
+
end
|
1044
|
+
define "SY" do |country|
|
1045
|
+
country.name "Syria"
|
1046
|
+
country.capital { "capital" => "Damascus" }
|
1047
|
+
country.currency { "ISO 4217" => "SYP" }
|
1048
|
+
end
|
1049
|
+
define "SZ" do |country|
|
1050
|
+
country.name "Swaziland"
|
1051
|
+
country.capital { "capital" => "Mbabane" }
|
1052
|
+
country.currency { "ISO 4217" => "SZL" }
|
1053
|
+
end
|
1054
|
+
define "TC" do |country|
|
1055
|
+
country.name "Turks and Caicos Islands"
|
1056
|
+
country.capital { "capital" => "Cockburn Town" }
|
1057
|
+
country.currency { "ISO 4217" => "USD" }
|
1058
|
+
end
|
1059
|
+
define "TD" do |country|
|
1060
|
+
country.name "Chad"
|
1061
|
+
country.capital { "capital" => "N'Djamena" }
|
1062
|
+
country.currency { "ISO 4217" => "XAF" }
|
1063
|
+
end
|
1064
|
+
define "TF" do |country|
|
1065
|
+
country.name "French Southern Territories"
|
1066
|
+
country.capital { "capital" => "Martin-de-Viviès" }
|
1067
|
+
country.currency { "ISO 4217" => "EUR" }
|
1068
|
+
end
|
1069
|
+
define "TG" do |country|
|
1070
|
+
country.name "Togo"
|
1071
|
+
country.capital { "capital" => "Lomé" }
|
1072
|
+
country.currency { "ISO 4217" => "XOF" }
|
1073
|
+
end
|
1074
|
+
define "TH" do |country|
|
1075
|
+
country.name "Thailand"
|
1076
|
+
country.capital { "capital" => "Bangkok" }
|
1077
|
+
country.currency { "ISO 4217" => "THB" }
|
1078
|
+
end
|
1079
|
+
define "TJ" do |country|
|
1080
|
+
country.name "Tajikistan"
|
1081
|
+
country.capital { "capital" => "Dushanbe" }
|
1082
|
+
country.currency { "ISO 4217" => "TJS" }
|
1083
|
+
end
|
1084
|
+
define "TK" do |country|
|
1085
|
+
country.name "Tokelau"
|
1086
|
+
country.capital { "capital" => "" }
|
1087
|
+
country.currency { "ISO 4217" => "NZD" }
|
1088
|
+
end
|
1089
|
+
define "TL" do |country|
|
1090
|
+
country.name "East Timor"
|
1091
|
+
country.capital { "capital" => "Dili" }
|
1092
|
+
country.currency { "ISO 4217" => "USD" }
|
1093
|
+
end
|
1094
|
+
define "TM" do |country|
|
1095
|
+
country.name "Turkmenistan"
|
1096
|
+
country.capital { "capital" => "Ashgabat" }
|
1097
|
+
country.currency { "ISO 4217" => "TMM" }
|
1098
|
+
end
|
1099
|
+
define "TN" do |country|
|
1100
|
+
country.name "Tunisia"
|
1101
|
+
country.capital { "capital" => "Tunis" }
|
1102
|
+
country.currency { "ISO 4217" => "TND" }
|
1103
|
+
end
|
1104
|
+
define "TO" do |country|
|
1105
|
+
country.name "Tonga"
|
1106
|
+
country.capital { "capital" => "Nuku'alofa" }
|
1107
|
+
country.currency { "ISO 4217" => "TOP" }
|
1108
|
+
end
|
1109
|
+
define "TR" do |country|
|
1110
|
+
country.name "Turkey"
|
1111
|
+
country.capital { "capital" => "Ankara" }
|
1112
|
+
country.currency { "ISO 4217" => "TRY" }
|
1113
|
+
end
|
1114
|
+
define "TT" do |country|
|
1115
|
+
country.name "Trinidad and Tobago"
|
1116
|
+
country.capital { "capital" => "Port of Spain" }
|
1117
|
+
country.currency { "ISO 4217" => "TTD" }
|
1118
|
+
end
|
1119
|
+
define "TV" do |country|
|
1120
|
+
country.name "Tuvalu"
|
1121
|
+
country.capital { "capital" => "Vaiaku" }
|
1122
|
+
country.currency { "ISO 4217" => "AUD" }
|
1123
|
+
end
|
1124
|
+
define "TW" do |country|
|
1125
|
+
country.name "Taiwan"
|
1126
|
+
country.capital { "capital" => "Taipei" }
|
1127
|
+
country.currency { "ISO 4217" => "TWD" }
|
1128
|
+
end
|
1129
|
+
define "TZ" do |country|
|
1130
|
+
country.name "Tanzania"
|
1131
|
+
country.capital { "capital" => "Dar es Salaam" }
|
1132
|
+
country.currency { "ISO 4217" => "TZS" }
|
1133
|
+
end
|
1134
|
+
define "UA" do |country|
|
1135
|
+
country.name "Ukraine"
|
1136
|
+
country.capital { "capital" => "Kiev" }
|
1137
|
+
country.currency { "ISO 4217" => "UAH" }
|
1138
|
+
end
|
1139
|
+
define "UG" do |country|
|
1140
|
+
country.name "Uganda"
|
1141
|
+
country.capital { "capital" => "Kampala" }
|
1142
|
+
country.currency { "ISO 4217" => "UGX" }
|
1143
|
+
end
|
1144
|
+
define "UM" do |country|
|
1145
|
+
country.name "United States Minor Outlying Islands"
|
1146
|
+
country.capital { "capital" => "" }
|
1147
|
+
country.currency { "ISO 4217" => "USD" }
|
1148
|
+
end
|
1149
|
+
define "US" do |country|
|
1150
|
+
country.name "United States"
|
1151
|
+
country.capital { "capital" => "Washington" }
|
1152
|
+
country.currency { "ISO 4217" => "USD" }
|
1153
|
+
end
|
1154
|
+
define "UY" do |country|
|
1155
|
+
country.name "Uruguay"
|
1156
|
+
country.capital { "capital" => "Montevideo" }
|
1157
|
+
country.currency { "ISO 4217" => "UYU" }
|
1158
|
+
end
|
1159
|
+
define "UZ" do |country|
|
1160
|
+
country.name "Uzbekistan"
|
1161
|
+
country.capital { "capital" => "Tashkent" }
|
1162
|
+
country.currency { "ISO 4217" => "UZS" }
|
1163
|
+
end
|
1164
|
+
define "VA" do |country|
|
1165
|
+
country.name "Vatican"
|
1166
|
+
country.capital { "capital" => "Vatican City" }
|
1167
|
+
country.currency { "ISO 4217" => "EUR" }
|
1168
|
+
end
|
1169
|
+
define "VC" do |country|
|
1170
|
+
country.name "Saint Vincent and the Grenadines"
|
1171
|
+
country.capital { "capital" => "Kingstown" }
|
1172
|
+
country.currency { "ISO 4217" => "XCD" }
|
1173
|
+
end
|
1174
|
+
define "VE" do |country|
|
1175
|
+
country.name "Venezuela"
|
1176
|
+
country.capital { "capital" => "Caracas" }
|
1177
|
+
country.currency { "ISO 4217" => "VEB" }
|
1178
|
+
end
|
1179
|
+
define "VG" do |country|
|
1180
|
+
country.name "British Virgin Islands"
|
1181
|
+
country.capital { "capital" => "Road Town" }
|
1182
|
+
country.currency { "ISO 4217" => "USD" }
|
1183
|
+
end
|
1184
|
+
define "VI" do |country|
|
1185
|
+
country.name "U.S. Virgin Islands"
|
1186
|
+
country.capital { "capital" => "Charlotte Amalie" }
|
1187
|
+
country.currency { "ISO 4217" => "USD" }
|
1188
|
+
end
|
1189
|
+
define "VN" do |country|
|
1190
|
+
country.name "Vietnam"
|
1191
|
+
country.capital { "capital" => "Hanoi" }
|
1192
|
+
country.currency { "ISO 4217" => "VND" }
|
1193
|
+
end
|
1194
|
+
define "VU" do |country|
|
1195
|
+
country.name "Vanuatu"
|
1196
|
+
country.capital { "capital" => "Port Vila" }
|
1197
|
+
country.currency { "ISO 4217" => "VUV" }
|
1198
|
+
end
|
1199
|
+
define "WF" do |country|
|
1200
|
+
country.name "Wallis and Futuna"
|
1201
|
+
country.capital { "capital" => "Matâ'Utu" }
|
1202
|
+
country.currency { "ISO 4217" => "XPF" }
|
1203
|
+
end
|
1204
|
+
define "WS" do |country|
|
1205
|
+
country.name "Samoa"
|
1206
|
+
country.capital { "capital" => "Apia" }
|
1207
|
+
country.currency { "ISO 4217" => "WST" }
|
1208
|
+
end
|
1209
|
+
define "YE" do |country|
|
1210
|
+
country.name "Yemen"
|
1211
|
+
country.capital { "capital" => "San‘a’" }
|
1212
|
+
country.currency { "ISO 4217" => "YER" }
|
1213
|
+
end
|
1214
|
+
define "YT" do |country|
|
1215
|
+
country.name "Mayotte"
|
1216
|
+
country.capital { "capital" => "Mamoudzou" }
|
1217
|
+
country.currency { "ISO 4217" => "EUR" }
|
1218
|
+
end
|
1219
|
+
define "ZA" do |country|
|
1220
|
+
country.name "South Africa"
|
1221
|
+
country.capital { "capital" => "Pretoria" }
|
1222
|
+
country.currency { "ISO 4217" => "ZAR" }
|
1223
|
+
end
|
1224
|
+
define "ZM" do |country|
|
1225
|
+
country.name "Zambia"
|
1226
|
+
country.capital { "capital" => "Lusaka" }
|
1227
|
+
country.currency { "ISO 4217" => "ZMK" }
|
1228
|
+
end
|
1229
|
+
define "ZW" do |country|
|
1230
|
+
country.name "Zimbabwe"
|
1231
|
+
country.capital { "capital" => "Harare" }
|
1232
|
+
country.currency { "ISO 4217" => "ZWD" }
|
1233
|
+
end
|
1234
|
+
end
|
1235
|
+
end
|
1236
|
+
end
|