iso-country-select 0.1.1

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/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'rails'
4
+
5
+ group :development do
6
+ gem "jeweler"
7
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,92 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ actionmailer (3.2.8)
5
+ actionpack (= 3.2.8)
6
+ mail (~> 2.4.4)
7
+ actionpack (3.2.8)
8
+ activemodel (= 3.2.8)
9
+ activesupport (= 3.2.8)
10
+ builder (~> 3.0.0)
11
+ erubis (~> 2.7.0)
12
+ journey (~> 1.0.4)
13
+ rack (~> 1.4.0)
14
+ rack-cache (~> 1.2)
15
+ rack-test (~> 0.6.1)
16
+ sprockets (~> 2.1.3)
17
+ activemodel (3.2.8)
18
+ activesupport (= 3.2.8)
19
+ builder (~> 3.0.0)
20
+ activerecord (3.2.8)
21
+ activemodel (= 3.2.8)
22
+ activesupport (= 3.2.8)
23
+ arel (~> 3.0.2)
24
+ tzinfo (~> 0.3.29)
25
+ activeresource (3.2.8)
26
+ activemodel (= 3.2.8)
27
+ activesupport (= 3.2.8)
28
+ activesupport (3.2.8)
29
+ i18n (~> 0.6)
30
+ multi_json (~> 1.0)
31
+ arel (3.0.2)
32
+ builder (3.0.0)
33
+ erubis (2.7.0)
34
+ git (1.2.5)
35
+ hike (1.2.1)
36
+ i18n (0.6.0)
37
+ jeweler (1.8.4)
38
+ bundler (~> 1.0)
39
+ git (>= 1.2.5)
40
+ rake
41
+ rdoc
42
+ journey (1.0.4)
43
+ json (1.7.5)
44
+ mail (2.4.4)
45
+ i18n (>= 0.4.0)
46
+ mime-types (~> 1.16)
47
+ treetop (~> 1.4.8)
48
+ mime-types (1.19)
49
+ multi_json (1.3.6)
50
+ polyglot (0.3.3)
51
+ rack (1.4.1)
52
+ rack-cache (1.2)
53
+ rack (>= 0.4)
54
+ rack-ssl (1.3.2)
55
+ rack
56
+ rack-test (0.6.1)
57
+ rack (>= 1.0)
58
+ rails (3.2.8)
59
+ actionmailer (= 3.2.8)
60
+ actionpack (= 3.2.8)
61
+ activerecord (= 3.2.8)
62
+ activeresource (= 3.2.8)
63
+ activesupport (= 3.2.8)
64
+ bundler (~> 1.0)
65
+ railties (= 3.2.8)
66
+ railties (3.2.8)
67
+ actionpack (= 3.2.8)
68
+ activesupport (= 3.2.8)
69
+ rack-ssl (~> 1.3.2)
70
+ rake (>= 0.8.7)
71
+ rdoc (~> 3.4)
72
+ thor (>= 0.14.6, < 2.0)
73
+ rake (0.9.2.2)
74
+ rdoc (3.12)
75
+ json (~> 1.4)
76
+ sprockets (2.1.3)
77
+ hike (~> 1.2)
78
+ rack (~> 1.0)
79
+ tilt (~> 1.1, != 1.3.0)
80
+ thor (0.16.0)
81
+ tilt (1.3.3)
82
+ treetop (1.4.10)
83
+ polyglot
84
+ polyglot (>= 0.3.1)
85
+ tzinfo (0.3.33)
86
+
87
+ PLATFORMS
88
+ ruby
89
+
90
+ DEPENDENCIES
91
+ jeweler
92
+ rails
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Iso-country-select
2
+
3
+ Localized country select helper for rails that stores ISO 3166-1 alpha-3 country codes instead of names
4
+
5
+ ---
6
+
7
+ Copyright (c) 2012 mcasimir
8
+
9
+ MIT License
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining
12
+ a copy of this software and associated documentation files (the
13
+ "Software"), to deal in the Software without restriction, including
14
+ without limitation the rights to use, copy, modify, merge, publish,
15
+ distribute, sublicense, and/or sell copies of the Software, and to
16
+ permit persons to whom the Software is furnished to do so, subject to
17
+ the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be
20
+ included in all copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "iso-country-select"
18
+ gem.homepage = "http://github.com/mcasimir/kaminari-bootstrap"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Localized country select helper for rails that stores ISO 3166-1 alpha-3 codes}
21
+ gem.description = %Q{Localized country select helper for rails that stores ISO 3166-1 alpha-3 country codes instead of names}
22
+ gem.email = "maurizio.cas@gmail.com"
23
+ gem.authors = ["mcasimir"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+
29
+ task :push do
30
+ message = ENV["message"] || "commit #{Time.now}"
31
+ `git add . && git commit -a -m '#{message}' && git push`
32
+ end
33
+
34
+ task "release:patch" do
35
+ Rake::Task["gemspec"].invoke
36
+ Rake::Task["version:bump:patch"]
37
+ Rake::Task["push"].invoke
38
+ Rake::Task["release"].invoke
39
+ end
40
+
41
+ task "release:minor" do
42
+ Rake::Task["gemspec"].invoke
43
+ Rake::Task["version:bump:minor"]
44
+ Rake::Task["push"].invoke
45
+ Rake::Task["release"].invoke
46
+ end
47
+
48
+ task "release:major" do
49
+ Rake::Task["gemspec"].invoke
50
+ Rake::Task["version:bump:major"]
51
+ Rake::Task["push"].invoke
52
+ Rake::Task["release"].invoke
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
@@ -0,0 +1,245 @@
1
+ da:
2
+ AFG: "Afghanistan"
3
+ ALB: "Albanien"
4
+ DZA: "Algeriet"
5
+ ASM: "Amerikansk Samoa"
6
+ USA: "USA"
7
+ AND: "Andorra"
8
+ AGO: "Angola"
9
+ AIA: "Anguilla"
10
+ ATA: "Antarktis Antarktika"
11
+ ATG: "Antigua og Barbuda"
12
+ ARG: "Argentina"
13
+ ARM: "Armenien"
14
+ ABW: "Aruba"
15
+ AUS: "Australien"
16
+ AZE: "Aserbajdsjan"
17
+ BHS: "Bahamas"
18
+ BHR: "Bahrain"
19
+ BGD: "Bangladesh"
20
+ BRB: "Barbados"
21
+ BEL: "Belgien"
22
+ BLZ: "Belize"
23
+ BEN: "Benin"
24
+ BMU: "Bermuda"
25
+ BTN: "Bhutan"
26
+ BOL: "Bolivia"
27
+ BIH: "Bosnien-Hercegovina"
28
+ BWA: "Botswana"
29
+ BVT: "Bouvetøen"
30
+ BRA: "Brasilien"
31
+ IOT: "British Indian Ocean Territory"
32
+ BRN: "Brunei"
33
+ BGR: "Bulgarien"
34
+ BFA: "Burkina Faso"
35
+ BDI: "Burundi"
36
+ CAN: "Canada"
37
+ CYM: "Caymanøerne"
38
+ CHL: "Chile"
39
+ CXR: "Juleøen"
40
+ COL: "Colombia"
41
+ COK: "Cookøerne"
42
+ CRI: "Costa Rica"
43
+ CUB: "Cuba"
44
+ CUW: "Curaçao"
45
+ DNK: "Danmark"
46
+ DJI: "Djibouti"
47
+ DMA: "Dominica"
48
+ DOM: "Dominikanske Republik"
49
+ ECU: "Ecuador"
50
+ EGY: "Egypten"
51
+ CIV: "Elfenbenskysten"
52
+ GNQ: "Ækvatorialguinea"
53
+ SLV: "El Salvador"
54
+ ERI: "Eritrea"
55
+ EST: "Estland"
56
+ ETH: "Etiopien"
57
+ FLK: "Falklandsøerne"
58
+ FJI: "Fiji"
59
+ PHL: "Filippinerne"
60
+ FIN: "Finland"
61
+ FRA: "Frankrig"
62
+ GUF: "Fransk Guiana"
63
+ PYF: "Fransk Polynesien"
64
+ ATF: "Franske Sydterritorier"
65
+ FRO: "Færøerne"
66
+ GAB: "Gabon"
67
+ GMB: "Gambia"
68
+ GEO: "Georgien"
69
+ GHA: "Ghana"
70
+ GIB: "Gibraltar"
71
+ GRD: "Grenada"
72
+ GRL: "Grønland"
73
+ GLP: "Guadeloupe"
74
+ GUM: "Guam"
75
+ GTM: "Guatemala"
76
+ GIN: "Guinea"
77
+ GNB: "Guinea-Bissau"
78
+ GUY: "Guyana"
79
+ HTI: "Haiti"
80
+ HMD: "Heard-øen og McDonald-øerne"
81
+ GRC: "Grækenland"
82
+ HND: "Honduras"
83
+ HKG: "Hongkong"
84
+ BLR: "Hviderusland"
85
+ IND: "Indien"
86
+ IDN: "Indonesien"
87
+ IRQ: "Irak"
88
+ IRN: "Iran"
89
+ IRL: "Irland"
90
+ ISL: "Island"
91
+ ISR: "Israel"
92
+ ITA: "Italien"
93
+ JAM: "Jamaica"
94
+ JPN: "Japan"
95
+ YEM: "Yemen"
96
+ VGB: "Britiske Jomfruøer"
97
+ VIR: "Amerikanske Jomfruøer"
98
+ JOR: "Jordan"
99
+ KHM: "Cambodja"
100
+ CMR: "Cameroun"
101
+ CPV: "Kap Verde"
102
+ BES: "Nederlandske Antiller"
103
+ KAZ: "Kasakhstan"
104
+ KEN: "Kenya"
105
+ CHN: "Kina"
106
+ KGZ: "Kirgisistan"
107
+ KIR: "Kiribati"
108
+ CCK: "Cocosøerne"
109
+ COM: "Comorerne"
110
+ COG: "Congo"
111
+ COD: "Demokratiske Republik Congo"
112
+ HRV: "Kroatien"
113
+ KWT: "Kuwait"
114
+ CYP: "Cypern"
115
+ LAO: "Laos"
116
+ LVA: "Letland"
117
+ LSO: "Lesotho"
118
+ LBN: "Libanon"
119
+ LBR: "Liberia"
120
+ LBY: "Libyen"
121
+ LIE: "Liechtenstein"
122
+ LTU: "Litauen"
123
+ LUX: "Luxembourg"
124
+ MAC: "Macao"
125
+ MDG: "Madagaskar"
126
+ MKD: "Makedonien"
127
+ MWI: "Malawi"
128
+ MYS: "Malaysia"
129
+ MDV: "Maldiverne"
130
+ MLI: "Mali"
131
+ MLT: "Malta"
132
+ MAR: "Marokko"
133
+ MHL: "Marshalløerne"
134
+ MTQ: "Martinique"
135
+ MRT: "Mauretanien"
136
+ MUS: "Mauritius"
137
+ MYT: "Mayotte"
138
+ MEX: "Mexico"
139
+ FSM: "Mikronesien"
140
+ MDA: "Moldova"
141
+ MCO: "Monaco"
142
+ MNG: "Mongoliet"
143
+ MNE: "Montenegro"
144
+ MSR: "Montserrat"
145
+ MOZ: "Mozambique"
146
+ MMR: "Burma"
147
+ NAM: "Namibia"
148
+ NRU: "Nauru"
149
+ NLD: "Holland"
150
+ NPL: "Nepal"
151
+ NZL: "New Zealand"
152
+ NIC: "Nicaragua"
153
+ NER: "Niger"
154
+ NGA: "Nigeria"
155
+ NIU: "Niue"
156
+ PRK: "Nordkorea"
157
+ MNP: "Nordmarianerne"
158
+ NFK: "Norfolk Island"
159
+ NOR: "Norge"
160
+ NCL: "Ny Kaledonien"
161
+ OMN: "Oman"
162
+ PAK: "Pakistan"
163
+ PLW: "Palau"
164
+ PSE: "Palæstina"
165
+ PAN: "Panama"
166
+ PNG: "Papua Ny Guinea"
167
+ PRY: "Paraguay"
168
+ PER: "Peru"
169
+ PCN: "Pitcairn"
170
+ POL: "Polen"
171
+ PRT: "Portugal"
172
+ PRI: "Puerto Rico"
173
+ QAT: "Qatar"
174
+ REU: "Réunion"
175
+ ROU: "Rumænien"
176
+ RUS: "Rusland"
177
+ RWA: "Rwanda"
178
+ SHN: "Sankt Helena"
179
+ KNA: "Saint Kitts og Nevis"
180
+ LCA: "Saint Lucia"
181
+ SPM: "Saint-Pierre og Miquelon"
182
+ VCT: "Saint Vincent og Grenadinerne"
183
+ SLB: "Salomonøerne"
184
+ WSM: "Samoa"
185
+ SMR: "San Marino"
186
+ STP: "Sao Tome og Principe"
187
+ SAU: "Saudi-Arabien"
188
+ SEN: "Senegal"
189
+ CAF: "Centralafrikanske Republik"
190
+ SRB: "Serbien"
191
+ SYC: "Seychellerne"
192
+ SLE: "Sierra Leone"
193
+ SGP: "Singapore"
194
+ SXM: "Sint Maarten"
195
+ SVK: "Slovakiet"
196
+ SVN: "Slovenien"
197
+ SOM: "Somalia"
198
+ ESP: "Spanien"
199
+ LKA: "Sri Lanka"
200
+ GBR: "Storbritannien"
201
+ SDN: "Sudan"
202
+ SUR: "Surinam"
203
+ SJM: "Norge Svalbard og Jan Mayen"
204
+ SWE: "Sverige"
205
+ CHE: "Schweiz"
206
+ SWZ: "Swaziland"
207
+ SYR: "Syrien"
208
+ ZAF: "Sydafrika"
209
+ SGS: "South Georgia og South Sandwich Islands"
210
+ KOR: "Sydkorea"
211
+ SSD: "Sydsudan"
212
+ TWN: "Republikken Kina Taiwan"
213
+ TJK: "Tadsjikistan"
214
+ TZA: "Tanzania"
215
+ THA: "Thailand"
216
+ TLS: "Østtimor"
217
+ TGO: "Togo"
218
+ TKL: "Tokelau"
219
+ TON: "Tonga"
220
+ TTO: "Trinidad og Tobago"
221
+ TCD: "Tchad"
222
+ CZE: "Tjekkiet"
223
+ TUN: "Tunesien"
224
+ TUR: "Tyrkiet"
225
+ TKM: "Turkmenistan"
226
+ TCA: "Turks- og Caicosøerne"
227
+ DEU: "Tyskland"
228
+ TUV: "Tuvalu"
229
+ UGA: "Uganda"
230
+ UKR: "Ukraine"
231
+ HUN: "Ungarn"
232
+ ARE: "Forenede Arabiske Emirater"
233
+ UMI: "USA's ydre småøer"
234
+ URY: "Uruguay"
235
+ UZB: "Usbekistan"
236
+ VUT: "Vanuatu"
237
+ VAT: "Vatikanstaten"
238
+ VEN: "Venezuela"
239
+ ESH: "Vestsahara"
240
+ VNM: "Vietnam"
241
+ WLF: "Wallis og Futuna"
242
+ ZMB: "Zambia"
243
+ ZWE: "Zimbabwe"
244
+ AUT: "Østrig"
245
+ ALA: "Ålandsøerne"
@@ -0,0 +1,250 @@
1
+ en:
2
+ AFG: "Afghanistan"
3
+ ALA: "Aland Islands"
4
+ ALB: "Albania"
5
+ DZA: "Algeria"
6
+ ASM: "American Samoa"
7
+ AND: "Andorra"
8
+ AGO: "Angola"
9
+ AIA: "Anguilla"
10
+ ATA: "Antarctica"
11
+ ATG: "Antigua and Barbuda"
12
+ ARG: "Argentina"
13
+ ARM: "Armenia"
14
+ ABW: "Aruba"
15
+ AUS: "Australia"
16
+ AUT: "Austria"
17
+ AZE: "Azerbaijan"
18
+ BHS: "Bahamas"
19
+ BHR: "Bahrain"
20
+ BGD: "Bangladesh"
21
+ BRB: "Barbados"
22
+ BLR: "Belarus"
23
+ BEL: "Belgium"
24
+ BLZ: "Belize"
25
+ BEN: "Benin"
26
+ BMU: "Bermuda"
27
+ BTN: "Bhutan"
28
+ BOL: "Bolivia, Plurinational State of"
29
+ BES: "Bonaire, Sint Eustatius and Saba"
30
+ BIH: "Bosnia and Herzegovina"
31
+ BWA: "Botswana"
32
+ BVT: "Bouvet Island"
33
+ BRA: "Brazil"
34
+ IOT: "British Indian Ocean Territory"
35
+ BRN: "Brunei Darussalam"
36
+ BGR: "Bulgaria"
37
+ BFA: "Burkina Faso"
38
+ BDI: "Burundi"
39
+ KHM: "Cambodia"
40
+ CMR: "Cameroon"
41
+ CAN: "Canada"
42
+ CPV: "Cape Verde"
43
+ CYM: "Cayman Islands"
44
+ CAF: "Central African Republic"
45
+ TCD: "Chad"
46
+ CHL: "Chile"
47
+ CHN: "China"
48
+ CXR: "Christmas Island"
49
+ CCK: "Cocos (Keeling) Islands"
50
+ COL: "Colombia"
51
+ COM: "Comoros"
52
+ COG: "Congo"
53
+ COD: "Congo, the Democratic Republic of the"
54
+ COK: "Cook Islands"
55
+ CRI: "Costa Rica"
56
+ CIV: "Cote d'Ivoire"
57
+ HRV: "Croatia"
58
+ CUB: "Cuba"
59
+ CUW: "Curaçao"
60
+ CYP: "Cyprus"
61
+ CZE: "Czech Republic"
62
+ DNK: "Denmark"
63
+ DJI: "Djibouti"
64
+ DMA: "Dominica"
65
+ DOM: "Dominican Republic"
66
+ ECU: "Ecuador"
67
+ EGY: "Egypt"
68
+ SLV: "El Salvador"
69
+ GNQ: "Equatorial Guinea"
70
+ ERI: "Eritrea"
71
+ EST: "Estonia"
72
+ ETH: "Ethiopia"
73
+ FLK: "Falkland Islands (Malvinas)"
74
+ FRO: "Faroe Islands"
75
+ FJI: "Fiji"
76
+ FIN: "Finland"
77
+ FRA: "France"
78
+ GUF: "French Guiana"
79
+ PYF: "French Polynesia"
80
+ ATF: "French Southern Territories"
81
+ GAB: "Gabon"
82
+ GMB: "Gambia"
83
+ GEO: "Georgia"
84
+ DEU: "Germany"
85
+ GHA: "Ghana"
86
+ GIB: "Gibraltar"
87
+ GRC: "Greece"
88
+ GRL: "Greenland"
89
+ GRD: "Grenada"
90
+ GLP: "Guadeloupe"
91
+ GUM: "Guam"
92
+ GTM: "Guatemala"
93
+ GGY: "Guernsey"
94
+ GIN: "Guinea"
95
+ GNB: "Guinea-Bissau"
96
+ GUY: "Guyana"
97
+ HTI: "Haiti"
98
+ HMD: "Heard Island and McDonald Islands"
99
+ VAT: "Holy See (Vatican City State)"
100
+ HND: "Honduras"
101
+ HKG: "Hong Kong"
102
+ HUN: "Hungary"
103
+ ISL: "Iceland"
104
+ IND: "India"
105
+ IDN: "Indonesia"
106
+ IRN: "Iran, Islamic Republic of"
107
+ IRQ: "Iraq"
108
+ IRL: "Ireland"
109
+ IMN: "Isle of Man"
110
+ ISR: "Israel"
111
+ ITA: "Italy"
112
+ JAM: "Jamaica"
113
+ JPN: "Japan"
114
+ JEY: "Jersey"
115
+ JOR: "Jordan"
116
+ KAZ: "Kazakhstan"
117
+ KEN: "Kenya"
118
+ KIR: "Kiribati"
119
+ PRK: "Korea, Democratic People's Republic of"
120
+ KOR: "Korea, Republic of"
121
+ KWT: "Kuwait"
122
+ KGZ: "Kyrgyzstan"
123
+ LAO: "Lao People's Democratic Republic"
124
+ LVA: "Latvia"
125
+ LBN: "Lebanon"
126
+ LSO: "Lesotho"
127
+ LBR: "Liberia"
128
+ LBY: "Libya"
129
+ LIE: "Liechtenstein"
130
+ LTU: "Lithuania"
131
+ LUX: "Luxembourg"
132
+ MAC: "Macao"
133
+ MKD: "Macedonia, the former Yugoslav Republic of"
134
+ MDG: "Madagascar"
135
+ MWI: "Malawi"
136
+ MYS: "Malaysia"
137
+ MDV: "Maldives"
138
+ MLI: "Mali"
139
+ MLT: "Malta"
140
+ MHL: "Marshall Islands"
141
+ MTQ: "Martinique"
142
+ MRT: "Mauritania"
143
+ MUS: "Mauritius"
144
+ MYT: "Mayotte"
145
+ MEX: "Mexico"
146
+ FSM: "Micronesia, Federated States of"
147
+ MDA: "Moldova, Republic of"
148
+ MCO: "Monaco"
149
+ MNG: "Mongolia"
150
+ MNE: "Montenegro"
151
+ MSR: "Montserrat"
152
+ MAR: "Morocco"
153
+ MOZ: "Mozambique"
154
+ MMR: "Myanmar"
155
+ NAM: "Namibia"
156
+ NRU: "Nauru"
157
+ NPL: "Nepal"
158
+ NLD: "Netherlands"
159
+ NCL: "New Caledonia"
160
+ NZL: "New Zealand"
161
+ NIC: "Nicaragua"
162
+ NER: "Niger"
163
+ NGA: "Nigeria"
164
+ NIU: "Niue"
165
+ NFK: "Norfolk Island"
166
+ MNP: "Northern Mariana Islands"
167
+ NOR: "Norway"
168
+ OMN: "Oman"
169
+ PAK: "Pakistan"
170
+ PLW: "Palau"
171
+ PSE: "Palestinian Territory, Occupied"
172
+ PAN: "Panama"
173
+ PNG: "Papua New Guinea"
174
+ PRY: "Paraguay"
175
+ PER: "Peru"
176
+ PHL: "Philippines"
177
+ PCN: "Pitcairn"
178
+ POL: "Poland"
179
+ PRT: "Portugal"
180
+ PRI: "Puerto Rico"
181
+ QAT: "Qatar"
182
+ REU: "Reunion"
183
+ ROU: "Romania"
184
+ RUS: "Russian Federation"
185
+ RWA: "Rwanda"
186
+ BLM: "Saint Barthélemy"
187
+ SHN: "Saint Helena, Ascension and Tristan da Cunha"
188
+ KNA: "Saint Kitts and Nevis"
189
+ LCA: "Saint Lucia"
190
+ MAF: "Saint Martin (French part)"
191
+ SPM: "Saint Pierre and Miquelon"
192
+ VCT: "Saint Vincent and the Grenadines"
193
+ WSM: "Samoa"
194
+ SMR: "San Marino"
195
+ STP: "Sao Tome and Principe"
196
+ SAU: "Saudi Arabia"
197
+ SEN: "Senegal"
198
+ SRB: "Serbia"
199
+ SYC: "Seychelles"
200
+ SLE: "Sierra Leone"
201
+ SGP: "Singapore"
202
+ SXM: "Sint Maarten (Dutch part)"
203
+ SVK: "Slovakia"
204
+ SVN: "Slovenia"
205
+ SLB: "Solomon Islands"
206
+ SOM: "Somalia"
207
+ ZAF: "South Africa"
208
+ SGS: "South Georgia and the South Sandwich Islands"
209
+ SSD: "South Sudan"
210
+ ESP: "Spain"
211
+ LKA: "Sri Lanka"
212
+ SDN: "Sudan"
213
+ SUR: "Suriname"
214
+ SJM: "Svalbard and Jan Mayen"
215
+ SWZ: "Swaziland"
216
+ SWE: "Sweden"
217
+ CHE: "Switzerland"
218
+ SYR: "Syrian Arab Republic"
219
+ TWN: "Taiwan, Province of China"
220
+ TJK: "Tajikistan"
221
+ TZA: "Tanzania, United Republic of"
222
+ THA: "Thailand"
223
+ TLS: "Timor-Leste"
224
+ TGO: "Togo"
225
+ TKL: "Tokelau"
226
+ TON: "Tonga"
227
+ TTO: "Trinidad and Tobago"
228
+ TUN: "Tunisia"
229
+ TUR: "Turkey"
230
+ TKM: "Turkmenistan"
231
+ TCA: "Turks and Caicos Islands"
232
+ TUV: "Tuvalu"
233
+ UGA: "Uganda"
234
+ UKR: "Ukraine"
235
+ ARE: "United Arab Emirates"
236
+ GBR: "United Kingdom"
237
+ USA: "United States"
238
+ UMI: "United States Minor Outlying Islands"
239
+ URY: "Uruguay"
240
+ UZB: "Uzbekistan"
241
+ VUT: "Vanuatu"
242
+ VEN: "Venezuela, Bolivarian Republic of"
243
+ VNM: "Viet Nam"
244
+ VGB: "Virgin Islands, British"
245
+ VIR: "Virgin Islands, U.S."
246
+ WLF: "Wallis and Futuna"
247
+ ESH: "Western Sahara"
248
+ YEM: "Yemen"
249
+ ZMB: "Zambia"
250
+ ZWE: "Zimbabwe"