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,359 @@
|
|
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
|
+
# ActionController::Base.resources_path_names
|
16
|
+
resources_path_new: uusi
|
17
|
+
resources_path_edit: muokkaa
|
18
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
19
|
+
date_helper_less_than_x_seconds: alle %d sekuntia
|
20
|
+
date_helper_half_a_minute: puoli minuuttia
|
21
|
+
date_helper_less_than_a_minute: alle minuutti
|
22
|
+
date_helper_one_minute: 1 minuutti
|
23
|
+
date_helper_x_minutes: %d minuuttia
|
24
|
+
date_helper_one_hour: noin 1 tunti
|
25
|
+
date_helper_x_hours: noin %d tuntia
|
26
|
+
date_helper_one_day: 1 päivä
|
27
|
+
date_helper_x_days: %d päivää
|
28
|
+
date_helper_one_month: 1 kuukausi
|
29
|
+
date_helper_x_months: %d kuukautta
|
30
|
+
date_helper_one_year: 1 vuosi
|
31
|
+
date_helper_x_years: %d vuotta
|
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 %Bta, %Y"
|
40
|
+
|
41
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
42
|
+
default: "%Ana %d. %Bta %Y %H:%M:%S %z"
|
43
|
+
short: "%d %b %H:%M"
|
44
|
+
long: "%d. %Bta %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 ]
|
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: 'ja'
|
59
|
+
array_skip_last_comma: 'true'
|
60
|
+
|
61
|
+
# Active Record error messages:
|
62
|
+
active_record_helper_error_description: 'Seuraavien kenttien kanssa oli ongelmia:'
|
63
|
+
active_record_helper_header_message: pluralize{{error_count}, virhe, virhettä} esti tätä {failed_object} tallentumasta
|
64
|
+
|
65
|
+
date_helper_month_names:
|
66
|
+
- # Leave that line
|
67
|
+
- # Leave that line
|
68
|
+
- tammikuu
|
69
|
+
- helmikuu
|
70
|
+
- maaliskuu
|
71
|
+
- huhtikuu
|
72
|
+
- toukokuu
|
73
|
+
- kesäkuu
|
74
|
+
- heinäkuu
|
75
|
+
- elokuu
|
76
|
+
- syyskuu
|
77
|
+
- lokakuu
|
78
|
+
- marraskuu
|
79
|
+
- joulukuu
|
80
|
+
|
81
|
+
date_helper_abbr_month_names:
|
82
|
+
- # Leave that line
|
83
|
+
- # Leave that line
|
84
|
+
- tammi
|
85
|
+
- helmi
|
86
|
+
- maalis
|
87
|
+
- huhti
|
88
|
+
- touko
|
89
|
+
- kesä
|
90
|
+
- heinä
|
91
|
+
- elo
|
92
|
+
- syys
|
93
|
+
- loka
|
94
|
+
- marras
|
95
|
+
- joulu
|
96
|
+
|
97
|
+
date_helper_day_names:
|
98
|
+
- sunnuntai
|
99
|
+
- maanantai
|
100
|
+
- tiistai
|
101
|
+
- keskiviikko
|
102
|
+
- torstai
|
103
|
+
- perjantai
|
104
|
+
- lauantai
|
105
|
+
|
106
|
+
date_helper_abbr_day_names:
|
107
|
+
- su
|
108
|
+
- ma
|
109
|
+
- ti
|
110
|
+
- ke
|
111
|
+
- to
|
112
|
+
- pe
|
113
|
+
- la
|
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 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
|
+
- Suomi
|
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
|
@@ -0,0 +1,361 @@
|
|
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
|
+
# ActionController::Base.resources_path_names
|
18
|
+
resources_path_new: nouveau
|
19
|
+
resources_path_edit: modifier
|
20
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
21
|
+
date_helper_less_than_x_seconds: moins de %d secondes
|
22
|
+
date_helper_half_a_minute: une demi-minute
|
23
|
+
date_helper_less_than_a_minute: moins d'une minute
|
24
|
+
date_helper_one_minute: 1 minute
|
25
|
+
date_helper_x_minutes: %d minutes
|
26
|
+
date_helper_one_hour: environ 1 heure
|
27
|
+
date_helper_x_hours: environ %d heures
|
28
|
+
date_helper_one_day: 1 jour
|
29
|
+
date_helper_x_days: %d jours
|
30
|
+
date_helper_one_month: 1 mois
|
31
|
+
date_helper_x_months: %d mois
|
32
|
+
date_helper_one_year: 1 an
|
33
|
+
date_helper_x_years: %d ans
|
34
|
+
|
35
|
+
# DON'T TRANSLATE, just order
|
36
|
+
date_helper_order: [:day, :month, :year] #default Rails is US ordered: :order => [:year, :month, :day]
|
37
|
+
|
38
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
39
|
+
default: "%Y-%m-%d"
|
40
|
+
short: "%e %b"
|
41
|
+
long: "%e %B, %Y"
|
42
|
+
|
43
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
44
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
45
|
+
short: "%d %b, %H:%M"
|
46
|
+
long: "%d %B, %Y %H:%M"
|
47
|
+
|
48
|
+
# added at the end of date if your date system doesn't use a 24 hours system
|
49
|
+
date_helper_am: am
|
50
|
+
date_helper_pm: pm
|
51
|
+
|
52
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
53
|
+
number_helper_unit: "€"
|
54
|
+
number_helper_separator: "," #unit separator (between integer part and fraction part)
|
55
|
+
number_helper_delimiter: "" #delimiter between each group of thousands. Example: 1.234.567
|
56
|
+
number_helper_order: [number, unit] #order is at present unsupported in Rails
|
57
|
+
#to support for instance French format, the order is different: Unit comes last (ex. "1.234,00 €")
|
58
|
+
|
59
|
+
# use by +Array#to_sentence()+
|
60
|
+
array_connector: 'et'
|
61
|
+
array_skip_last_comma: 'false'
|
62
|
+
|
63
|
+
# Active Record error messages:
|
64
|
+
active_record_helper_error_description: 'il y a eu un problème avec les champs suivants:'
|
65
|
+
active_record_helper_header_message: pluralize{{error_count}, erreur} pendant l'enregistrement de '{failed_object}'
|
66
|
+
|
67
|
+
date_helper_month_names:
|
68
|
+
- # Leave that line
|
69
|
+
- # Leave that line
|
70
|
+
- Janvier
|
71
|
+
- Février
|
72
|
+
- Mars
|
73
|
+
- Avril
|
74
|
+
- Mai
|
75
|
+
- Juin
|
76
|
+
- Juillet
|
77
|
+
- Août
|
78
|
+
- Septembre
|
79
|
+
- Octobre
|
80
|
+
- Novembre
|
81
|
+
- Décembre
|
82
|
+
|
83
|
+
date_helper_abbr_month_names:
|
84
|
+
- # Leave that line
|
85
|
+
- # Leave that line
|
86
|
+
- Jan
|
87
|
+
- Fev
|
88
|
+
- Mar
|
89
|
+
- Avr
|
90
|
+
- Mai
|
91
|
+
- Jui
|
92
|
+
- Jul
|
93
|
+
- Aoû
|
94
|
+
- Sep
|
95
|
+
- Oct
|
96
|
+
- Nov
|
97
|
+
- Déc
|
98
|
+
|
99
|
+
date_helper_day_names:
|
100
|
+
- Dimanche
|
101
|
+
- Lundi
|
102
|
+
- Mardi
|
103
|
+
- Mercredi
|
104
|
+
- Jeudi
|
105
|
+
- Vendredi
|
106
|
+
- Samedi
|
107
|
+
|
108
|
+
date_helper_abbr_day_names:
|
109
|
+
- Dim
|
110
|
+
- Lun
|
111
|
+
- Mar
|
112
|
+
- Mer
|
113
|
+
- Jeu
|
114
|
+
- Ven
|
115
|
+
- Sam
|
116
|
+
|
117
|
+
countries_list:
|
118
|
+
- Afghanistan
|
119
|
+
- Albanie
|
120
|
+
- Algérie
|
121
|
+
- Samoa Américaine
|
122
|
+
- Andorre
|
123
|
+
- Angola
|
124
|
+
- Anguilla
|
125
|
+
- Antarctique
|
126
|
+
- Antigua And Barbuda
|
127
|
+
- Argentina
|
128
|
+
- Armenia
|
129
|
+
- Aruba
|
130
|
+
- Australia
|
131
|
+
- Austria
|
132
|
+
- Azerbaijan
|
133
|
+
- Bahamas
|
134
|
+
- Bahrain
|
135
|
+
- Bangladesh
|
136
|
+
- Barbados
|
137
|
+
- Belarus
|
138
|
+
- Belgium
|
139
|
+
- Belize
|
140
|
+
- Benin
|
141
|
+
- Bermuda
|
142
|
+
- Bhutan
|
143
|
+
- Bolivia
|
144
|
+
- Bosnia and Herzegowina
|
145
|
+
- Botswana
|
146
|
+
- Bouvet Island
|
147
|
+
- Brazil
|
148
|
+
- British Indian Ocean Territory
|
149
|
+
- Brunei Darussalam
|
150
|
+
- Bulgaria
|
151
|
+
- Burkina Faso
|
152
|
+
- Burma
|
153
|
+
- Burundi
|
154
|
+
- Cambodia
|
155
|
+
- Cameroon
|
156
|
+
- Canada
|
157
|
+
- Cape Verde
|
158
|
+
- Cayman Islands
|
159
|
+
- Central African Republic
|
160
|
+
- Chad
|
161
|
+
- Chile
|
162
|
+
- China
|
163
|
+
- Christmas Island
|
164
|
+
- Cocos (Keeling) Islands
|
165
|
+
- Colombia
|
166
|
+
- Comoros
|
167
|
+
- Congo
|
168
|
+
- Congo, the Democratic Republic of the
|
169
|
+
- Cook Islands
|
170
|
+
- Costa Rica
|
171
|
+
- Cote d'Ivoire
|
172
|
+
- Croatia
|
173
|
+
- Cuba
|
174
|
+
- Cyprus
|
175
|
+
- Czech Republic
|
176
|
+
- Denmark
|
177
|
+
- Djibouti
|
178
|
+
- Dominica
|
179
|
+
- Dominican Republic
|
180
|
+
- East Timor
|
181
|
+
- Ecuador
|
182
|
+
- Egypt
|
183
|
+
- El Salvador
|
184
|
+
- England
|
185
|
+
- Equatorial Guinea
|
186
|
+
- Eritrea
|
187
|
+
- Espana
|
188
|
+
- Estonia
|
189
|
+
- Ethiopia
|
190
|
+
- Falkland Islands
|
191
|
+
- Faroe Islands
|
192
|
+
- Fiji
|
193
|
+
- Finland
|
194
|
+
- France
|
195
|
+
- French Guiana
|
196
|
+
- French Polynesia
|
197
|
+
- French Southern Territories
|
198
|
+
- Gabon
|
199
|
+
- Gambia
|
200
|
+
- Georgia
|
201
|
+
- Germany
|
202
|
+
- Ghana
|
203
|
+
- Gibraltar
|
204
|
+
- Great Britain
|
205
|
+
- Greece
|
206
|
+
- Greenland
|
207
|
+
- Grenada
|
208
|
+
- Guadeloupe
|
209
|
+
- Guam
|
210
|
+
- Guatemala
|
211
|
+
- Guinea
|
212
|
+
- Guinea-Bissau
|
213
|
+
- Guyana
|
214
|
+
- Haiti
|
215
|
+
- Heard and Mc Donald Islands
|
216
|
+
- Honduras
|
217
|
+
- Hong Kong
|
218
|
+
- Hungary
|
219
|
+
- Iceland
|
220
|
+
- India
|
221
|
+
- Indonesia
|
222
|
+
- Ireland
|
223
|
+
- Israel
|
224
|
+
- Italy
|
225
|
+
- Iran
|
226
|
+
- Iraq
|
227
|
+
- Jamaica
|
228
|
+
- Japan
|
229
|
+
- Jordan
|
230
|
+
- Kazakhstan
|
231
|
+
- Kenya
|
232
|
+
- Kiribati
|
233
|
+
- Korea, Republic of
|
234
|
+
- Korea (South)
|
235
|
+
- Kuwait
|
236
|
+
- Kyrgyzstan
|
237
|
+
- Lao People's Democratic Republic
|
238
|
+
- Latvia
|
239
|
+
- Lebanon
|
240
|
+
- Lesotho
|
241
|
+
- Liberia
|
242
|
+
- Liechtenstein
|
243
|
+
- Lithuania
|
244
|
+
- Luxembourg
|
245
|
+
- Macau
|
246
|
+
- Macedonia
|
247
|
+
- Madagascar
|
248
|
+
- Malawi
|
249
|
+
- Malaysia
|
250
|
+
- Maldives
|
251
|
+
- Mali
|
252
|
+
- Malta
|
253
|
+
- Marshall Islands
|
254
|
+
- Martinique
|
255
|
+
- Mauritania
|
256
|
+
- Mauritius
|
257
|
+
- Mayotte
|
258
|
+
- Mexico
|
259
|
+
- Micronesia, Federated States of
|
260
|
+
- Moldova, Republic of
|
261
|
+
- Monaco
|
262
|
+
- Mongolia
|
263
|
+
- Montserrat
|
264
|
+
- Morocco
|
265
|
+
- Mozambique
|
266
|
+
- Myanmar
|
267
|
+
- Namibia
|
268
|
+
- Nauru
|
269
|
+
- Nepal
|
270
|
+
- Netherlands
|
271
|
+
- Netherlands Antilles
|
272
|
+
- New Caledonia
|
273
|
+
- New Zealand
|
274
|
+
- Nicaragua
|
275
|
+
- Niger
|
276
|
+
- Nigeria
|
277
|
+
- Niue
|
278
|
+
- Norfolk Island
|
279
|
+
- Northern Ireland
|
280
|
+
- Northern Mariana Islands
|
281
|
+
- Norway
|
282
|
+
- Oman
|
283
|
+
- Pakistan
|
284
|
+
- Palau
|
285
|
+
- Panama
|
286
|
+
- Papua New Guinea
|
287
|
+
- Paraguay
|
288
|
+
- Peru
|
289
|
+
- Philippines
|
290
|
+
- Pitcairn
|
291
|
+
- Poland
|
292
|
+
- Portugal
|
293
|
+
- Puerto Rico
|
294
|
+
- Qatar
|
295
|
+
- Reunion
|
296
|
+
- Romania
|
297
|
+
- Russia
|
298
|
+
- Rwanda
|
299
|
+
- Saint Kitts and Nevis
|
300
|
+
- Saint Lucia
|
301
|
+
- Saint Vincent and the Grenadines
|
302
|
+
- Samoa (Independent)
|
303
|
+
- San Marino
|
304
|
+
- Sao Tome and Principe
|
305
|
+
- Saudi Arabia
|
306
|
+
- Scotland
|
307
|
+
- Senegal
|
308
|
+
- Serbia and Montenegro
|
309
|
+
- Seychelles
|
310
|
+
- Sierra Leone
|
311
|
+
- Singapore
|
312
|
+
- Slovakia
|
313
|
+
- Slovenia
|
314
|
+
- Solomon Islands
|
315
|
+
- Somalia
|
316
|
+
- South Africa
|
317
|
+
- South Georgia and the South Sandwich Islands
|
318
|
+
- South Korea
|
319
|
+
- Spain
|
320
|
+
- Sri Lanka
|
321
|
+
- St. Helena
|
322
|
+
- St. Pierre and Miquelon
|
323
|
+
- Suriname
|
324
|
+
- Svalbard and Jan Mayen Islands
|
325
|
+
- Swaziland
|
326
|
+
- Sweden
|
327
|
+
- Switzerland
|
328
|
+
- Taiwan
|
329
|
+
- Tajikistan
|
330
|
+
- Tanzania
|
331
|
+
- Thailand
|
332
|
+
- Togo
|
333
|
+
- Tokelau
|
334
|
+
- Tonga
|
335
|
+
- Trinidad
|
336
|
+
- Trinidad and Tobago
|
337
|
+
- Tunisia
|
338
|
+
- Turkey
|
339
|
+
- Turkmenistan
|
340
|
+
- Turks and Caicos Islands
|
341
|
+
- Tuvalu
|
342
|
+
- Uganda
|
343
|
+
- Ukraine
|
344
|
+
- United Arab Emirates
|
345
|
+
- United Kingdom
|
346
|
+
- United States
|
347
|
+
- United States Minor Outlying Islands
|
348
|
+
- Uruguay
|
349
|
+
- Uzbekistan
|
350
|
+
- Vanuatu
|
351
|
+
- Vatican City State (Holy See)
|
352
|
+
- Venezuela
|
353
|
+
- Viet Nam
|
354
|
+
- Virgin Islands (British)
|
355
|
+
- Virgin Islands (U.S.)
|
356
|
+
- Wales
|
357
|
+
- Wallis and Futuna Islands
|
358
|
+
- Western Sahara
|
359
|
+
- Yemen
|
360
|
+
- Zambia
|
361
|
+
- Zimbabwe
|