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,347 @@
|
|
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
|
+
|
16
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
17
|
+
date_helper_less_than_x_seconds: minder dan %d seconden
|
18
|
+
date_helper_half_a_minute: een halve minuut
|
19
|
+
date_helper_less_than_a_minute: minder dan een minuut
|
20
|
+
date_helper_one_minute: 1 minuut
|
21
|
+
date_helper_x_minutes: %d Minuten
|
22
|
+
date_helper_one_hour: ongeveer 1 uur
|
23
|
+
date_helper_x_hours: ongeveer %d uur
|
24
|
+
date_helper_one_day: 1 dag
|
25
|
+
date_helper_x_days: %d dagen
|
26
|
+
date_helper_one_month: 1 maand
|
27
|
+
date_helper_x_months: %d maanden
|
28
|
+
date_helper_one_year: 1 jaar
|
29
|
+
date_helper_x_years: %d jaren
|
30
|
+
|
31
|
+
# DON'T TRANSLATE, just order
|
32
|
+
date_helper_order: [:day, :month, :year] #default Rails is US ordered: :order => [:year, :month, :day]
|
33
|
+
|
34
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
35
|
+
default: "%d-%m-%Y"
|
36
|
+
short: "%e %b"
|
37
|
+
long: "%e %B %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: "%d %B %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: am
|
46
|
+
date_helper_pm: pm
|
47
|
+
|
48
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
49
|
+
number_helper_unit: "€"
|
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: 'en'
|
57
|
+
array_skip_last_comma: 'false'
|
58
|
+
|
59
|
+
# Active Record error messages:
|
60
|
+
active_record_helper_error_description: 'Er was een probleem met de volgende velden:'
|
61
|
+
active_record_helper_header_message: Door pluralize{{error_count}, Fehler, Fehler} kon {failed_object} niet worden opgeslagen.
|
62
|
+
|
63
|
+
date_helper_month_names:
|
64
|
+
- # Leave that line
|
65
|
+
- # Leave that line
|
66
|
+
- januari
|
67
|
+
- februari
|
68
|
+
- maart
|
69
|
+
- april
|
70
|
+
- mei
|
71
|
+
- juni
|
72
|
+
- juli
|
73
|
+
- augustus
|
74
|
+
- september
|
75
|
+
- oktober
|
76
|
+
- november
|
77
|
+
- december
|
78
|
+
|
79
|
+
date_helper_abbr_month_names:
|
80
|
+
- # Leave that line
|
81
|
+
- # Leave that line
|
82
|
+
- jan
|
83
|
+
- feb
|
84
|
+
- maa
|
85
|
+
- apr
|
86
|
+
- mei
|
87
|
+
- jun
|
88
|
+
- jul
|
89
|
+
- aug
|
90
|
+
- sep
|
91
|
+
- okt
|
92
|
+
- nov
|
93
|
+
- dec
|
94
|
+
|
95
|
+
date_helper_day_names:
|
96
|
+
- zondag
|
97
|
+
- maandag
|
98
|
+
- dinsdag
|
99
|
+
- woensdag
|
100
|
+
- donderdag
|
101
|
+
- vrijdag
|
102
|
+
- zaterdag
|
103
|
+
|
104
|
+
date_helper_abbr_day_names:
|
105
|
+
- zo
|
106
|
+
- ma
|
107
|
+
- di
|
108
|
+
- wo
|
109
|
+
- do
|
110
|
+
- vr
|
111
|
+
- za
|
112
|
+
|
113
|
+
countries_list:
|
114
|
+
- Afghanistan
|
115
|
+
- Albania
|
116
|
+
- Algeria
|
117
|
+
- American Samoa
|
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 Herzegovina
|
141
|
+
- Botswana
|
142
|
+
- Bouvet Island
|
143
|
+
- Brazil
|
144
|
+
- British Indian Ocean Territory
|
145
|
+
- Brunei Darussalam
|
146
|
+
- Bulgaria
|
147
|
+
- Burkina Faso
|
148
|
+
- Burundi
|
149
|
+
- Cambodia
|
150
|
+
- Cameroon
|
151
|
+
- Canada
|
152
|
+
- Cape Verde
|
153
|
+
- Cayman Islands
|
154
|
+
- Central African Republic
|
155
|
+
- Chad
|
156
|
+
- Chile
|
157
|
+
- China
|
158
|
+
- Christmas Island
|
159
|
+
- Cocos Islands
|
160
|
+
- Colombia
|
161
|
+
- Comoros
|
162
|
+
- Congo
|
163
|
+
- Congo, Democratic Republic of the
|
164
|
+
- Cook Islands
|
165
|
+
- Costa Rica
|
166
|
+
- Cote d'Ivoire
|
167
|
+
- Croatia
|
168
|
+
- Cuba
|
169
|
+
- Cyprus
|
170
|
+
- Czech Republic
|
171
|
+
- Denmark
|
172
|
+
- Djibouti
|
173
|
+
- Dominica
|
174
|
+
- Dominican Republic
|
175
|
+
- Ecuador
|
176
|
+
- Egypt
|
177
|
+
- El Salvador
|
178
|
+
- Equatorial Guinea
|
179
|
+
- Eritrea
|
180
|
+
- Estonia
|
181
|
+
- Ethiopia
|
182
|
+
- Falkland Islands
|
183
|
+
- Faroe Islands
|
184
|
+
- Fiji
|
185
|
+
- Finland
|
186
|
+
- France
|
187
|
+
- French Guiana
|
188
|
+
- French Polynesia
|
189
|
+
- Gabon
|
190
|
+
- Gambia
|
191
|
+
- Georgia
|
192
|
+
- Germany
|
193
|
+
- Ghana
|
194
|
+
- Gibraltar
|
195
|
+
- Greece
|
196
|
+
- Greenland
|
197
|
+
- Grenada
|
198
|
+
- Guadeloupe
|
199
|
+
- Guam
|
200
|
+
- Guatemala
|
201
|
+
- Guinea
|
202
|
+
- Guinea-Bissau
|
203
|
+
- Guyana
|
204
|
+
- Haiti
|
205
|
+
- Heard Island and McDonald Islands
|
206
|
+
- Honduras
|
207
|
+
- Hong Kong
|
208
|
+
- Hungary
|
209
|
+
- Iceland
|
210
|
+
- India
|
211
|
+
- Indonesia
|
212
|
+
- Iran
|
213
|
+
- Iraq
|
214
|
+
- Ireland
|
215
|
+
- Israel
|
216
|
+
- Italy
|
217
|
+
- Jamaica
|
218
|
+
- Japan
|
219
|
+
- Jordan
|
220
|
+
- Kazakhstan
|
221
|
+
- Kenya
|
222
|
+
- Kiribati
|
223
|
+
- Kuwait
|
224
|
+
- Kyrgyzstan
|
225
|
+
- Laos
|
226
|
+
- Latvia
|
227
|
+
- Lebanon
|
228
|
+
- Lesotho
|
229
|
+
- Liberia
|
230
|
+
- Libya
|
231
|
+
- Liechtenstein
|
232
|
+
- Lithuania
|
233
|
+
- Luxembourg
|
234
|
+
- Macao
|
235
|
+
- Macedonia
|
236
|
+
- Madagascar
|
237
|
+
- Malawi
|
238
|
+
- Malaysia
|
239
|
+
- Maldives
|
240
|
+
- Mali
|
241
|
+
- Malta
|
242
|
+
- Marshall Islands
|
243
|
+
- Martinique
|
244
|
+
- Mauritania
|
245
|
+
- Mauritius
|
246
|
+
- Mayotte
|
247
|
+
- Mexico
|
248
|
+
- Micronesia
|
249
|
+
- Moldova
|
250
|
+
- Monaco
|
251
|
+
- Mongolia
|
252
|
+
- Montserrat
|
253
|
+
- Morocco
|
254
|
+
- Mozambique
|
255
|
+
- Myanmar
|
256
|
+
- Namibia
|
257
|
+
- Nauru
|
258
|
+
- Nepal
|
259
|
+
- Netherlands
|
260
|
+
- Netherlands Antilles
|
261
|
+
- New Caledonia
|
262
|
+
- New Zealand
|
263
|
+
- Nicaragua
|
264
|
+
- Niger
|
265
|
+
- Nigeria
|
266
|
+
- Norfolk Island
|
267
|
+
- North Korea
|
268
|
+
- Norway
|
269
|
+
- Oman
|
270
|
+
- Pakistan
|
271
|
+
- Palau
|
272
|
+
- Palestinian Territory
|
273
|
+
- Panama
|
274
|
+
- Papua New Guinea
|
275
|
+
- Paraguay
|
276
|
+
- Peru
|
277
|
+
- Philippines
|
278
|
+
- Pitcairn
|
279
|
+
- Poland
|
280
|
+
- Portugal
|
281
|
+
- Puerto Rico
|
282
|
+
- Qatar
|
283
|
+
- Romania
|
284
|
+
- Russian Federation
|
285
|
+
- Rwanda
|
286
|
+
- Saint Helena
|
287
|
+
- Saint Kitts and Nevis
|
288
|
+
- Saint Lucia
|
289
|
+
- Saint Pierre and Miquelon
|
290
|
+
- Saint Vincent and the Grenadines
|
291
|
+
- Samoa
|
292
|
+
- San Marino
|
293
|
+
- Sao Tome and Principe
|
294
|
+
- Saudi Arabia
|
295
|
+
- Senegal
|
296
|
+
- Serbia and Montenegro
|
297
|
+
- Seychelles
|
298
|
+
- Sierra Leone
|
299
|
+
- Singapore
|
300
|
+
- Slovakia
|
301
|
+
- Slovenia
|
302
|
+
- Solomon Islands
|
303
|
+
- Somalia
|
304
|
+
- South Africa
|
305
|
+
- South Georgia
|
306
|
+
- South Korea
|
307
|
+
- Spain
|
308
|
+
- Sri Lanka
|
309
|
+
- Sudan
|
310
|
+
- Suriname
|
311
|
+
- Svalbard and Jan Mayen
|
312
|
+
- Swaziland
|
313
|
+
- Sweden
|
314
|
+
- Switzerland
|
315
|
+
- Syrian Arab Republic
|
316
|
+
- Taiwan
|
317
|
+
- Tajikistan
|
318
|
+
- Tanzania
|
319
|
+
- Thailand
|
320
|
+
- Timor-Leste
|
321
|
+
- Togo
|
322
|
+
- Tokelau
|
323
|
+
- Tonga
|
324
|
+
- Trinidad and Tobago
|
325
|
+
- Tunisia
|
326
|
+
- Turkey
|
327
|
+
- Turkmenistan
|
328
|
+
- Tuvalu
|
329
|
+
- Uganda
|
330
|
+
- Ukraine
|
331
|
+
- United Arab Emirates
|
332
|
+
- United Kingdom
|
333
|
+
- United States
|
334
|
+
- United States Minor Outlying Islands
|
335
|
+
- Uruguay
|
336
|
+
- Uzbekistan
|
337
|
+
- Vanuatu
|
338
|
+
- Vatican City
|
339
|
+
- Venezuela
|
340
|
+
- Vietnam
|
341
|
+
- Virgin Islands, British
|
342
|
+
- Virgin Islands, U.S.
|
343
|
+
- Wallis and Futuna
|
344
|
+
- Western Sahara
|
345
|
+
- Yemen
|
346
|
+
- Zambia
|
347
|
+
- Zimbabwe
|
@@ -0,0 +1,358 @@
|
|
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
|
+
|
17
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
18
|
+
date_helper_less_than_x_seconds: mniej niż %d sekund
|
19
|
+
date_helper_half_a_minute: pół minuty
|
20
|
+
date_helper_less_than_a_minute: mniej niż minuta
|
21
|
+
date_helper_one_minute: 1 minuta
|
22
|
+
date_helper_x_minutes: %d minut(y)
|
23
|
+
date_helper_one_hour: około 1 godzin(y)
|
24
|
+
date_helper_x_hours: około %d godzin
|
25
|
+
date_helper_one_day: 1 dzień
|
26
|
+
date_helper_x_days: %d dni
|
27
|
+
date_helper_one_month: 1 miesiąc
|
28
|
+
date_helper_x_months: %d miesięcy
|
29
|
+
date_helper_one_year: 1 rok
|
30
|
+
date_helper_x_years: %d lat(a)
|
31
|
+
|
32
|
+
# DON'T TRANSLATE, just order
|
33
|
+
date_helper_order: [:year, :month, :day] #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: "%b %e"
|
38
|
+
long: "%B %e, %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: "%B %d, %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: [ unit, number ]
|
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: 'and'
|
58
|
+
array_skip_last_comma: 'false'
|
59
|
+
|
60
|
+
# Active Record error messages:
|
61
|
+
active_record_helper_error_description: 'Problemy z następującymi polami:'
|
62
|
+
active_record_helper_header_message: 'Wystąpiło(y) {error_count} błędów walidacji'
|
63
|
+
|
64
|
+
date_helper_month_names:
|
65
|
+
- # Leave that line
|
66
|
+
- # Leave that line
|
67
|
+
- Styczeń
|
68
|
+
- Luty
|
69
|
+
- Marzec
|
70
|
+
- Kwiecień
|
71
|
+
- Maj
|
72
|
+
- Czerwiec
|
73
|
+
- Lipiec
|
74
|
+
- Sierpień
|
75
|
+
- Wrzesień
|
76
|
+
- Październik
|
77
|
+
- Listopad
|
78
|
+
- Grudzień
|
79
|
+
|
80
|
+
date_helper_abbr_month_names:
|
81
|
+
- # Leave that line
|
82
|
+
- # Leave that line
|
83
|
+
- Sty
|
84
|
+
- Lut
|
85
|
+
- Mar
|
86
|
+
- Kwi
|
87
|
+
- Maj
|
88
|
+
- Cze
|
89
|
+
- Lip
|
90
|
+
- Sie
|
91
|
+
- Wrz
|
92
|
+
- Paź
|
93
|
+
- Lis
|
94
|
+
- Gru
|
95
|
+
|
96
|
+
date_helper_day_names:
|
97
|
+
- Niedziela
|
98
|
+
- Poniedziałek
|
99
|
+
- Wtorek
|
100
|
+
- Środa
|
101
|
+
- Czwartek
|
102
|
+
- Piątek
|
103
|
+
- Sobota
|
104
|
+
|
105
|
+
date_helper_abbr_day_names:
|
106
|
+
- Nie
|
107
|
+
- Pon
|
108
|
+
- Wto
|
109
|
+
- Śro
|
110
|
+
- Czw
|
111
|
+
- Pią
|
112
|
+
- Sob
|
113
|
+
|
114
|
+
countries_list:
|
115
|
+
- Afghanistan
|
116
|
+
- Albania
|
117
|
+
- Algeria
|
118
|
+
- American Samoa
|
119
|
+
- Andorra
|
120
|
+
- Angola
|
121
|
+
- Anguilla
|
122
|
+
- Antarctica
|
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
|