matta-globalite 0.5.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/README +199 -0
- data/lang/rails/de-DE.yml +357 -0
- data/lang/rails/en-UK.yml +357 -0
- data/lang/rails/en-US.yml +357 -0
- data/lang/rails/es-AR.yml +355 -0
- data/lang/rails/es-ES.yml +357 -0
- data/lang/rails/fi-FI.yml +357 -0
- data/lang/rails/fr-FR.yml +359 -0
- data/lang/rails/hu-HU.yml +357 -0
- data/lang/rails/it.yml +358 -0
- data/lang/rails/nl-NL.yml +347 -0
- data/lang/rails/pl-PL.yml +358 -0
- data/lang/rails/pt-BR.yml +324 -0
- data/lang/rails/pt-PT.yml +324 -0
- data/lang/rails/ru-RU.yml +357 -0
- data/lang/rails/sr-CP.yml +357 -0
- data/lang/rails/sr-SR.yml +357 -0
- data/lang/rails/tr.yml +186 -0
- data/lang/rails/zh-CN.yml +357 -0
- data/lang/rails/zh-HK.yml +357 -0
- data/lang/rails/zh-TW.yml +357 -0
- data/lib/globalite.rb +26 -0
- data/lib/globalite/l10n.rb +300 -0
- data/lib/globalite/locale.rb +56 -0
- data/lib/rails/core_ext.rb +19 -0
- data/lib/rails/localization.rb +58 -0
- data/lib/rails/localized_action_view.rb +211 -0
- data/lib/rails/localized_active_record.rb +80 -0
- data/spec/core_localization_spec.rb +116 -0
- data/spec/helpers/spec_helper.rb +16 -0
- data/spec/l10n_spec.rb +251 -0
- data/spec/lang/rails/zz.yml +13 -0
- data/spec/lang/ui/en-UK.yml +3 -0
- data/spec/lang/ui/en-US.yml +3 -0
- data/spec/lang/ui/es.yml +3 -0
- data/spec/lang/ui/fr-FR.yml +8 -0
- metadata +87 -0
@@ -0,0 +1,357 @@
|
|
1
|
+
locale_name: Magyar (HU)
|
2
|
+
# ActiveRecord::Errors.default_error_messages
|
3
|
+
error_message_inclusion: nem szerepel a listában
|
4
|
+
error_message_exclusion: foglalt
|
5
|
+
error_message_invalid: érvénytelen
|
6
|
+
error_message_confirmation: a megerősítés nem stimmel
|
7
|
+
error_message_accepted: el kell fogadni
|
8
|
+
error_message_empty: mezőt ki kell tölteni
|
9
|
+
error_message_blank: mező nem lehet üres
|
10
|
+
error_message_too_long: túl hosszú (maximum %d karakter)
|
11
|
+
error_message_too_short: túl rövid (minimum %d karakter)
|
12
|
+
error_message_wrong_length: nem megfelelő hosszúságú (%d karaktert kellene megadni)
|
13
|
+
error_message_taken: már foglalt
|
14
|
+
error_message_not_a_number: nem szám
|
15
|
+
|
16
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
17
|
+
date_helper_less_than_x_seconds: kevesebb mint %d másodperc
|
18
|
+
date_helper_half_a_minute: fél perc
|
19
|
+
date_helper_less_than_a_minute: kevesebb mint egy perc
|
20
|
+
date_helper_one_minute: 1 perc
|
21
|
+
date_helper_x_minutes: %d perc
|
22
|
+
date_helper_one_hour: kb. 1 óra
|
23
|
+
date_helper_x_hours: kb. %d óra
|
24
|
+
date_helper_one_day: 1 nap
|
25
|
+
date_helper_x_days: %d nap
|
26
|
+
date_helper_one_month: 1 hónap
|
27
|
+
date_helper_x_months: %d hónap
|
28
|
+
date_helper_one_year: 1 év
|
29
|
+
date_helper_x_years: %d év
|
30
|
+
|
31
|
+
# DON'T TRANSLATE, just order
|
32
|
+
date_helper_order: [:year, :month, :day] #default Rails is US ordered: :order => [:year, :month, :day]
|
33
|
+
|
34
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
35
|
+
default: "%Y-%m-%d"
|
36
|
+
short: "%b %e"
|
37
|
+
long: "%B %e, %Y"
|
38
|
+
|
39
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
40
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
41
|
+
short: "%d %b %H:%M"
|
42
|
+
long: "%B %d, %Y %H:%M"
|
43
|
+
|
44
|
+
# added at the end of date if your date system doesn't use a 24 hours system
|
45
|
+
date_helper_am: de
|
46
|
+
date_helper_pm: du
|
47
|
+
|
48
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
49
|
+
number_helper_unit: "Ft"
|
50
|
+
number_helper_separator: "." #unit separator (between integer part and fraction part)
|
51
|
+
number_helper_delimiter: "," #delimiter between each group of thousands. Example: 1.234.567
|
52
|
+
number_helper_order: [ unit, number ]
|
53
|
+
#to support for instance French format, the order is different: Unit comes last (ex. "1.234,00 €")
|
54
|
+
|
55
|
+
# use by +Array#to_sentence()+
|
56
|
+
array_connector: 'és'
|
57
|
+
array_skip_last_comma: 'false'
|
58
|
+
|
59
|
+
# Active Record error messages:
|
60
|
+
active_record_helper_error_description: 'A következő mezőkkel vannak problémák:'
|
61
|
+
active_record_helper_header_message: "{error_count} hiba akadályozza a(z) {failed_object} mentését"
|
62
|
+
|
63
|
+
date_helper_month_names:
|
64
|
+
- # Leave that line
|
65
|
+
- # Leave that line
|
66
|
+
- Január
|
67
|
+
- Február
|
68
|
+
- Március
|
69
|
+
- Április
|
70
|
+
- Május
|
71
|
+
- Június
|
72
|
+
- Július
|
73
|
+
- Augusztus
|
74
|
+
- Szeptember
|
75
|
+
- Október
|
76
|
+
- November
|
77
|
+
- December
|
78
|
+
|
79
|
+
date_helper_abbr_month_names:
|
80
|
+
- # Leave that line
|
81
|
+
- # Leave that line
|
82
|
+
- Jan
|
83
|
+
- Feb
|
84
|
+
- Már
|
85
|
+
- Ápr
|
86
|
+
- Máj
|
87
|
+
- Jún
|
88
|
+
- Júl
|
89
|
+
- Aug
|
90
|
+
- Sze
|
91
|
+
- Okt
|
92
|
+
- Nov
|
93
|
+
- Dec
|
94
|
+
|
95
|
+
date_helper_day_names:
|
96
|
+
- Vasárnap
|
97
|
+
- Hétfő
|
98
|
+
- Kedd
|
99
|
+
- Szerda
|
100
|
+
- Csütörtök
|
101
|
+
- Péntek
|
102
|
+
- Szombat
|
103
|
+
|
104
|
+
date_helper_abbr_day_names:
|
105
|
+
- Va
|
106
|
+
- Hé
|
107
|
+
- Ke
|
108
|
+
- Sze
|
109
|
+
- Cs
|
110
|
+
- Pé
|
111
|
+
- Szo
|
112
|
+
|
113
|
+
countries_list:
|
114
|
+
- Afganisztán
|
115
|
+
- Albánia
|
116
|
+
- Algéria
|
117
|
+
- Amerikai Szamoa
|
118
|
+
- Andorra
|
119
|
+
- Angola
|
120
|
+
- Anguilla
|
121
|
+
- Antarctica
|
122
|
+
- Antigua And Barbuda
|
123
|
+
- Argentina
|
124
|
+
- Armenia
|
125
|
+
- Aruba
|
126
|
+
- Australia
|
127
|
+
- Austria
|
128
|
+
- Azerbaijan
|
129
|
+
- Bahamas
|
130
|
+
- Bahrain
|
131
|
+
- Bangladesh
|
132
|
+
- Barbados
|
133
|
+
- Belarus
|
134
|
+
- Belgium
|
135
|
+
- Belize
|
136
|
+
- Benin
|
137
|
+
- Bermuda
|
138
|
+
- Bhutan
|
139
|
+
- Bolivia
|
140
|
+
- Bosnia and Herzegowina
|
141
|
+
- Botswana
|
142
|
+
- Bouvet Island
|
143
|
+
- Brazil
|
144
|
+
- British Indian Ocean Territory
|
145
|
+
- Brunei Darussalam
|
146
|
+
- Bulgaria
|
147
|
+
- Burkina Faso
|
148
|
+
- Burma
|
149
|
+
- Burundi
|
150
|
+
- Cambodia
|
151
|
+
- Cameroon
|
152
|
+
- Canada
|
153
|
+
- Cape Verde
|
154
|
+
- Cayman Islands
|
155
|
+
- Central African Republic
|
156
|
+
- Chad
|
157
|
+
- Chile
|
158
|
+
- China
|
159
|
+
- Christmas Island
|
160
|
+
- Cocos (Keeling) Islands
|
161
|
+
- Colombia
|
162
|
+
- Comoros
|
163
|
+
- Congo
|
164
|
+
- Congo, the Democratic Republic of the
|
165
|
+
- Cook Islands
|
166
|
+
- Costa Rica
|
167
|
+
- Cote d'Ivoire
|
168
|
+
- Croatia
|
169
|
+
- Cuba
|
170
|
+
- Cyprus
|
171
|
+
- Czech Republic
|
172
|
+
- Denmark
|
173
|
+
- Djibouti
|
174
|
+
- Dominica
|
175
|
+
- Dominican Republic
|
176
|
+
- East Timor
|
177
|
+
- Ecuador
|
178
|
+
- Egypt
|
179
|
+
- El Salvador
|
180
|
+
- England
|
181
|
+
- Equatorial Guinea
|
182
|
+
- Eritrea
|
183
|
+
- Espana
|
184
|
+
- Estonia
|
185
|
+
- Ethiopia
|
186
|
+
- Falkland Islands
|
187
|
+
- Faroe Islands
|
188
|
+
- Fiji
|
189
|
+
- Finland
|
190
|
+
- France
|
191
|
+
- French Guiana
|
192
|
+
- French Polynesia
|
193
|
+
- French Southern Territories
|
194
|
+
- Gabon
|
195
|
+
- Gambia
|
196
|
+
- Georgia
|
197
|
+
- Germany
|
198
|
+
- Ghana
|
199
|
+
- Gibraltar
|
200
|
+
- Great Britain
|
201
|
+
- Greece
|
202
|
+
- Greenland
|
203
|
+
- Grenada
|
204
|
+
- Guadeloupe
|
205
|
+
- Guam
|
206
|
+
- Guatemala
|
207
|
+
- Guinea
|
208
|
+
- Guinea-Bissau
|
209
|
+
- Guyana
|
210
|
+
- Haiti
|
211
|
+
- Heard and Mc Donald Islands
|
212
|
+
- Honduras
|
213
|
+
- Hong Kong
|
214
|
+
- Magyarország
|
215
|
+
- Iceland
|
216
|
+
- India
|
217
|
+
- Indonesia
|
218
|
+
- Ireland
|
219
|
+
- Israel
|
220
|
+
- Italy
|
221
|
+
- Iran
|
222
|
+
- Iraq
|
223
|
+
- Jamaica
|
224
|
+
- Japan
|
225
|
+
- Jordan
|
226
|
+
- Kazakhstan
|
227
|
+
- Kenya
|
228
|
+
- Kiribati
|
229
|
+
- Korea, Republic of
|
230
|
+
- Korea (South)
|
231
|
+
- Kuwait
|
232
|
+
- Kyrgyzstan
|
233
|
+
- Lao People's Democratic Republic
|
234
|
+
- Latvia
|
235
|
+
- Lebanon
|
236
|
+
- Lesotho
|
237
|
+
- Liberia
|
238
|
+
- Liechtenstein
|
239
|
+
- Lithuania
|
240
|
+
- Luxembourg
|
241
|
+
- Macau
|
242
|
+
- Macedonia
|
243
|
+
- Madagascar
|
244
|
+
- Malawi
|
245
|
+
- Malaysia
|
246
|
+
- Maldives
|
247
|
+
- Mali
|
248
|
+
- Malta
|
249
|
+
- Marshall Islands
|
250
|
+
- Martinique
|
251
|
+
- Mauritania
|
252
|
+
- Mauritius
|
253
|
+
- Mayotte
|
254
|
+
- Mexico
|
255
|
+
- Micronesia, Federated States of
|
256
|
+
- Moldova, Republic of
|
257
|
+
- Monaco
|
258
|
+
- Mongolia
|
259
|
+
- Montserrat
|
260
|
+
- Morocco
|
261
|
+
- Mozambique
|
262
|
+
- Myanmar
|
263
|
+
- Namibia
|
264
|
+
- Nauru
|
265
|
+
- Nepal
|
266
|
+
- Netherlands
|
267
|
+
- Netherlands Antilles
|
268
|
+
- New Caledonia
|
269
|
+
- New Zealand
|
270
|
+
- Nicaragua
|
271
|
+
- Niger
|
272
|
+
- Nigeria
|
273
|
+
- Niue
|
274
|
+
- Norfolk Island
|
275
|
+
- Northern Ireland
|
276
|
+
- Northern Mariana Islands
|
277
|
+
- Norway
|
278
|
+
- Oman
|
279
|
+
- Pakistan
|
280
|
+
- Palau
|
281
|
+
- Panama
|
282
|
+
- Papua New Guinea
|
283
|
+
- Paraguay
|
284
|
+
- Peru
|
285
|
+
- Philippines
|
286
|
+
- Pitcairn
|
287
|
+
- Poland
|
288
|
+
- Portugal
|
289
|
+
- Puerto Rico
|
290
|
+
- Qatar
|
291
|
+
- Reunion
|
292
|
+
- Romania
|
293
|
+
- Russia
|
294
|
+
- Rwanda
|
295
|
+
- Saint Kitts and Nevis
|
296
|
+
- Saint Lucia
|
297
|
+
- Saint Vincent and the Grenadines
|
298
|
+
- Samoa (Independent)
|
299
|
+
- San Marino
|
300
|
+
- Sao Tome and Principe
|
301
|
+
- Saudi Arabia
|
302
|
+
- Scotland
|
303
|
+
- Senegal
|
304
|
+
- Serbia and Montenegro
|
305
|
+
- Seychelles
|
306
|
+
- Sierra Leone
|
307
|
+
- Singapore
|
308
|
+
- Slovakia
|
309
|
+
- Slovenia
|
310
|
+
- Solomon Islands
|
311
|
+
- Somalia
|
312
|
+
- South Africa
|
313
|
+
- South Georgia and the South Sandwich Islands
|
314
|
+
- South Korea
|
315
|
+
- Spain
|
316
|
+
- Sri Lanka
|
317
|
+
- St. Helena
|
318
|
+
- St. Pierre and Miquelon
|
319
|
+
- Suriname
|
320
|
+
- Svalbard and Jan Mayen Islands
|
321
|
+
- Swaziland
|
322
|
+
- Sweden
|
323
|
+
- Switzerland
|
324
|
+
- Taiwan
|
325
|
+
- Tajikistan
|
326
|
+
- Tanzania
|
327
|
+
- Thailand
|
328
|
+
- Togo
|
329
|
+
- Tokelau
|
330
|
+
- Tonga
|
331
|
+
- Trinidad
|
332
|
+
- Trinidad and Tobago
|
333
|
+
- Tunisia
|
334
|
+
- Turkey
|
335
|
+
- Turkmenistan
|
336
|
+
- Turks and Caicos Islands
|
337
|
+
- Tuvalu
|
338
|
+
- Uganda
|
339
|
+
- Ukraine
|
340
|
+
- United Arab Emirates
|
341
|
+
- United Kingdom
|
342
|
+
- United States
|
343
|
+
- United States Minor Outlying Islands
|
344
|
+
- Uruguay
|
345
|
+
- Uzbekistan
|
346
|
+
- Vanuatu
|
347
|
+
- Vatican City State (Holy See)
|
348
|
+
- Venezuela
|
349
|
+
- Viet Nam
|
350
|
+
- Virgin Islands (British)
|
351
|
+
- Virgin Islands (U.S.)
|
352
|
+
- Wales
|
353
|
+
- Wallis and Futuna Islands
|
354
|
+
- Western Sahara
|
355
|
+
- Yemen
|
356
|
+
- Zambia
|
357
|
+
- Zimbabwe
|
data/lang/rails/it.yml
ADDED
@@ -0,0 +1,358 @@
|
|
1
|
+
|
2
|
+
locale_name: Italiano
|
3
|
+
# ActiveRecord::Errors.default_error_messages
|
4
|
+
error_message_inclusion: non è incluso nella lista
|
5
|
+
error_message_exclusion: è riservato
|
6
|
+
error_message_invalid: non è valido
|
7
|
+
error_message_confirmation: non è lo stesso della conferma
|
8
|
+
error_message_accepted: deve essere accettato
|
9
|
+
error_message_empty: non può essere vuoto
|
10
|
+
error_message_blank: è richiesto
|
11
|
+
error_message_too_long: è troppo lungo (massimo %d caratteri)
|
12
|
+
error_message_too_short: è troppo corto (minimo %d caratteri)
|
13
|
+
error_message_wrong_length: è della lunghezza sbagliata (dovrebbe essere di %d caratteri)
|
14
|
+
error_message_taken: è già stato assegnato
|
15
|
+
error_message_not_a_number: non è un numero
|
16
|
+
|
17
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
18
|
+
date_helper_less_than_x_seconds: meno di %d secondi
|
19
|
+
date_helper_half_a_minute: mezzo minuto
|
20
|
+
date_helper_less_than_a_minute: meno di un minuto
|
21
|
+
date_helper_one_minute: un minuto
|
22
|
+
date_helper_x_minutes: %d minuti
|
23
|
+
date_helper_one_hour: circa un'ora
|
24
|
+
date_helper_x_hours: circa %d ore
|
25
|
+
date_helper_one_day: un giorno
|
26
|
+
date_helper_x_days: %d giorni
|
27
|
+
date_helper_one_month: %d mesi
|
28
|
+
date_helper_x_months: %d mois
|
29
|
+
date_helper_one_year: un anno
|
30
|
+
date_helper_x_years: %d anni
|
31
|
+
|
32
|
+
# DON'T TRANSLATE, just order
|
33
|
+
date_helper_order: [:day, :month, :year] #default Rails is US ordered: :order => [:year, :month, :day]
|
34
|
+
|
35
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
36
|
+
default: "%Y-%m-%d"
|
37
|
+
short: "%e %b"
|
38
|
+
long: "%e %B, %Y"
|
39
|
+
|
40
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
41
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
42
|
+
short: "%d %b, %H:%M"
|
43
|
+
long: "%d %B, %Y %H:%M"
|
44
|
+
|
45
|
+
# added at the end of date if your date system doesn't use a 24 hours system
|
46
|
+
date_helper_am: am
|
47
|
+
date_helper_pm: pm
|
48
|
+
|
49
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
50
|
+
number_helper_unit: "€"
|
51
|
+
number_helper_separator: "," #unit separator (between integer part and fraction part)
|
52
|
+
number_helper_delimiter: "." #delimiter between each group of thousands. Example: 1.234.567
|
53
|
+
number_helper_order: [number, unit] #order is at present unsupported in Rails
|
54
|
+
#to support for instance French format, the order is different: Unit comes last (ex. "1.234,00 €")
|
55
|
+
|
56
|
+
# use by +Array#to_sentence()+
|
57
|
+
array_connector: 'e'
|
58
|
+
array_skip_last_comma: 'false'
|
59
|
+
|
60
|
+
active_record_helper_header_message: pluralize{{error_count}, errore, errori} durante il salvataggio di {failed_object}
|
61
|
+
active_record_helper_error_description: 'Si sono verificati dei problemi con i seguenti campi:'
|
62
|
+
|
63
|
+
date_helper_month_names:
|
64
|
+
- # Leave that line
|
65
|
+
- # Leave that line
|
66
|
+
- Gennaio
|
67
|
+
- Febbraio
|
68
|
+
- Marzo
|
69
|
+
- Aprile
|
70
|
+
- Maggio
|
71
|
+
- Giugno
|
72
|
+
- Luglio
|
73
|
+
- Agosto
|
74
|
+
- Settembre
|
75
|
+
- Ottobre
|
76
|
+
- Novembre
|
77
|
+
- Dicembre
|
78
|
+
|
79
|
+
date_helper_abbr_month_names:
|
80
|
+
- # Leave that line
|
81
|
+
- # Leave that line
|
82
|
+
- Gen
|
83
|
+
- Feb
|
84
|
+
- Mar
|
85
|
+
- Apr
|
86
|
+
- Mag
|
87
|
+
- Giu
|
88
|
+
- Lug
|
89
|
+
- Ago
|
90
|
+
- Set
|
91
|
+
- Ott
|
92
|
+
- Nov
|
93
|
+
- Dic
|
94
|
+
|
95
|
+
date_helper_day_names:
|
96
|
+
- Domenica
|
97
|
+
- Lunedì
|
98
|
+
- Martedì
|
99
|
+
- Marcoledì
|
100
|
+
- Giovedì
|
101
|
+
- Venerdì
|
102
|
+
- Sabato
|
103
|
+
|
104
|
+
date_helper_abbr_day_names:
|
105
|
+
- Dom
|
106
|
+
- Lun
|
107
|
+
- Mar
|
108
|
+
- Mer
|
109
|
+
- Gio
|
110
|
+
- Ven
|
111
|
+
- Sab
|
112
|
+
|
113
|
+
# STILL NOT TRANSLATED IN ITALIAN
|
114
|
+
countries_list:
|
115
|
+
- Afghanistan
|
116
|
+
- Albanie
|
117
|
+
- Algérie
|
118
|
+
- Samoa Américaine
|
119
|
+
- Andorre
|
120
|
+
- Angola
|
121
|
+
- Anguilla
|
122
|
+
- Antarctique
|
123
|
+
- Antigua And Barbuda
|
124
|
+
- Argentina
|
125
|
+
- Armenia
|
126
|
+
- Aruba
|
127
|
+
- Australia
|
128
|
+
- Austria
|
129
|
+
- Azerbaijan
|
130
|
+
- Bahamas
|
131
|
+
- Bahrain
|
132
|
+
- Bangladesh
|
133
|
+
- Barbados
|
134
|
+
- Belarus
|
135
|
+
- Belgium
|
136
|
+
- Belize
|
137
|
+
- Benin
|
138
|
+
- Bermuda
|
139
|
+
- Bhutan
|
140
|
+
- Bolivia
|
141
|
+
- Bosnia and Herzegowina
|
142
|
+
- Botswana
|
143
|
+
- Bouvet Island
|
144
|
+
- Brazil
|
145
|
+
- British Indian Ocean Territory
|
146
|
+
- Brunei Darussalam
|
147
|
+
- Bulgaria
|
148
|
+
- Burkina Faso
|
149
|
+
- Burma
|
150
|
+
- Burundi
|
151
|
+
- Cambodia
|
152
|
+
- Cameroon
|
153
|
+
- Canada
|
154
|
+
- Cape Verde
|
155
|
+
- Cayman Islands
|
156
|
+
- Central African Republic
|
157
|
+
- Chad
|
158
|
+
- Chile
|
159
|
+
- China
|
160
|
+
- Christmas Island
|
161
|
+
- Cocos (Keeling) Islands
|
162
|
+
- Colombia
|
163
|
+
- Comoros
|
164
|
+
- Congo
|
165
|
+
- Congo, the Democratic Republic of the
|
166
|
+
- Cook Islands
|
167
|
+
- Costa Rica
|
168
|
+
- Cote d'Ivoire
|
169
|
+
- Croatia
|
170
|
+
- Cuba
|
171
|
+
- Cyprus
|
172
|
+
- Czech Republic
|
173
|
+
- Denmark
|
174
|
+
- Djibouti
|
175
|
+
- Dominica
|
176
|
+
- Dominican Republic
|
177
|
+
- East Timor
|
178
|
+
- Ecuador
|
179
|
+
- Egypt
|
180
|
+
- El Salvador
|
181
|
+
- England
|
182
|
+
- Equatorial Guinea
|
183
|
+
- Eritrea
|
184
|
+
- Espana
|
185
|
+
- Estonia
|
186
|
+
- Ethiopia
|
187
|
+
- Falkland Islands
|
188
|
+
- Faroe Islands
|
189
|
+
- Fiji
|
190
|
+
- Finland
|
191
|
+
- France
|
192
|
+
- French Guiana
|
193
|
+
- French Polynesia
|
194
|
+
- French Southern Territories
|
195
|
+
- Gabon
|
196
|
+
- Gambia
|
197
|
+
- Georgia
|
198
|
+
- Germany
|
199
|
+
- Ghana
|
200
|
+
- Gibraltar
|
201
|
+
- Great Britain
|
202
|
+
- Greece
|
203
|
+
- Greenland
|
204
|
+
- Grenada
|
205
|
+
- Guadeloupe
|
206
|
+
- Guam
|
207
|
+
- Guatemala
|
208
|
+
- Guinea
|
209
|
+
- Guinea-Bissau
|
210
|
+
- Guyana
|
211
|
+
- Haiti
|
212
|
+
- Heard and Mc Donald Islands
|
213
|
+
- Honduras
|
214
|
+
- Hong Kong
|
215
|
+
- Hungary
|
216
|
+
- Iceland
|
217
|
+
- India
|
218
|
+
- Indonesia
|
219
|
+
- Ireland
|
220
|
+
- Israel
|
221
|
+
- Italy
|
222
|
+
- Iran
|
223
|
+
- Iraq
|
224
|
+
- Jamaica
|
225
|
+
- Japan
|
226
|
+
- Jordan
|
227
|
+
- Kazakhstan
|
228
|
+
- Kenya
|
229
|
+
- Kiribati
|
230
|
+
- Korea, Republic of
|
231
|
+
- Korea (South)
|
232
|
+
- Kuwait
|
233
|
+
- Kyrgyzstan
|
234
|
+
- Lao People's Democratic Republic
|
235
|
+
- Latvia
|
236
|
+
- Lebanon
|
237
|
+
- Lesotho
|
238
|
+
- Liberia
|
239
|
+
- Liechtenstein
|
240
|
+
- Lithuania
|
241
|
+
- Luxembourg
|
242
|
+
- Macau
|
243
|
+
- Macedonia
|
244
|
+
- Madagascar
|
245
|
+
- Malawi
|
246
|
+
- Malaysia
|
247
|
+
- Maldives
|
248
|
+
- Mali
|
249
|
+
- Malta
|
250
|
+
- Marshall Islands
|
251
|
+
- Martinique
|
252
|
+
- Mauritania
|
253
|
+
- Mauritius
|
254
|
+
- Mayotte
|
255
|
+
- Mexico
|
256
|
+
- Micronesia, Federated States of
|
257
|
+
- Moldova, Republic of
|
258
|
+
- Monaco
|
259
|
+
- Mongolia
|
260
|
+
- Montserrat
|
261
|
+
- Morocco
|
262
|
+
- Mozambique
|
263
|
+
- Myanmar
|
264
|
+
- Namibia
|
265
|
+
- Nauru
|
266
|
+
- Nepal
|
267
|
+
- Netherlands
|
268
|
+
- Netherlands Antilles
|
269
|
+
- New Caledonia
|
270
|
+
- New Zealand
|
271
|
+
- Nicaragua
|
272
|
+
- Niger
|
273
|
+
- Nigeria
|
274
|
+
- Niue
|
275
|
+
- Norfolk Island
|
276
|
+
- Northern Ireland
|
277
|
+
- Northern Mariana Islands
|
278
|
+
- Norway
|
279
|
+
- Oman
|
280
|
+
- Pakistan
|
281
|
+
- Palau
|
282
|
+
- Panama
|
283
|
+
- Papua New Guinea
|
284
|
+
- Paraguay
|
285
|
+
- Peru
|
286
|
+
- Philippines
|
287
|
+
- Pitcairn
|
288
|
+
- Poland
|
289
|
+
- Portugal
|
290
|
+
- Puerto Rico
|
291
|
+
- Qatar
|
292
|
+
- Reunion
|
293
|
+
- Romania
|
294
|
+
- Russia
|
295
|
+
- Rwanda
|
296
|
+
- Saint Kitts and Nevis
|
297
|
+
- Saint Lucia
|
298
|
+
- Saint Vincent and the Grenadines
|
299
|
+
- Samoa (Independent)
|
300
|
+
- San Marino
|
301
|
+
- Sao Tome and Principe
|
302
|
+
- Saudi Arabia
|
303
|
+
- Scotland
|
304
|
+
- Senegal
|
305
|
+
- Serbia and Montenegro
|
306
|
+
- Seychelles
|
307
|
+
- Sierra Leone
|
308
|
+
- Singapore
|
309
|
+
- Slovakia
|
310
|
+
- Slovenia
|
311
|
+
- Solomon Islands
|
312
|
+
- Somalia
|
313
|
+
- South Africa
|
314
|
+
- South Georgia and the South Sandwich Islands
|
315
|
+
- South Korea
|
316
|
+
- Spain
|
317
|
+
- Sri Lanka
|
318
|
+
- St. Helena
|
319
|
+
- St. Pierre and Miquelon
|
320
|
+
- Suriname
|
321
|
+
- Svalbard and Jan Mayen Islands
|
322
|
+
- Swaziland
|
323
|
+
- Sweden
|
324
|
+
- Switzerland
|
325
|
+
- Taiwan
|
326
|
+
- Tajikistan
|
327
|
+
- Tanzania
|
328
|
+
- Thailand
|
329
|
+
- Togo
|
330
|
+
- Tokelau
|
331
|
+
- Tonga
|
332
|
+
- Trinidad
|
333
|
+
- Trinidad and Tobago
|
334
|
+
- Tunisia
|
335
|
+
- Turkey
|
336
|
+
- Turkmenistan
|
337
|
+
- Turks and Caicos Islands
|
338
|
+
- Tuvalu
|
339
|
+
- Uganda
|
340
|
+
- Ukraine
|
341
|
+
- United Arab Emirates
|
342
|
+
- United Kingdom
|
343
|
+
- United States
|
344
|
+
- United States Minor Outlying Islands
|
345
|
+
- Uruguay
|
346
|
+
- Uzbekistan
|
347
|
+
- Vanuatu
|
348
|
+
- Vatican City State (Holy See)
|
349
|
+
- Venezuela
|
350
|
+
- Viet Nam
|
351
|
+
- Virgin Islands (British)
|
352
|
+
- Virgin Islands (U.S.)
|
353
|
+
- Wales
|
354
|
+
- Wallis and Futuna Islands
|
355
|
+
- Western Sahara
|
356
|
+
- Yemen
|
357
|
+
- Zambia
|
358
|
+
- Zimbabwe
|