edgerunner-globalite 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README +202 -0
- data/lang/rails/de-DE.yml +359 -0
- data/lang/rails/en-UK.yml +359 -0
- data/lang/rails/en-US.yml +359 -0
- data/lang/rails/es-AR.yml +359 -0
- data/lang/rails/es-ES.yml +361 -0
- data/lang/rails/fi-FI.yml +359 -0
- data/lang/rails/fr-FR.yml +361 -0
- data/lang/rails/hu-HU.yml +357 -0
- data/lang/rails/it.yml +360 -0
- data/lang/rails/nl-NL.yml +349 -0
- data/lang/rails/pl-PL.yml +360 -0
- data/lang/rails/pt-BR.yml +326 -0
- data/lang/rails/pt-PT.yml +326 -0
- data/lang/rails/ru-RU.yml +360 -0
- data/lang/rails/sr-CP.yml +357 -0
- data/lang/rails/sr-SR.yml +357 -0
- data/lang/rails/tr.yml +192 -0
- data/lang/rails/zh-CN.yml +364 -0
- data/lang/rails/zh-HK.yml +364 -0
- data/lang/rails/zh-TW.yml +364 -0
- data/lib/globalite.rb +30 -0
- data/lib/globalite/l10n.rb +333 -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_controller.rb +18 -0
- data/lib/rails/localized_action_view.rb +229 -0
- data/lib/rails/localized_active_record.rb +80 -0
- data/spec/core_localization_spec.rb +123 -0
- data/spec/helpers/spec_helper.rb +16 -0
- data/spec/l10n_spec.rb +267 -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 +9 -0
- metadata +88 -0
@@ -0,0 +1,349 @@
|
|
1
|
+
locale_name: Nederlands (Nederland)
|
2
|
+
# ActiveRecord::Errors.default_error_messages
|
3
|
+
error_message_inclusion: is niet opgenomen in de lijst met geldige opties.
|
4
|
+
error_message_exclusion: is gereserveerd.
|
5
|
+
error_message_invalid: is ongeldig.
|
6
|
+
error_message_confirmation: komt niet overeen met de bevestiging.
|
7
|
+
error_message_accepted: moet geaccepteerd worden.
|
8
|
+
error_message_empty: mag niet leeg zijn.
|
9
|
+
error_message_blank: mag niet leeg zijn.
|
10
|
+
error_message_too_long: is te lang (maximaal %d karakters).
|
11
|
+
error_message_too_short: is te kort (minimaal %d karakters).
|
12
|
+
error_message_wrong_length: heeft de verkeerde lengte (%d karakters).
|
13
|
+
error_message_taken: is bezet.
|
14
|
+
error_message_not_a_number: is geen getal.
|
15
|
+
# ActionController::Base.resources_path_names
|
16
|
+
resources_path_new: nieuw
|
17
|
+
resources_path_edit: bewerk
|
18
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
19
|
+
date_helper_less_than_x_seconds: minder dan %d seconden
|
20
|
+
date_helper_half_a_minute: een halve minuut
|
21
|
+
date_helper_less_than_a_minute: minder dan een minuut
|
22
|
+
date_helper_one_minute: 1 minuut
|
23
|
+
date_helper_x_minutes: %d Minuten
|
24
|
+
date_helper_one_hour: ongeveer 1 uur
|
25
|
+
date_helper_x_hours: ongeveer %d uur
|
26
|
+
date_helper_one_day: 1 dag
|
27
|
+
date_helper_x_days: %d dagen
|
28
|
+
date_helper_one_month: 1 maand
|
29
|
+
date_helper_x_months: %d maanden
|
30
|
+
date_helper_one_year: 1 jaar
|
31
|
+
date_helper_x_years: %d jaren
|
32
|
+
|
33
|
+
# DON'T TRANSLATE, just order
|
34
|
+
date_helper_order: [:day, :month, :year] #default Rails is US ordered: :order => [:year, :month, :day]
|
35
|
+
|
36
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
37
|
+
default: "%d-%m-%Y"
|
38
|
+
short: "%e %b"
|
39
|
+
long: "%e %B %Y"
|
40
|
+
|
41
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
42
|
+
default: "%a, %d %b %Y, %H:%M:%S %z"
|
43
|
+
short: "%d %b, %H:%M"
|
44
|
+
long: "%d %B %Y, %H:%M"
|
45
|
+
|
46
|
+
# added at the end of date if your date system doesn't use a 24 hours system
|
47
|
+
date_helper_am: am
|
48
|
+
date_helper_pm: pm
|
49
|
+
|
50
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
51
|
+
number_helper_unit: "€"
|
52
|
+
number_helper_separator: "," #unit separator (between integer part and fraction part)
|
53
|
+
number_helper_delimiter: "." #delimiter between each group of thousands. Example: 1.234.567
|
54
|
+
number_helper_order: [ unit, number ]
|
55
|
+
#to support for instance French format, the order is different: Unit comes last (ex. "1.234,00 €")
|
56
|
+
|
57
|
+
# use by +Array#to_sentence()+
|
58
|
+
array_connector: 'en'
|
59
|
+
array_skip_last_comma: 'false'
|
60
|
+
|
61
|
+
# Active Record error messages:
|
62
|
+
active_record_helper_error_description: 'Er was een probleem met de volgende velden:'
|
63
|
+
active_record_helper_header_message: Door pluralize{{error_count}, Fehler, Fehler} kon {failed_object} niet worden opgeslagen.
|
64
|
+
|
65
|
+
date_helper_month_names:
|
66
|
+
- # Leave that line
|
67
|
+
- # Leave that line
|
68
|
+
- januari
|
69
|
+
- februari
|
70
|
+
- maart
|
71
|
+
- april
|
72
|
+
- mei
|
73
|
+
- juni
|
74
|
+
- juli
|
75
|
+
- augustus
|
76
|
+
- september
|
77
|
+
- oktober
|
78
|
+
- november
|
79
|
+
- december
|
80
|
+
|
81
|
+
date_helper_abbr_month_names:
|
82
|
+
- # Leave that line
|
83
|
+
- # Leave that line
|
84
|
+
- jan
|
85
|
+
- feb
|
86
|
+
- maa
|
87
|
+
- apr
|
88
|
+
- mei
|
89
|
+
- jun
|
90
|
+
- jul
|
91
|
+
- aug
|
92
|
+
- sep
|
93
|
+
- okt
|
94
|
+
- nov
|
95
|
+
- dec
|
96
|
+
|
97
|
+
date_helper_day_names:
|
98
|
+
- zondag
|
99
|
+
- maandag
|
100
|
+
- dinsdag
|
101
|
+
- woensdag
|
102
|
+
- donderdag
|
103
|
+
- vrijdag
|
104
|
+
- zaterdag
|
105
|
+
|
106
|
+
date_helper_abbr_day_names:
|
107
|
+
- zo
|
108
|
+
- ma
|
109
|
+
- di
|
110
|
+
- wo
|
111
|
+
- do
|
112
|
+
- vr
|
113
|
+
- za
|
114
|
+
|
115
|
+
countries_list:
|
116
|
+
- Afghanistan
|
117
|
+
- Albania
|
118
|
+
- Algeria
|
119
|
+
- American Samoa
|
120
|
+
- Andorra
|
121
|
+
- Angola
|
122
|
+
- Anguilla
|
123
|
+
- Antarctica
|
124
|
+
- Antigua and Barbuda
|
125
|
+
- Argentina
|
126
|
+
- Armenia
|
127
|
+
- Aruba
|
128
|
+
- Australia
|
129
|
+
- Austria
|
130
|
+
- Azerbaijan
|
131
|
+
- Bahamas
|
132
|
+
- Bahrain
|
133
|
+
- Bangladesh
|
134
|
+
- Barbados
|
135
|
+
- Belarus
|
136
|
+
- Belgium
|
137
|
+
- Belize
|
138
|
+
- Benin
|
139
|
+
- Bermuda
|
140
|
+
- Bhutan
|
141
|
+
- Bolivia
|
142
|
+
- Bosnia and Herzegovina
|
143
|
+
- Botswana
|
144
|
+
- Bouvet Island
|
145
|
+
- Brazil
|
146
|
+
- British Indian Ocean Territory
|
147
|
+
- Brunei Darussalam
|
148
|
+
- Bulgaria
|
149
|
+
- Burkina Faso
|
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 Islands
|
162
|
+
- Colombia
|
163
|
+
- Comoros
|
164
|
+
- Congo
|
165
|
+
- Congo, 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
|
+
- Ecuador
|
178
|
+
- Egypt
|
179
|
+
- El Salvador
|
180
|
+
- Equatorial Guinea
|
181
|
+
- Eritrea
|
182
|
+
- Estonia
|
183
|
+
- Ethiopia
|
184
|
+
- Falkland Islands
|
185
|
+
- Faroe Islands
|
186
|
+
- Fiji
|
187
|
+
- Finland
|
188
|
+
- France
|
189
|
+
- French Guiana
|
190
|
+
- French Polynesia
|
191
|
+
- Gabon
|
192
|
+
- Gambia
|
193
|
+
- Georgia
|
194
|
+
- Germany
|
195
|
+
- Ghana
|
196
|
+
- Gibraltar
|
197
|
+
- Greece
|
198
|
+
- Greenland
|
199
|
+
- Grenada
|
200
|
+
- Guadeloupe
|
201
|
+
- Guam
|
202
|
+
- Guatemala
|
203
|
+
- Guinea
|
204
|
+
- Guinea-Bissau
|
205
|
+
- Guyana
|
206
|
+
- Haiti
|
207
|
+
- Heard Island and McDonald Islands
|
208
|
+
- Honduras
|
209
|
+
- Hong Kong
|
210
|
+
- Hungary
|
211
|
+
- Iceland
|
212
|
+
- India
|
213
|
+
- Indonesia
|
214
|
+
- Iran
|
215
|
+
- Iraq
|
216
|
+
- Ireland
|
217
|
+
- Israel
|
218
|
+
- Italy
|
219
|
+
- Jamaica
|
220
|
+
- Japan
|
221
|
+
- Jordan
|
222
|
+
- Kazakhstan
|
223
|
+
- Kenya
|
224
|
+
- Kiribati
|
225
|
+
- Kuwait
|
226
|
+
- Kyrgyzstan
|
227
|
+
- Laos
|
228
|
+
- Latvia
|
229
|
+
- Lebanon
|
230
|
+
- Lesotho
|
231
|
+
- Liberia
|
232
|
+
- Libya
|
233
|
+
- Liechtenstein
|
234
|
+
- Lithuania
|
235
|
+
- Luxembourg
|
236
|
+
- Macao
|
237
|
+
- Macedonia
|
238
|
+
- Madagascar
|
239
|
+
- Malawi
|
240
|
+
- Malaysia
|
241
|
+
- Maldives
|
242
|
+
- Mali
|
243
|
+
- Malta
|
244
|
+
- Marshall Islands
|
245
|
+
- Martinique
|
246
|
+
- Mauritania
|
247
|
+
- Mauritius
|
248
|
+
- Mayotte
|
249
|
+
- Mexico
|
250
|
+
- Micronesia
|
251
|
+
- Moldova
|
252
|
+
- Monaco
|
253
|
+
- Mongolia
|
254
|
+
- Montserrat
|
255
|
+
- Morocco
|
256
|
+
- Mozambique
|
257
|
+
- Myanmar
|
258
|
+
- Namibia
|
259
|
+
- Nauru
|
260
|
+
- Nepal
|
261
|
+
- Netherlands
|
262
|
+
- Netherlands Antilles
|
263
|
+
- New Caledonia
|
264
|
+
- New Zealand
|
265
|
+
- Nicaragua
|
266
|
+
- Niger
|
267
|
+
- Nigeria
|
268
|
+
- Norfolk Island
|
269
|
+
- North Korea
|
270
|
+
- Norway
|
271
|
+
- Oman
|
272
|
+
- Pakistan
|
273
|
+
- Palau
|
274
|
+
- Palestinian Territory
|
275
|
+
- Panama
|
276
|
+
- Papua New Guinea
|
277
|
+
- Paraguay
|
278
|
+
- Peru
|
279
|
+
- Philippines
|
280
|
+
- Pitcairn
|
281
|
+
- Poland
|
282
|
+
- Portugal
|
283
|
+
- Puerto Rico
|
284
|
+
- Qatar
|
285
|
+
- Romania
|
286
|
+
- Russian Federation
|
287
|
+
- Rwanda
|
288
|
+
- Saint Helena
|
289
|
+
- Saint Kitts and Nevis
|
290
|
+
- Saint Lucia
|
291
|
+
- Saint Pierre and Miquelon
|
292
|
+
- Saint Vincent and the Grenadines
|
293
|
+
- Samoa
|
294
|
+
- San Marino
|
295
|
+
- Sao Tome and Principe
|
296
|
+
- Saudi Arabia
|
297
|
+
- Senegal
|
298
|
+
- Serbia and Montenegro
|
299
|
+
- Seychelles
|
300
|
+
- Sierra Leone
|
301
|
+
- Singapore
|
302
|
+
- Slovakia
|
303
|
+
- Slovenia
|
304
|
+
- Solomon Islands
|
305
|
+
- Somalia
|
306
|
+
- South Africa
|
307
|
+
- South Georgia
|
308
|
+
- South Korea
|
309
|
+
- Spain
|
310
|
+
- Sri Lanka
|
311
|
+
- Sudan
|
312
|
+
- Suriname
|
313
|
+
- Svalbard and Jan Mayen
|
314
|
+
- Swaziland
|
315
|
+
- Sweden
|
316
|
+
- Switzerland
|
317
|
+
- Syrian Arab Republic
|
318
|
+
- Taiwan
|
319
|
+
- Tajikistan
|
320
|
+
- Tanzania
|
321
|
+
- Thailand
|
322
|
+
- Timor-Leste
|
323
|
+
- Togo
|
324
|
+
- Tokelau
|
325
|
+
- Tonga
|
326
|
+
- Trinidad and Tobago
|
327
|
+
- Tunisia
|
328
|
+
- Turkey
|
329
|
+
- Turkmenistan
|
330
|
+
- Tuvalu
|
331
|
+
- Uganda
|
332
|
+
- Ukraine
|
333
|
+
- United Arab Emirates
|
334
|
+
- United Kingdom
|
335
|
+
- United States
|
336
|
+
- United States Minor Outlying Islands
|
337
|
+
- Uruguay
|
338
|
+
- Uzbekistan
|
339
|
+
- Vanuatu
|
340
|
+
- Vatican City
|
341
|
+
- Venezuela
|
342
|
+
- Vietnam
|
343
|
+
- Virgin Islands, British
|
344
|
+
- Virgin Islands, U.S.
|
345
|
+
- Wallis and Futuna
|
346
|
+
- Western Sahara
|
347
|
+
- Yemen
|
348
|
+
- Zambia
|
349
|
+
- Zimbabwe
|
@@ -0,0 +1,360 @@
|
|
1
|
+
locale_name: Polski (PL)
|
2
|
+
# ActiveRecord::Errors.default_error_messages
|
3
|
+
error_message_inclusion: wartość nie znajduje się na liście dozwolonych elementów
|
4
|
+
error_message_exclusion: wartość jest zarezerwowana
|
5
|
+
error_message_invalid: wartość jest nieprawidłowa
|
6
|
+
error_message_confirmation: pole musi być potwierdzone
|
7
|
+
error_message_accepted: pole musi być zaakceptowane
|
8
|
+
error_message_empty: pole nie może być puste
|
9
|
+
error_message_blank: pole nie może być puste
|
10
|
+
error_message_too_long: podana wartość jest zbyt długia (maksymalnie %d znaków)
|
11
|
+
error_message_too_short: podana wartość jest zbyt krótka (minimalnie %d znaków)
|
12
|
+
error_message_wrong_length: pole ma złą długość (prawidłowa wartość to %d znaków)
|
13
|
+
error_message_taken: pole wartość jest już zajęta
|
14
|
+
error_message_not_a_number: wartość nie jest liczbą
|
15
|
+
|
16
|
+
# ActionController::Base.resources_path_names
|
17
|
+
resources_path_new: nowy
|
18
|
+
resources_path_edit: edytuj
|
19
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
20
|
+
date_helper_less_than_x_seconds: mniej niż %d sekund
|
21
|
+
date_helper_half_a_minute: pół minuty
|
22
|
+
date_helper_less_than_a_minute: mniej niż minuta
|
23
|
+
date_helper_one_minute: 1 minuta
|
24
|
+
date_helper_x_minutes: %d minut(y)
|
25
|
+
date_helper_one_hour: około 1 godzin(y)
|
26
|
+
date_helper_x_hours: około %d godzin
|
27
|
+
date_helper_one_day: 1 dzień
|
28
|
+
date_helper_x_days: %d dni
|
29
|
+
date_helper_one_month: 1 miesiąc
|
30
|
+
date_helper_x_months: %d miesięcy
|
31
|
+
date_helper_one_year: 1 rok
|
32
|
+
date_helper_x_years: %d lat(a)
|
33
|
+
|
34
|
+
# DON'T TRANSLATE, just order
|
35
|
+
date_helper_order: [:year, :month, :day] #default Rails is US ordered: :order => [:year, :month, :day]
|
36
|
+
|
37
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
38
|
+
default: "%Y-%m-%d"
|
39
|
+
short: "%b %e"
|
40
|
+
long: "%B %e, %Y"
|
41
|
+
|
42
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
43
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
44
|
+
short: "%d %b %H:%M"
|
45
|
+
long: "%B %d, %Y %H:%M"
|
46
|
+
|
47
|
+
# added at the end of date if your date system doesn't use a 24 hours system
|
48
|
+
date_helper_am: am
|
49
|
+
date_helper_pm: pm
|
50
|
+
|
51
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
52
|
+
number_helper_unit: "$"
|
53
|
+
number_helper_separator: "." #unit separator (between integer part and fraction part)
|
54
|
+
number_helper_delimiter: "," #delimiter between each group of thousands. Example: 1.234.567
|
55
|
+
number_helper_order: [ unit, number ]
|
56
|
+
#to support for instance French format, the order is different: Unit comes last (ex. "1.234,00 €")
|
57
|
+
|
58
|
+
# use by +Array#to_sentence()+
|
59
|
+
array_connector: 'and'
|
60
|
+
array_skip_last_comma: 'false'
|
61
|
+
|
62
|
+
# Active Record error messages:
|
63
|
+
active_record_helper_error_description: 'Problemy z następującymi polami:'
|
64
|
+
active_record_helper_header_message: 'Wystąpiło(y) {error_count} błędów walidacji'
|
65
|
+
|
66
|
+
date_helper_month_names:
|
67
|
+
- # Leave that line
|
68
|
+
- # Leave that line
|
69
|
+
- Styczeń
|
70
|
+
- Luty
|
71
|
+
- Marzec
|
72
|
+
- Kwiecień
|
73
|
+
- Maj
|
74
|
+
- Czerwiec
|
75
|
+
- Lipiec
|
76
|
+
- Sierpień
|
77
|
+
- Wrzesień
|
78
|
+
- Październik
|
79
|
+
- Listopad
|
80
|
+
- Grudzień
|
81
|
+
|
82
|
+
date_helper_abbr_month_names:
|
83
|
+
- # Leave that line
|
84
|
+
- # Leave that line
|
85
|
+
- Sty
|
86
|
+
- Lut
|
87
|
+
- Mar
|
88
|
+
- Kwi
|
89
|
+
- Maj
|
90
|
+
- Cze
|
91
|
+
- Lip
|
92
|
+
- Sie
|
93
|
+
- Wrz
|
94
|
+
- Paź
|
95
|
+
- Lis
|
96
|
+
- Gru
|
97
|
+
|
98
|
+
date_helper_day_names:
|
99
|
+
- Niedziela
|
100
|
+
- Poniedziałek
|
101
|
+
- Wtorek
|
102
|
+
- Środa
|
103
|
+
- Czwartek
|
104
|
+
- Piątek
|
105
|
+
- Sobota
|
106
|
+
|
107
|
+
date_helper_abbr_day_names:
|
108
|
+
- Nie
|
109
|
+
- Pon
|
110
|
+
- Wto
|
111
|
+
- Śro
|
112
|
+
- Czw
|
113
|
+
- Pią
|
114
|
+
- Sob
|
115
|
+
|
116
|
+
countries_list:
|
117
|
+
- Afghanistan
|
118
|
+
- Albania
|
119
|
+
- Algeria
|
120
|
+
- American Samoa
|
121
|
+
- Andorra
|
122
|
+
- Angola
|
123
|
+
- Anguilla
|
124
|
+
- Antarctica
|
125
|
+
- Antigua And Barbuda
|
126
|
+
- Argentina
|
127
|
+
- Armenia
|
128
|
+
- Aruba
|
129
|
+
- Australia
|
130
|
+
- Austria
|
131
|
+
- Azerbaijan
|
132
|
+
- Bahamas
|
133
|
+
- Bahrain
|
134
|
+
- Bangladesh
|
135
|
+
- Barbados
|
136
|
+
- Belarus
|
137
|
+
- Belgium
|
138
|
+
- Belize
|
139
|
+
- Benin
|
140
|
+
- Bermuda
|
141
|
+
- Bhutan
|
142
|
+
- Bolivia
|
143
|
+
- Bosnia and Herzegowina
|
144
|
+
- Botswana
|
145
|
+
- Bouvet Island
|
146
|
+
- Brazil
|
147
|
+
- British Indian Ocean Territory
|
148
|
+
- Brunei Darussalam
|
149
|
+
- Bulgaria
|
150
|
+
- Burkina Faso
|
151
|
+
- Burma
|
152
|
+
- Burundi
|
153
|
+
- Cambodia
|
154
|
+
- Cameroon
|
155
|
+
- Canada
|
156
|
+
- Cape Verde
|
157
|
+
- Cayman Islands
|
158
|
+
- Central African Republic
|
159
|
+
- Chad
|
160
|
+
- Chile
|
161
|
+
- China
|
162
|
+
- Christmas Island
|
163
|
+
- Cocos (Keeling) Islands
|
164
|
+
- Colombia
|
165
|
+
- Comoros
|
166
|
+
- Congo
|
167
|
+
- Congo, the Democratic Republic of the
|
168
|
+
- Cook Islands
|
169
|
+
- Costa Rica
|
170
|
+
- Cote d'Ivoire
|
171
|
+
- Croatia
|
172
|
+
- Cuba
|
173
|
+
- Cyprus
|
174
|
+
- Czech Republic
|
175
|
+
- Denmark
|
176
|
+
- Djibouti
|
177
|
+
- Dominica
|
178
|
+
- Dominican Republic
|
179
|
+
- East Timor
|
180
|
+
- Ecuador
|
181
|
+
- Egypt
|
182
|
+
- El Salvador
|
183
|
+
- England
|
184
|
+
- Equatorial Guinea
|
185
|
+
- Eritrea
|
186
|
+
- Espana
|
187
|
+
- Estonia
|
188
|
+
- Ethiopia
|
189
|
+
- Falkland Islands
|
190
|
+
- Faroe Islands
|
191
|
+
- Fiji
|
192
|
+
- Finland
|
193
|
+
- France
|
194
|
+
- French Guiana
|
195
|
+
- French Polynesia
|
196
|
+
- French Southern Territories
|
197
|
+
- Gabon
|
198
|
+
- Gambia
|
199
|
+
- Georgia
|
200
|
+
- Germany
|
201
|
+
- Ghana
|
202
|
+
- Gibraltar
|
203
|
+
- Great Britain
|
204
|
+
- Greece
|
205
|
+
- Greenland
|
206
|
+
- Grenada
|
207
|
+
- Guadeloupe
|
208
|
+
- Guam
|
209
|
+
- Guatemala
|
210
|
+
- Guinea
|
211
|
+
- Guinea-Bissau
|
212
|
+
- Guyana
|
213
|
+
- Haiti
|
214
|
+
- Heard and Mc Donald Islands
|
215
|
+
- Honduras
|
216
|
+
- Hong Kong
|
217
|
+
- Hungary
|
218
|
+
- Iceland
|
219
|
+
- India
|
220
|
+
- Indonesia
|
221
|
+
- Ireland
|
222
|
+
- Israel
|
223
|
+
- Italy
|
224
|
+
- Iran
|
225
|
+
- Iraq
|
226
|
+
- Jamaica
|
227
|
+
- Japan
|
228
|
+
- Jordan
|
229
|
+
- Kazakhstan
|
230
|
+
- Kenya
|
231
|
+
- Kiribati
|
232
|
+
- Korea, Republic of
|
233
|
+
- Korea (South)
|
234
|
+
- Kuwait
|
235
|
+
- Kyrgyzstan
|
236
|
+
- Lao People's Democratic Republic
|
237
|
+
- Latvia
|
238
|
+
- Lebanon
|
239
|
+
- Lesotho
|
240
|
+
- Liberia
|
241
|
+
- Liechtenstein
|
242
|
+
- Lithuania
|
243
|
+
- Luxembourg
|
244
|
+
- Macau
|
245
|
+
- Macedonia
|
246
|
+
- Madagascar
|
247
|
+
- Malawi
|
248
|
+
- Malaysia
|
249
|
+
- Maldives
|
250
|
+
- Mali
|
251
|
+
- Malta
|
252
|
+
- Marshall Islands
|
253
|
+
- Martinique
|
254
|
+
- Mauritania
|
255
|
+
- Mauritius
|
256
|
+
- Mayotte
|
257
|
+
- Mexico
|
258
|
+
- Micronesia, Federated States of
|
259
|
+
- Moldova, Republic of
|
260
|
+
- Monaco
|
261
|
+
- Mongolia
|
262
|
+
- Montserrat
|
263
|
+
- Morocco
|
264
|
+
- Mozambique
|
265
|
+
- Myanmar
|
266
|
+
- Namibia
|
267
|
+
- Nauru
|
268
|
+
- Nepal
|
269
|
+
- Netherlands
|
270
|
+
- Netherlands Antilles
|
271
|
+
- New Caledonia
|
272
|
+
- New Zealand
|
273
|
+
- Nicaragua
|
274
|
+
- Niger
|
275
|
+
- Nigeria
|
276
|
+
- Niue
|
277
|
+
- Norfolk Island
|
278
|
+
- Northern Ireland
|
279
|
+
- Northern Mariana Islands
|
280
|
+
- Norway
|
281
|
+
- Oman
|
282
|
+
- Pakistan
|
283
|
+
- Palau
|
284
|
+
- Panama
|
285
|
+
- Papua New Guinea
|
286
|
+
- Paraguay
|
287
|
+
- Peru
|
288
|
+
- Philippines
|
289
|
+
- Pitcairn
|
290
|
+
- Poland
|
291
|
+
- Portugal
|
292
|
+
- Puerto Rico
|
293
|
+
- Qatar
|
294
|
+
- Reunion
|
295
|
+
- Romania
|
296
|
+
- Russia
|
297
|
+
- Rwanda
|
298
|
+
- Saint Kitts and Nevis
|
299
|
+
- Saint Lucia
|
300
|
+
- Saint Vincent and the Grenadines
|
301
|
+
- Samoa (Independent)
|
302
|
+
- San Marino
|
303
|
+
- Sao Tome and Principe
|
304
|
+
- Saudi Arabia
|
305
|
+
- Scotland
|
306
|
+
- Senegal
|
307
|
+
- Serbia and Montenegro
|
308
|
+
- Seychelles
|
309
|
+
- Sierra Leone
|
310
|
+
- Singapore
|
311
|
+
- Slovakia
|
312
|
+
- Slovenia
|
313
|
+
- Solomon Islands
|
314
|
+
- Somalia
|
315
|
+
- South Africa
|
316
|
+
- South Georgia and the South Sandwich Islands
|
317
|
+
- South Korea
|
318
|
+
- Spain
|
319
|
+
- Sri Lanka
|
320
|
+
- St. Helena
|
321
|
+
- St. Pierre and Miquelon
|
322
|
+
- Suriname
|
323
|
+
- Svalbard and Jan Mayen Islands
|
324
|
+
- Swaziland
|
325
|
+
- Sweden
|
326
|
+
- Switzerland
|
327
|
+
- Taiwan
|
328
|
+
- Tajikistan
|
329
|
+
- Tanzania
|
330
|
+
- Thailand
|
331
|
+
- Togo
|
332
|
+
- Tokelau
|
333
|
+
- Tonga
|
334
|
+
- Trinidad
|
335
|
+
- Trinidad and Tobago
|
336
|
+
- Tunisia
|
337
|
+
- Turkey
|
338
|
+
- Turkmenistan
|
339
|
+
- Turks and Caicos Islands
|
340
|
+
- Tuvalu
|
341
|
+
- Uganda
|
342
|
+
- Ukraine
|
343
|
+
- United Arab Emirates
|
344
|
+
- United Kingdom
|
345
|
+
- United States
|
346
|
+
- United States Minor Outlying Islands
|
347
|
+
- Uruguay
|
348
|
+
- Uzbekistan
|
349
|
+
- Vanuatu
|
350
|
+
- Vatican City State (Holy See)
|
351
|
+
- Venezuela
|
352
|
+
- Viet Nam
|
353
|
+
- Virgin Islands (British)
|
354
|
+
- Virgin Islands (U.S.)
|
355
|
+
- Wales
|
356
|
+
- Wallis and Futuna Islands
|
357
|
+
- Western Sahara
|
358
|
+
- Yemen
|
359
|
+
- Zambia
|
360
|
+
- Zimbabwe
|