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,364 @@
|
|
1
|
+
locale_name: 中国大陆 (China)
|
2
|
+
# ActiveRecord::Errors.default_error_messages
|
3
|
+
error_message_inclusion: 不在指定的名单上
|
4
|
+
error_message_exclusion: 已在指定的名单上
|
5
|
+
error_message_invalid: 是错误的资料
|
6
|
+
error_message_confirmation: 与指定值不同
|
7
|
+
error_message_accepted: 必须要选择接受指定的条款
|
8
|
+
error_message_empty: 不能不填
|
9
|
+
error_message_blank: 不能是空白
|
10
|
+
error_message_too_long: 太长 (最多 %d 个字元)
|
11
|
+
error_message_too_short: 太短 (最少 %d 个字元)
|
12
|
+
error_message_wrong_length: 长度不正确 (应该要 %d 个字元)
|
13
|
+
error_message_taken: 已经有人使用
|
14
|
+
error_message_not_a_number: 不是数字
|
15
|
+
|
16
|
+
# ActionController::Base.resources_path_names
|
17
|
+
# Chinese needs to be transliterated into latin
|
18
|
+
resources_path_new: xin-de
|
19
|
+
resources_path_edit: bian-ji
|
20
|
+
# translated using google translate,
|
21
|
+
# transliterated using http://rcalvi.com/cu_archive/Transliteration/demo.html
|
22
|
+
|
23
|
+
# used by ActionView::Helpers::ActiveRecordHelper.error_messages_for
|
24
|
+
active_record_helper_header_message: 输入资讯错误
|
25
|
+
active_record_helper_error_description: 请更正下列问题,
|
26
|
+
|
27
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
28
|
+
date_helper_less_than_x_seconds: 少於 %d 秒
|
29
|
+
date_helper_half_a_minute: 30 秒
|
30
|
+
date_helper_less_than_a_minute: 少於一分钟
|
31
|
+
date_helper_one_minute: 一分钟
|
32
|
+
date_helper_x_minutes: %d 分钟
|
33
|
+
date_helper_one_hour: 约 1 小时
|
34
|
+
date_helper_x_hours: 约 %d 小时
|
35
|
+
date_helper_one_day: 1 天
|
36
|
+
date_helper_x_days: %d 天
|
37
|
+
date_helper_one_month: 1 个月
|
38
|
+
date_helper_x_months: %d 个月
|
39
|
+
date_helper_one_year: 1 年
|
40
|
+
date_helper_x_years: %d 年
|
41
|
+
|
42
|
+
# DON'T TRANSLATE, just order
|
43
|
+
date_helper_order: [:day, :month, :year] #default Rails is US ordered: :order => [:year, :month, :day]
|
44
|
+
|
45
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
46
|
+
default: "%Y/%m/%d"
|
47
|
+
short: "%b %e"
|
48
|
+
long: "%b %e, %Y"
|
49
|
+
|
50
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
51
|
+
default: "%a, %Y %b %d %H:%M:%S %z"
|
52
|
+
short: "%b %d, %H:%M"
|
53
|
+
long: "%Y/%b/%d %H:%M"
|
54
|
+
|
55
|
+
# added at the end of date if your date system doesn't use a 24 hours system
|
56
|
+
date_helper_am: am
|
57
|
+
date_helper_pm: pm
|
58
|
+
|
59
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
60
|
+
number_helper_unit: "¥"
|
61
|
+
number_helper_separator: "." #unit separator (between integer part and fraction part)
|
62
|
+
number_helper_delimiter: "," #delimiter between each group of thousands. Example: 1.234.567
|
63
|
+
number_helper_order: [ unit, number ]
|
64
|
+
#to support for instance French format, the order is different: Unit comes last (ex. "1.234,00 €")
|
65
|
+
|
66
|
+
# use by +Array#to_sentence()+
|
67
|
+
array_connector: '和'
|
68
|
+
array_skip_last_comma: 'true'
|
69
|
+
|
70
|
+
date_helper_month_names:
|
71
|
+
- # Leave that line
|
72
|
+
- # Leave that line
|
73
|
+
- 一月
|
74
|
+
- 二月
|
75
|
+
- 三月
|
76
|
+
- 四月
|
77
|
+
- 五月
|
78
|
+
- 六月
|
79
|
+
- 七月
|
80
|
+
- 八月
|
81
|
+
- 九月
|
82
|
+
- 十月
|
83
|
+
- 十一月
|
84
|
+
- 十二月
|
85
|
+
|
86
|
+
date_helper_abbr_month_names:
|
87
|
+
- # Leave that line
|
88
|
+
- # Leave that line
|
89
|
+
- 1月
|
90
|
+
- 2月
|
91
|
+
- 3月
|
92
|
+
- 4月
|
93
|
+
- 5月
|
94
|
+
- 6月
|
95
|
+
- 7月
|
96
|
+
- 8月
|
97
|
+
- 9月
|
98
|
+
- 10月
|
99
|
+
- 11月
|
100
|
+
- 12月
|
101
|
+
|
102
|
+
date_helper_day_names:
|
103
|
+
- 星期天
|
104
|
+
- 星期一
|
105
|
+
- 星期二
|
106
|
+
- 星期三
|
107
|
+
- 星期四
|
108
|
+
- 星期五
|
109
|
+
- 星期六
|
110
|
+
|
111
|
+
date_helper_abbr_day_names:
|
112
|
+
- 周日
|
113
|
+
- 周一
|
114
|
+
- 周二
|
115
|
+
- 周三
|
116
|
+
- 周四
|
117
|
+
- 周五
|
118
|
+
- 周六
|
119
|
+
|
120
|
+
countries_list:
|
121
|
+
- Afghanistan
|
122
|
+
- Albania
|
123
|
+
- Algeria
|
124
|
+
- American Samoa
|
125
|
+
- Andorra
|
126
|
+
- Angola
|
127
|
+
- Anguilla
|
128
|
+
- Antarctica
|
129
|
+
- Antigua And Barbuda
|
130
|
+
- Argentina
|
131
|
+
- Armenia
|
132
|
+
- Aruba
|
133
|
+
- Australia
|
134
|
+
- Austria
|
135
|
+
- Azerbaijan
|
136
|
+
- Bahamas
|
137
|
+
- Bahrain
|
138
|
+
- Bangladesh
|
139
|
+
- Barbados
|
140
|
+
- Belarus
|
141
|
+
- Belgium
|
142
|
+
- Belize
|
143
|
+
- Benin
|
144
|
+
- Bermuda
|
145
|
+
- Bhutan
|
146
|
+
- Bolivia
|
147
|
+
- Bosnia and Herzegowina
|
148
|
+
- Botswana
|
149
|
+
- Bouvet Island
|
150
|
+
- Brazil
|
151
|
+
- British Indian Ocean Territory
|
152
|
+
- Brunei Darussalam
|
153
|
+
- Bulgaria
|
154
|
+
- Burkina Faso
|
155
|
+
- Burma
|
156
|
+
- Burundi
|
157
|
+
- Cambodia
|
158
|
+
- Cameroon
|
159
|
+
- Canada
|
160
|
+
- Cape Verde
|
161
|
+
- Cayman Islands
|
162
|
+
- Central African Republic
|
163
|
+
- Chad
|
164
|
+
- Chile
|
165
|
+
- China
|
166
|
+
- Christmas Island
|
167
|
+
- Cocos (Keeling) Islands
|
168
|
+
- Colombia
|
169
|
+
- Comoros
|
170
|
+
- Congo
|
171
|
+
- Congo, the Democratic Republic of the
|
172
|
+
- Cook Islands
|
173
|
+
- Costa Rica
|
174
|
+
- Cote d'Ivoire
|
175
|
+
- Croatia
|
176
|
+
- Cuba
|
177
|
+
- Cyprus
|
178
|
+
- Czech Republic
|
179
|
+
- Denmark
|
180
|
+
- Djibouti
|
181
|
+
- Dominica
|
182
|
+
- Dominican Republic
|
183
|
+
- East Timor
|
184
|
+
- Ecuador
|
185
|
+
- Egypt
|
186
|
+
- El Salvador
|
187
|
+
- England
|
188
|
+
- Equatorial Guinea
|
189
|
+
- Eritrea
|
190
|
+
- Espana
|
191
|
+
- Estonia
|
192
|
+
- Ethiopia
|
193
|
+
- Falkland Islands
|
194
|
+
- Faroe Islands
|
195
|
+
- Fiji
|
196
|
+
- Finland
|
197
|
+
- France
|
198
|
+
- French Guiana
|
199
|
+
- French Polynesia
|
200
|
+
- French Southern Territories
|
201
|
+
- Gabon
|
202
|
+
- Gambia
|
203
|
+
- Georgia
|
204
|
+
- Germany
|
205
|
+
- Ghana
|
206
|
+
- Gibraltar
|
207
|
+
- Great Britain
|
208
|
+
- Greece
|
209
|
+
- Greenland
|
210
|
+
- Grenada
|
211
|
+
- Guadeloupe
|
212
|
+
- Guam
|
213
|
+
- Guatemala
|
214
|
+
- Guinea
|
215
|
+
- Guinea-Bissau
|
216
|
+
- Guyana
|
217
|
+
- Haiti
|
218
|
+
- Heard and Mc Donald Islands
|
219
|
+
- Honduras
|
220
|
+
- Hong Kong
|
221
|
+
- Hungary
|
222
|
+
- Iceland
|
223
|
+
- India
|
224
|
+
- Indonesia
|
225
|
+
- Ireland
|
226
|
+
- Israel
|
227
|
+
- Italy
|
228
|
+
- Iran
|
229
|
+
- Iraq
|
230
|
+
- Jamaica
|
231
|
+
- Japan
|
232
|
+
- Jordan
|
233
|
+
- Kazakhstan
|
234
|
+
- Kenya
|
235
|
+
- Kiribati
|
236
|
+
- Korea, Republic of
|
237
|
+
- Korea (South)
|
238
|
+
- Kuwait
|
239
|
+
- Kyrgyzstan
|
240
|
+
- Lao People's Democratic Republic
|
241
|
+
- Latvia
|
242
|
+
- Lebanon
|
243
|
+
- Lesotho
|
244
|
+
- Liberia
|
245
|
+
- Liechtenstein
|
246
|
+
- Lithuania
|
247
|
+
- Luxembourg
|
248
|
+
- Macau
|
249
|
+
- Macedonia
|
250
|
+
- Madagascar
|
251
|
+
- Malawi
|
252
|
+
- Malaysia
|
253
|
+
- Maldives
|
254
|
+
- Mali
|
255
|
+
- Malta
|
256
|
+
- Marshall Islands
|
257
|
+
- Martinique
|
258
|
+
- Mauritania
|
259
|
+
- Mauritius
|
260
|
+
- Mayotte
|
261
|
+
- Mexico
|
262
|
+
- Micronesia, Federated States of
|
263
|
+
- Moldova, Republic of
|
264
|
+
- Monaco
|
265
|
+
- Mongolia
|
266
|
+
- Montserrat
|
267
|
+
- Morocco
|
268
|
+
- Mozambique
|
269
|
+
- Myanmar
|
270
|
+
- Namibia
|
271
|
+
- Nauru
|
272
|
+
- Nepal
|
273
|
+
- Netherlands
|
274
|
+
- Netherlands Antilles
|
275
|
+
- New Caledonia
|
276
|
+
- New Zealand
|
277
|
+
- Nicaragua
|
278
|
+
- Niger
|
279
|
+
- Nigeria
|
280
|
+
- Niue
|
281
|
+
- Norfolk Island
|
282
|
+
- Northern Ireland
|
283
|
+
- Northern Mariana Islands
|
284
|
+
- Norway
|
285
|
+
- Oman
|
286
|
+
- Pakistan
|
287
|
+
- Palau
|
288
|
+
- Panama
|
289
|
+
- Papua New Guinea
|
290
|
+
- Paraguay
|
291
|
+
- Peru
|
292
|
+
- Philippines
|
293
|
+
- Pitcairn
|
294
|
+
- Poland
|
295
|
+
- Portugal
|
296
|
+
- Puerto Rico
|
297
|
+
- Qatar
|
298
|
+
- Reunion
|
299
|
+
- Romania
|
300
|
+
- Russia
|
301
|
+
- Rwanda
|
302
|
+
- Saint Kitts and Nevis
|
303
|
+
- Saint Lucia
|
304
|
+
- Saint Vincent and the Grenadines
|
305
|
+
- Samoa (Independent)
|
306
|
+
- San Marino
|
307
|
+
- Sao Tome and Principe
|
308
|
+
- Saudi Arabia
|
309
|
+
- Scotland
|
310
|
+
- Senegal
|
311
|
+
- Serbia and Montenegro
|
312
|
+
- Seychelles
|
313
|
+
- Sierra Leone
|
314
|
+
- Singapore
|
315
|
+
- Slovakia
|
316
|
+
- Slovenia
|
317
|
+
- Solomon Islands
|
318
|
+
- Somalia
|
319
|
+
- South Africa
|
320
|
+
- South Georgia and the South Sandwich Islands
|
321
|
+
- South Korea
|
322
|
+
- Spain
|
323
|
+
- Sri Lanka
|
324
|
+
- St. Helena
|
325
|
+
- St. Pierre and Miquelon
|
326
|
+
- Suriname
|
327
|
+
- Svalbard and Jan Mayen Islands
|
328
|
+
- Swaziland
|
329
|
+
- Sweden
|
330
|
+
- Switzerland
|
331
|
+
- Taiwan
|
332
|
+
- Tajikistan
|
333
|
+
- Tanzania
|
334
|
+
- Thailand
|
335
|
+
- Togo
|
336
|
+
- Tokelau
|
337
|
+
- Tonga
|
338
|
+
- Trinidad
|
339
|
+
- Trinidad and Tobago
|
340
|
+
- Tunisia
|
341
|
+
- Turkey
|
342
|
+
- Turkmenistan
|
343
|
+
- Turks and Caicos Islands
|
344
|
+
- Tuvalu
|
345
|
+
- Uganda
|
346
|
+
- Ukraine
|
347
|
+
- United Arab Emirates
|
348
|
+
- United Kingdom
|
349
|
+
- United States
|
350
|
+
- United States Minor Outlying Islands
|
351
|
+
- Uruguay
|
352
|
+
- Uzbekistan
|
353
|
+
- Vanuatu
|
354
|
+
- Vatican City State (Holy See)
|
355
|
+
- Venezuela
|
356
|
+
- Viet Nam
|
357
|
+
- Virgin Islands (British)
|
358
|
+
- Virgin Islands (U.S.)
|
359
|
+
- Wales
|
360
|
+
- Wallis and Futuna Islands
|
361
|
+
- Western Sahara
|
362
|
+
- Yemen
|
363
|
+
- Zambia
|
364
|
+
- Zimbabwe
|
@@ -0,0 +1,364 @@
|
|
1
|
+
locale_name: 香港 (HongKong)
|
2
|
+
# ActiveRecord::Errors.default_error_messages
|
3
|
+
error_message_inclusion: 不在指定的名單上
|
4
|
+
error_message_exclusion: 已在指定的名單上
|
5
|
+
error_message_invalid: 是錯誤的資料
|
6
|
+
error_message_confirmation: 與指定值不同
|
7
|
+
error_message_accepted: 必須要選擇接受指定的條款
|
8
|
+
error_message_empty: 不能不填
|
9
|
+
error_message_blank: 不能是空白
|
10
|
+
error_message_too_long: 太長 (最多 %d 個字元)
|
11
|
+
error_message_too_short: 太短 (最少 %d 個字元)
|
12
|
+
error_message_wrong_length: 長度不正確 (應該要 %d 個字元)
|
13
|
+
error_message_taken: 已經有人使用
|
14
|
+
error_message_not_a_number: 不是數字
|
15
|
+
|
16
|
+
# ActionController::Base.resources_path_names
|
17
|
+
# Chinese needs to be transliterated into latin
|
18
|
+
resources_path_new: xin-de
|
19
|
+
resources_path_edit: bian-ji
|
20
|
+
# translated using google translate,
|
21
|
+
# transliterated using http://rcalvi.com/cu_archive/Transliteration/demo.html
|
22
|
+
|
23
|
+
# used by ActionView::Helpers::ActiveRecordHelper.error_messages_for
|
24
|
+
active_record_helper_header_message: 輸入資訊錯誤
|
25
|
+
active_record_helper_error_description: 請更正下列問題,
|
26
|
+
|
27
|
+
# used by ActionView::Helpers::DateHelper.distance_of_time_in_words
|
28
|
+
date_helper_less_than_x_seconds: 少於 %d 秒
|
29
|
+
date_helper_half_a_minute: 30 秒
|
30
|
+
date_helper_less_than_a_minute: 少於一分鐘
|
31
|
+
date_helper_one_minute: 一分鐘
|
32
|
+
date_helper_x_minutes: %d 分鐘
|
33
|
+
date_helper_one_hour: 約 1 小時
|
34
|
+
date_helper_x_hours: 約 %d 小時
|
35
|
+
date_helper_one_day: 1 天
|
36
|
+
date_helper_x_days: %d 天
|
37
|
+
date_helper_one_month: 1 個月
|
38
|
+
date_helper_x_months: %d 個月
|
39
|
+
date_helper_one_year: 1 年
|
40
|
+
date_helper_x_years: %d 年
|
41
|
+
|
42
|
+
# DON'T TRANSLATE, just order
|
43
|
+
date_helper_order: [:day, :month, :year] #default Rails is US ordered: :order => [:year, :month, :day]
|
44
|
+
|
45
|
+
date_helper_date_formats: # DON'T TRANSLATE, RE ORDER
|
46
|
+
default: "%Y/%m/%d"
|
47
|
+
short: "%b %e"
|
48
|
+
long: "%b %e, %Y"
|
49
|
+
|
50
|
+
date_helper_time_formats: # DON'T TRANSLATE, RE ORDER
|
51
|
+
default: "%a, %Y %b %d %H:%M:%S %z"
|
52
|
+
short: "%b %d, %H:%M"
|
53
|
+
long: "%Y/%b/%d %H:%M"
|
54
|
+
|
55
|
+
# added at the end of date if your date system doesn't use a 24 hours system
|
56
|
+
date_helper_am: am
|
57
|
+
date_helper_pm: pm
|
58
|
+
|
59
|
+
# used by ActionView::Helpers::NumberHelper.number_to_currency
|
60
|
+
number_helper_unit: "HK$"
|
61
|
+
number_helper_separator: "." #unit separator (between integer part and fraction part)
|
62
|
+
number_helper_delimiter: "," #delimiter between each group of thousands. Example: 1.234.567
|
63
|
+
number_helper_order: [ unit, number ]
|
64
|
+
#to support for instance French format, the order is different: Unit comes last (ex. "1.234,00 €")
|
65
|
+
|
66
|
+
# use by +Array#to_sentence()+
|
67
|
+
array_connector: '和'
|
68
|
+
array_skip_last_comma: 'true'
|
69
|
+
|
70
|
+
date_helper_month_names:
|
71
|
+
- # Leave that line
|
72
|
+
- # Leave that line
|
73
|
+
- 一月
|
74
|
+
- 二月
|
75
|
+
- 三月
|
76
|
+
- 四月
|
77
|
+
- 五月
|
78
|
+
- 六月
|
79
|
+
- 七月
|
80
|
+
- 八月
|
81
|
+
- 九月
|
82
|
+
- 十月
|
83
|
+
- 十一月
|
84
|
+
- 十二月
|
85
|
+
|
86
|
+
date_helper_abbr_month_names:
|
87
|
+
- # Leave that line
|
88
|
+
- # Leave that line
|
89
|
+
- 1月
|
90
|
+
- 2月
|
91
|
+
- 3月
|
92
|
+
- 4月
|
93
|
+
- 5月
|
94
|
+
- 6月
|
95
|
+
- 7月
|
96
|
+
- 8月
|
97
|
+
- 9月
|
98
|
+
- 10月
|
99
|
+
- 11月
|
100
|
+
- 12月
|
101
|
+
|
102
|
+
date_helper_day_names:
|
103
|
+
- 星期天
|
104
|
+
- 星期一
|
105
|
+
- 星期二
|
106
|
+
- 星期三
|
107
|
+
- 星期四
|
108
|
+
- 星期五
|
109
|
+
- 星期六
|
110
|
+
|
111
|
+
date_helper_abbr_day_names:
|
112
|
+
- 周日
|
113
|
+
- 周一
|
114
|
+
- 周二
|
115
|
+
- 周三
|
116
|
+
- 周四
|
117
|
+
- 周五
|
118
|
+
- 周六
|
119
|
+
|
120
|
+
countries_list:
|
121
|
+
- Afghanistan
|
122
|
+
- Albania
|
123
|
+
- Algeria
|
124
|
+
- American Samoa
|
125
|
+
- Andorra
|
126
|
+
- Angola
|
127
|
+
- Anguilla
|
128
|
+
- Antarctica
|
129
|
+
- Antigua And Barbuda
|
130
|
+
- Argentina
|
131
|
+
- Armenia
|
132
|
+
- Aruba
|
133
|
+
- Australia
|
134
|
+
- Austria
|
135
|
+
- Azerbaijan
|
136
|
+
- Bahamas
|
137
|
+
- Bahrain
|
138
|
+
- Bangladesh
|
139
|
+
- Barbados
|
140
|
+
- Belarus
|
141
|
+
- Belgium
|
142
|
+
- Belize
|
143
|
+
- Benin
|
144
|
+
- Bermuda
|
145
|
+
- Bhutan
|
146
|
+
- Bolivia
|
147
|
+
- Bosnia and Herzegowina
|
148
|
+
- Botswana
|
149
|
+
- Bouvet Island
|
150
|
+
- Brazil
|
151
|
+
- British Indian Ocean Territory
|
152
|
+
- Brunei Darussalam
|
153
|
+
- Bulgaria
|
154
|
+
- Burkina Faso
|
155
|
+
- Burma
|
156
|
+
- Burundi
|
157
|
+
- Cambodia
|
158
|
+
- Cameroon
|
159
|
+
- Canada
|
160
|
+
- Cape Verde
|
161
|
+
- Cayman Islands
|
162
|
+
- Central African Republic
|
163
|
+
- Chad
|
164
|
+
- Chile
|
165
|
+
- China
|
166
|
+
- Christmas Island
|
167
|
+
- Cocos (Keeling) Islands
|
168
|
+
- Colombia
|
169
|
+
- Comoros
|
170
|
+
- Congo
|
171
|
+
- Congo, the Democratic Republic of the
|
172
|
+
- Cook Islands
|
173
|
+
- Costa Rica
|
174
|
+
- Cote d'Ivoire
|
175
|
+
- Croatia
|
176
|
+
- Cuba
|
177
|
+
- Cyprus
|
178
|
+
- Czech Republic
|
179
|
+
- Denmark
|
180
|
+
- Djibouti
|
181
|
+
- Dominica
|
182
|
+
- Dominican Republic
|
183
|
+
- East Timor
|
184
|
+
- Ecuador
|
185
|
+
- Egypt
|
186
|
+
- El Salvador
|
187
|
+
- England
|
188
|
+
- Equatorial Guinea
|
189
|
+
- Eritrea
|
190
|
+
- Espana
|
191
|
+
- Estonia
|
192
|
+
- Ethiopia
|
193
|
+
- Falkland Islands
|
194
|
+
- Faroe Islands
|
195
|
+
- Fiji
|
196
|
+
- Finland
|
197
|
+
- France
|
198
|
+
- French Guiana
|
199
|
+
- French Polynesia
|
200
|
+
- French Southern Territories
|
201
|
+
- Gabon
|
202
|
+
- Gambia
|
203
|
+
- Georgia
|
204
|
+
- Germany
|
205
|
+
- Ghana
|
206
|
+
- Gibraltar
|
207
|
+
- Great Britain
|
208
|
+
- Greece
|
209
|
+
- Greenland
|
210
|
+
- Grenada
|
211
|
+
- Guadeloupe
|
212
|
+
- Guam
|
213
|
+
- Guatemala
|
214
|
+
- Guinea
|
215
|
+
- Guinea-Bissau
|
216
|
+
- Guyana
|
217
|
+
- Haiti
|
218
|
+
- Heard and Mc Donald Islands
|
219
|
+
- Honduras
|
220
|
+
- Hong Kong
|
221
|
+
- Hungary
|
222
|
+
- Iceland
|
223
|
+
- India
|
224
|
+
- Indonesia
|
225
|
+
- Ireland
|
226
|
+
- Israel
|
227
|
+
- Italy
|
228
|
+
- Iran
|
229
|
+
- Iraq
|
230
|
+
- Jamaica
|
231
|
+
- Japan
|
232
|
+
- Jordan
|
233
|
+
- Kazakhstan
|
234
|
+
- Kenya
|
235
|
+
- Kiribati
|
236
|
+
- Korea, Republic of
|
237
|
+
- Korea (South)
|
238
|
+
- Kuwait
|
239
|
+
- Kyrgyzstan
|
240
|
+
- Lao People's Democratic Republic
|
241
|
+
- Latvia
|
242
|
+
- Lebanon
|
243
|
+
- Lesotho
|
244
|
+
- Liberia
|
245
|
+
- Liechtenstein
|
246
|
+
- Lithuania
|
247
|
+
- Luxembourg
|
248
|
+
- Macau
|
249
|
+
- Macedonia
|
250
|
+
- Madagascar
|
251
|
+
- Malawi
|
252
|
+
- Malaysia
|
253
|
+
- Maldives
|
254
|
+
- Mali
|
255
|
+
- Malta
|
256
|
+
- Marshall Islands
|
257
|
+
- Martinique
|
258
|
+
- Mauritania
|
259
|
+
- Mauritius
|
260
|
+
- Mayotte
|
261
|
+
- Mexico
|
262
|
+
- Micronesia, Federated States of
|
263
|
+
- Moldova, Republic of
|
264
|
+
- Monaco
|
265
|
+
- Mongolia
|
266
|
+
- Montserrat
|
267
|
+
- Morocco
|
268
|
+
- Mozambique
|
269
|
+
- Myanmar
|
270
|
+
- Namibia
|
271
|
+
- Nauru
|
272
|
+
- Nepal
|
273
|
+
- Netherlands
|
274
|
+
- Netherlands Antilles
|
275
|
+
- New Caledonia
|
276
|
+
- New Zealand
|
277
|
+
- Nicaragua
|
278
|
+
- Niger
|
279
|
+
- Nigeria
|
280
|
+
- Niue
|
281
|
+
- Norfolk Island
|
282
|
+
- Northern Ireland
|
283
|
+
- Northern Mariana Islands
|
284
|
+
- Norway
|
285
|
+
- Oman
|
286
|
+
- Pakistan
|
287
|
+
- Palau
|
288
|
+
- Panama
|
289
|
+
- Papua New Guinea
|
290
|
+
- Paraguay
|
291
|
+
- Peru
|
292
|
+
- Philippines
|
293
|
+
- Pitcairn
|
294
|
+
- Poland
|
295
|
+
- Portugal
|
296
|
+
- Puerto Rico
|
297
|
+
- Qatar
|
298
|
+
- Reunion
|
299
|
+
- Romania
|
300
|
+
- Russia
|
301
|
+
- Rwanda
|
302
|
+
- Saint Kitts and Nevis
|
303
|
+
- Saint Lucia
|
304
|
+
- Saint Vincent and the Grenadines
|
305
|
+
- Samoa (Independent)
|
306
|
+
- San Marino
|
307
|
+
- Sao Tome and Principe
|
308
|
+
- Saudi Arabia
|
309
|
+
- Scotland
|
310
|
+
- Senegal
|
311
|
+
- Serbia and Montenegro
|
312
|
+
- Seychelles
|
313
|
+
- Sierra Leone
|
314
|
+
- Singapore
|
315
|
+
- Slovakia
|
316
|
+
- Slovenia
|
317
|
+
- Solomon Islands
|
318
|
+
- Somalia
|
319
|
+
- South Africa
|
320
|
+
- South Georgia and the South Sandwich Islands
|
321
|
+
- South Korea
|
322
|
+
- Spain
|
323
|
+
- Sri Lanka
|
324
|
+
- St. Helena
|
325
|
+
- St. Pierre and Miquelon
|
326
|
+
- Suriname
|
327
|
+
- Svalbard and Jan Mayen Islands
|
328
|
+
- Swaziland
|
329
|
+
- Sweden
|
330
|
+
- Switzerland
|
331
|
+
- Taiwan
|
332
|
+
- Tajikistan
|
333
|
+
- Tanzania
|
334
|
+
- Thailand
|
335
|
+
- Togo
|
336
|
+
- Tokelau
|
337
|
+
- Tonga
|
338
|
+
- Trinidad
|
339
|
+
- Trinidad and Tobago
|
340
|
+
- Tunisia
|
341
|
+
- Turkey
|
342
|
+
- Turkmenistan
|
343
|
+
- Turks and Caicos Islands
|
344
|
+
- Tuvalu
|
345
|
+
- Uganda
|
346
|
+
- Ukraine
|
347
|
+
- United Arab Emirates
|
348
|
+
- United Kingdom
|
349
|
+
- United States
|
350
|
+
- United States Minor Outlying Islands
|
351
|
+
- Uruguay
|
352
|
+
- Uzbekistan
|
353
|
+
- Vanuatu
|
354
|
+
- Vatican City State (Holy See)
|
355
|
+
- Venezuela
|
356
|
+
- Viet Nam
|
357
|
+
- Virgin Islands (British)
|
358
|
+
- Virgin Islands (U.S.)
|
359
|
+
- Wales
|
360
|
+
- Wallis and Futuna Islands
|
361
|
+
- Western Sahara
|
362
|
+
- Yemen
|
363
|
+
- Zambia
|
364
|
+
- Zimbabwe
|