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: suomi (Suomi)
|
2
|
+
# ActiveRecord::Errors.default_error_messages
|
3
|
+
error_message_inclusion: ei ole listassa
|
4
|
+
error_message_exclusion: on varattu
|
5
|
+
error_message_invalid: ei ole validi
|
6
|
+
error_message_confirmation: ei ole sama kuin varmistus
|
7
|
+
error_message_accepted: pitää hyväksyä
|
8
|
+
error_message_empty: ei voi olla tyhjä
|
9
|
+
error_message_blank: ei voi olla tyhjä
|
10
|
+
error_message_too_long: on liian pitkä (maksimi on %d merkkiä)
|
11
|
+
error_message_too_short: on liian lyhyt (minimi on %d merkkiä)
|
12
|
+
error_message_wrong_length: on väärän mittainen (pitäisi olla %d merkkiä)
|
13
|
+
error_message_taken: on jo käytössä
|
14
|
+
error_message_not_a_number: ei ole numero
|
15
|
+
|
16
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
17
|
+
date_helper_less_than_x_seconds: alle %d sekuntia
|
18
|
+
date_helper_half_a_minute: puoli minuuttia
|
19
|
+
date_helper_less_than_a_minute: alle minuutti
|
20
|
+
date_helper_one_minute: 1 minuutti
|
21
|
+
date_helper_x_minutes: %d minuuttia
|
22
|
+
date_helper_one_hour: noin 1 tunti
|
23
|
+
date_helper_x_hours: noin %d tuntia
|
24
|
+
date_helper_one_day: 1 päivä
|
25
|
+
date_helper_x_days: %d päivää
|
26
|
+
date_helper_one_month: 1 kuukausi
|
27
|
+
date_helper_x_months: %d kuukautta
|
28
|
+
date_helper_one_year: 1 vuosi
|
29
|
+
date_helper_x_years: %d vuotta
|
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 %Bta, %Y"
|
38
|
+
|
39
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
40
|
+
default: "%Ana %d. %Bta %Y %H:%M:%S %z"
|
41
|
+
short: "%d %b %H:%M"
|
42
|
+
long: "%d. %Bta %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: [ number, unit ]
|
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: 'ja'
|
57
|
+
array_skip_last_comma: 'true'
|
58
|
+
|
59
|
+
# Active Record error messages:
|
60
|
+
active_record_helper_error_description: 'Seuraavien kenttien kanssa oli ongelmia:'
|
61
|
+
active_record_helper_header_message: pluralize{{error_count}, virhe, virhettä} esti tätä {failed_object} tallentumasta
|
62
|
+
|
63
|
+
date_helper_month_names:
|
64
|
+
- # Leave that line
|
65
|
+
- # Leave that line
|
66
|
+
- tammikuu
|
67
|
+
- helmikuu
|
68
|
+
- maaliskuu
|
69
|
+
- huhtikuu
|
70
|
+
- toukokuu
|
71
|
+
- kesäkuu
|
72
|
+
- heinäkuu
|
73
|
+
- elokuu
|
74
|
+
- syyskuu
|
75
|
+
- lokakuu
|
76
|
+
- marraskuu
|
77
|
+
- joulukuu
|
78
|
+
|
79
|
+
date_helper_abbr_month_names:
|
80
|
+
- # Leave that line
|
81
|
+
- # Leave that line
|
82
|
+
- tammi
|
83
|
+
- helmi
|
84
|
+
- maalis
|
85
|
+
- huhti
|
86
|
+
- touko
|
87
|
+
- kesä
|
88
|
+
- heinä
|
89
|
+
- elo
|
90
|
+
- syys
|
91
|
+
- loka
|
92
|
+
- marras
|
93
|
+
- joulu
|
94
|
+
|
95
|
+
date_helper_day_names:
|
96
|
+
- sunnuntai
|
97
|
+
- maanantai
|
98
|
+
- tiistai
|
99
|
+
- keskiviikko
|
100
|
+
- torstai
|
101
|
+
- perjantai
|
102
|
+
- lauantai
|
103
|
+
|
104
|
+
date_helper_abbr_day_names:
|
105
|
+
- su
|
106
|
+
- ma
|
107
|
+
- ti
|
108
|
+
- ke
|
109
|
+
- to
|
110
|
+
- pe
|
111
|
+
- la
|
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 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
|
+
- Suomi
|
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
|
+
- Hungary
|
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
|
@@ -0,0 +1,359 @@
|
|
1
|
+
# Translation by Frédéric Cavazza ( www.fredcavazza.net ) Alexandre Bournier ( www.physalis-creation.com ) and Matt Aimonetti ( railsontherun.com )
|
2
|
+
|
3
|
+
locale_name: Français (France)
|
4
|
+
# ActiveRecord::Errors.default_error_messages
|
5
|
+
error_message_inclusion: n'est pas inclus dans la liste.
|
6
|
+
error_message_exclusion: est réservé.
|
7
|
+
error_message_invalid: est invalide.
|
8
|
+
error_message_confirmation: ne correspond pas à la confirmation.
|
9
|
+
error_message_accepted: doit être accepté.
|
10
|
+
error_message_empty: ne peut être vide.
|
11
|
+
error_message_blank: ne peut être vide.
|
12
|
+
error_message_too_long: est trop long (max. %d caractère(s)).
|
13
|
+
error_message_too_short: est trop court (min. %d caractère(s)).
|
14
|
+
error_message_wrong_length: a une longueur incorrecte (doit être de %d caractère(s)).
|
15
|
+
error_message_taken: est déjà utilisé.
|
16
|
+
error_message_not_a_number: n'est pas une valeur numérique.
|
17
|
+
|
18
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
19
|
+
date_helper_less_than_x_seconds: moins de %d secondes
|
20
|
+
date_helper_half_a_minute: une demi-minute
|
21
|
+
date_helper_less_than_a_minute: moins d'une minute
|
22
|
+
date_helper_one_minute: 1 minute
|
23
|
+
date_helper_x_minutes: %d minutes
|
24
|
+
date_helper_one_hour: environ 1 heure
|
25
|
+
date_helper_x_hours: environ %d heures
|
26
|
+
date_helper_one_day: 1 jour
|
27
|
+
date_helper_x_days: %d jours
|
28
|
+
date_helper_one_month: 1 mois
|
29
|
+
date_helper_x_months: %d mois
|
30
|
+
date_helper_one_year: 1 an
|
31
|
+
date_helper_x_years: %d ans
|
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: "%Y-%m-%d"
|
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: [number, unit] #order is at present unsupported in Rails
|
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: 'et'
|
59
|
+
array_skip_last_comma: 'false'
|
60
|
+
|
61
|
+
# Active Record error messages:
|
62
|
+
active_record_helper_error_description: 'il y a eu un problème avec les champs suivants:'
|
63
|
+
active_record_helper_header_message: pluralize{{error_count}, erreur} pendant l'enregistrement de '{failed_object}'
|
64
|
+
|
65
|
+
date_helper_month_names:
|
66
|
+
- # Leave that line
|
67
|
+
- # Leave that line
|
68
|
+
- Janvier
|
69
|
+
- Février
|
70
|
+
- Mars
|
71
|
+
- Avril
|
72
|
+
- Mai
|
73
|
+
- Juin
|
74
|
+
- Juillet
|
75
|
+
- Août
|
76
|
+
- Septembre
|
77
|
+
- Octobre
|
78
|
+
- Novembre
|
79
|
+
- Décembre
|
80
|
+
|
81
|
+
date_helper_abbr_month_names:
|
82
|
+
- # Leave that line
|
83
|
+
- # Leave that line
|
84
|
+
- Jan
|
85
|
+
- Fev
|
86
|
+
- Mar
|
87
|
+
- Avr
|
88
|
+
- Mai
|
89
|
+
- Jui
|
90
|
+
- Jul
|
91
|
+
- Aoû
|
92
|
+
- Sep
|
93
|
+
- Oct
|
94
|
+
- Nov
|
95
|
+
- Déc
|
96
|
+
|
97
|
+
date_helper_day_names:
|
98
|
+
- Dimanche
|
99
|
+
- Lundi
|
100
|
+
- Mardi
|
101
|
+
- Mercredi
|
102
|
+
- Jeudi
|
103
|
+
- Vendredi
|
104
|
+
- Samedi
|
105
|
+
|
106
|
+
date_helper_abbr_day_names:
|
107
|
+
- Dim
|
108
|
+
- Lun
|
109
|
+
- Mar
|
110
|
+
- Mer
|
111
|
+
- Jeu
|
112
|
+
- Ven
|
113
|
+
- Sam
|
114
|
+
|
115
|
+
countries_list:
|
116
|
+
- Afghanistan
|
117
|
+
- Albanie
|
118
|
+
- Algérie
|
119
|
+
- Samoa Américaine
|
120
|
+
- Andorre
|
121
|
+
- Angola
|
122
|
+
- Anguilla
|
123
|
+
- Antarctique
|
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 Herzegowina
|
143
|
+
- Botswana
|
144
|
+
- Bouvet Island
|
145
|
+
- Brazil
|
146
|
+
- British Indian Ocean Territory
|
147
|
+
- Brunei Darussalam
|
148
|
+
- Bulgaria
|
149
|
+
- Burkina Faso
|
150
|
+
- Burma
|
151
|
+
- Burundi
|
152
|
+
- Cambodia
|
153
|
+
- Cameroon
|
154
|
+
- Canada
|
155
|
+
- Cape Verde
|
156
|
+
- Cayman Islands
|
157
|
+
- Central African Republic
|
158
|
+
- Chad
|
159
|
+
- Chile
|
160
|
+
- China
|
161
|
+
- Christmas Island
|
162
|
+
- Cocos (Keeling) Islands
|
163
|
+
- Colombia
|
164
|
+
- Comoros
|
165
|
+
- Congo
|
166
|
+
- Congo, the Democratic Republic of the
|
167
|
+
- Cook Islands
|
168
|
+
- Costa Rica
|
169
|
+
- Cote d'Ivoire
|
170
|
+
- Croatia
|
171
|
+
- Cuba
|
172
|
+
- Cyprus
|
173
|
+
- Czech Republic
|
174
|
+
- Denmark
|
175
|
+
- Djibouti
|
176
|
+
- Dominica
|
177
|
+
- Dominican Republic
|
178
|
+
- East Timor
|
179
|
+
- Ecuador
|
180
|
+
- Egypt
|
181
|
+
- El Salvador
|
182
|
+
- England
|
183
|
+
- Equatorial Guinea
|
184
|
+
- Eritrea
|
185
|
+
- Espana
|
186
|
+
- Estonia
|
187
|
+
- Ethiopia
|
188
|
+
- Falkland Islands
|
189
|
+
- Faroe Islands
|
190
|
+
- Fiji
|
191
|
+
- Finland
|
192
|
+
- France
|
193
|
+
- French Guiana
|
194
|
+
- French Polynesia
|
195
|
+
- French Southern Territories
|
196
|
+
- Gabon
|
197
|
+
- Gambia
|
198
|
+
- Georgia
|
199
|
+
- Germany
|
200
|
+
- Ghana
|
201
|
+
- Gibraltar
|
202
|
+
- Great Britain
|
203
|
+
- Greece
|
204
|
+
- Greenland
|
205
|
+
- Grenada
|
206
|
+
- Guadeloupe
|
207
|
+
- Guam
|
208
|
+
- Guatemala
|
209
|
+
- Guinea
|
210
|
+
- Guinea-Bissau
|
211
|
+
- Guyana
|
212
|
+
- Haiti
|
213
|
+
- Heard and Mc Donald Islands
|
214
|
+
- Honduras
|
215
|
+
- Hong Kong
|
216
|
+
- Hungary
|
217
|
+
- Iceland
|
218
|
+
- India
|
219
|
+
- Indonesia
|
220
|
+
- Ireland
|
221
|
+
- Israel
|
222
|
+
- Italy
|
223
|
+
- Iran
|
224
|
+
- Iraq
|
225
|
+
- Jamaica
|
226
|
+
- Japan
|
227
|
+
- Jordan
|
228
|
+
- Kazakhstan
|
229
|
+
- Kenya
|
230
|
+
- Kiribati
|
231
|
+
- Korea, Republic of
|
232
|
+
- Korea (South)
|
233
|
+
- Kuwait
|
234
|
+
- Kyrgyzstan
|
235
|
+
- Lao People's Democratic Republic
|
236
|
+
- Latvia
|
237
|
+
- Lebanon
|
238
|
+
- Lesotho
|
239
|
+
- Liberia
|
240
|
+
- Liechtenstein
|
241
|
+
- Lithuania
|
242
|
+
- Luxembourg
|
243
|
+
- Macau
|
244
|
+
- Macedonia
|
245
|
+
- Madagascar
|
246
|
+
- Malawi
|
247
|
+
- Malaysia
|
248
|
+
- Maldives
|
249
|
+
- Mali
|
250
|
+
- Malta
|
251
|
+
- Marshall Islands
|
252
|
+
- Martinique
|
253
|
+
- Mauritania
|
254
|
+
- Mauritius
|
255
|
+
- Mayotte
|
256
|
+
- Mexico
|
257
|
+
- Micronesia, Federated States of
|
258
|
+
- Moldova, Republic of
|
259
|
+
- Monaco
|
260
|
+
- Mongolia
|
261
|
+
- Montserrat
|
262
|
+
- Morocco
|
263
|
+
- Mozambique
|
264
|
+
- Myanmar
|
265
|
+
- Namibia
|
266
|
+
- Nauru
|
267
|
+
- Nepal
|
268
|
+
- Netherlands
|
269
|
+
- Netherlands Antilles
|
270
|
+
- New Caledonia
|
271
|
+
- New Zealand
|
272
|
+
- Nicaragua
|
273
|
+
- Niger
|
274
|
+
- Nigeria
|
275
|
+
- Niue
|
276
|
+
- Norfolk Island
|
277
|
+
- Northern Ireland
|
278
|
+
- Northern Mariana Islands
|
279
|
+
- Norway
|
280
|
+
- Oman
|
281
|
+
- Pakistan
|
282
|
+
- Palau
|
283
|
+
- Panama
|
284
|
+
- Papua New Guinea
|
285
|
+
- Paraguay
|
286
|
+
- Peru
|
287
|
+
- Philippines
|
288
|
+
- Pitcairn
|
289
|
+
- Poland
|
290
|
+
- Portugal
|
291
|
+
- Puerto Rico
|
292
|
+
- Qatar
|
293
|
+
- Reunion
|
294
|
+
- Romania
|
295
|
+
- Russia
|
296
|
+
- Rwanda
|
297
|
+
- Saint Kitts and Nevis
|
298
|
+
- Saint Lucia
|
299
|
+
- Saint Vincent and the Grenadines
|
300
|
+
- Samoa (Independent)
|
301
|
+
- San Marino
|
302
|
+
- Sao Tome and Principe
|
303
|
+
- Saudi Arabia
|
304
|
+
- Scotland
|
305
|
+
- Senegal
|
306
|
+
- Serbia and Montenegro
|
307
|
+
- Seychelles
|
308
|
+
- Sierra Leone
|
309
|
+
- Singapore
|
310
|
+
- Slovakia
|
311
|
+
- Slovenia
|
312
|
+
- Solomon Islands
|
313
|
+
- Somalia
|
314
|
+
- South Africa
|
315
|
+
- South Georgia and the South Sandwich Islands
|
316
|
+
- South Korea
|
317
|
+
- Spain
|
318
|
+
- Sri Lanka
|
319
|
+
- St. Helena
|
320
|
+
- St. Pierre and Miquelon
|
321
|
+
- Suriname
|
322
|
+
- Svalbard and Jan Mayen Islands
|
323
|
+
- Swaziland
|
324
|
+
- Sweden
|
325
|
+
- Switzerland
|
326
|
+
- Taiwan
|
327
|
+
- Tajikistan
|
328
|
+
- Tanzania
|
329
|
+
- Thailand
|
330
|
+
- Togo
|
331
|
+
- Tokelau
|
332
|
+
- Tonga
|
333
|
+
- Trinidad
|
334
|
+
- Trinidad and Tobago
|
335
|
+
- Tunisia
|
336
|
+
- Turkey
|
337
|
+
- Turkmenistan
|
338
|
+
- Turks and Caicos Islands
|
339
|
+
- Tuvalu
|
340
|
+
- Uganda
|
341
|
+
- Ukraine
|
342
|
+
- United Arab Emirates
|
343
|
+
- United Kingdom
|
344
|
+
- United States
|
345
|
+
- United States Minor Outlying Islands
|
346
|
+
- Uruguay
|
347
|
+
- Uzbekistan
|
348
|
+
- Vanuatu
|
349
|
+
- Vatican City State (Holy See)
|
350
|
+
- Venezuela
|
351
|
+
- Viet Nam
|
352
|
+
- Virgin Islands (British)
|
353
|
+
- Virgin Islands (U.S.)
|
354
|
+
- Wales
|
355
|
+
- Wallis and Futuna Islands
|
356
|
+
- Western Sahara
|
357
|
+
- Yemen
|
358
|
+
- Zambia
|
359
|
+
- Zimbabwe
|