fullstack-admin 0.1.20 → 0.1.23

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,10 +20,10 @@
20
20
 
21
21
  <% Fullstack::Admin.resources.each do |rog| %>
22
22
  <% if rog.type == :group %>
23
- <%= nav_header t(rog.name, :scope => 'fullstack.admin.groups', :default => rog.name.to_s.humanize) %>
23
+ <%= nav_header t("fullstack.admin.groups.#{rog.name}", :default => rog.name.to_s.humanize) %>
24
24
 
25
25
  <% elsif rog.type == :resource %>
26
- <%= nav_item t(rog.name, :scope => 'fullstack.admin.resources', :default => rog.name.to_s.humanize), [:admin, rog.name] %>
26
+ <%= nav_item t("fullstack.admin.resources.#{rog.name}", :default => rog.name.to_s.humanize), [:admin, rog.name] %>
27
27
  <% end %>
28
28
  <% end %>
29
29
 
@@ -1,13 +1,25 @@
1
1
  <% association_class = f.object.class.reflect_on_association(association).klass %>
2
- <%= f.inputs t(association, :scope => 'activerecord.models', :default => association.to_s.humanize), :class => "associated-resources" do %>
2
+ <% resource_name = f.object.class.name.demodulize.underscore %>
3
+ <%= f.inputs t(association, :scope => 'fullstack.admin.resources', :default => association.to_s.humanize), :class => "associated-resources" do %>
3
4
 
4
- <table class="table table-bordered table-striped index-table associated-resources-index">
5
- <tr><th><%= labelize_attribute_name(title_column(association_class)) %></th><th style="width:30%;"><%= t('fullstack.admin.actions', :default => "Actions") %></th></tr>
6
- <% i = 0 %>
7
- <%= f.admin_fields_for association do |f| %>
8
- <%= render :partial => "nested_form", :locals => {:index => i, :f => f, :resource_name => resource_name, :association => association} %>
9
- <% i += 1 %>
10
- <% end %>
5
+ <table class="table table-bordered table-striped index-table <%= 'positionable' if positionable?(association_class) %>" >
6
+ <thead>
7
+ <tr>
8
+ <% if positionable?(association_class) %>
9
+ <th style="width:20px"><%= tag :i, :class => "icon icon-th-list", :"data-toggle" => "tooltip", :title => t('fullstack.admin.drag_to_sort_items', :default => "Drag to sort items") %></th>
10
+ <% end %>
11
+ <th><%= labelize_attribute_name(title_column(association_class)) %></th><th style="width:30%;"><%= t('fullstack.admin.actions', :default => "Actions") %></th></tr>
12
+ </thead>
13
+ <tbody class="associated-resources-index <%= 'sortable' if positionable?(association_class) %>">
14
+
15
+ <% i = 0 %>
16
+ <%= f.admin_fields_for association do |f| %>
17
+ <%= render :partial => "nested_form", :locals => {:index => i, :f => f, :resource_name => resource_name, :association => association} %>
18
+ <% i += 1 %>
19
+ <% end %>
20
+
21
+ </tbody>
22
+
11
23
  </table>
12
24
 
13
25
  <script type="text/html" charset="utf-8" class="resource-fields-template">
@@ -1,13 +1,10 @@
1
1
  <%= admin_form_for [:"admin", current_resource], :html => {:multipart => true} do |f| -%>
2
2
 
3
3
  <%= f.errors %>
4
-
5
- <%= f.inputs do %>
6
4
  <%= f.resource_inputs %>
7
- <% end -%>
8
-
5
+
9
6
  <%= f.actions do %>
10
- <%= f.resource_submit %>
7
+ <%= f.resource_submit %>
11
8
  <% end %>
12
9
 
13
10
  <% end -%>
@@ -3,16 +3,28 @@
3
3
  <% if thead -%>
4
4
  <th><%= sort_link title_column_or_id %></th>
5
5
 
6
+ <% if title_column_or_id == "id" %>
7
+ <% if meth = name_method_for(current_resource_class) %>
8
+ <th><%= t("helpers.label.#{meth}") %></th>
9
+ <% end %>
10
+ <% end %>
11
+
6
12
  <% if has_timestamps?(current_resource_class) %>
7
13
  <th><%= sort_link :created_at %></th>
8
14
  <% end %>
9
-
10
15
  <th><%= t('fullstack.admin.actions', :default => "Actions") %></th>
11
16
  <% end -%>
12
17
 
13
18
  <% if tbody -%>
14
19
  <td><%= link_to (content.send(title_column_or_id)), [:edit, :admin, content] %></td>
15
20
 
21
+ <% if title_column_or_id == "id" %>
22
+ <% if (name = name_for(content)).present? %>
23
+ <td><%= link_to name, [:edit, :admin, content] %></td>
24
+ <% end %>
25
+ <% end %>
26
+
27
+
16
28
  <% if has_timestamps?(current_resource_class) %>
17
29
  <td><%= l content.created_at.to_date, :format => :long %></td>
18
30
  <% end %>
@@ -1,7 +1,15 @@
1
1
  <% title_column_or_id = title_column(f.object.class) || "id" %>
2
- <% resource_title = f.object.send(title_column_or_id) %>
2
+ <% resource_title = f.object.send(title_column_or_id) %>
3
3
 
4
- <tr <%= 'data-new-record' if f.object.new_record? %> class="associated-resource" data-label-input="menu_links_attributes_<%= index %>_<%= title_column_or_id %>">
4
+ <tr <%= 'data-new-record' if f.object.new_record? %> class="associated-resource" data-label-input="<%= resource_name %>_<%= association %>_attributes_<%= index %>_<%= title_column_or_id %>">
5
+
6
+ <% if positionable?(f.object) %>
7
+ <td>
8
+ <%= image_tag "drag-handle.png", :class => "handle" %>
9
+ </td>
10
+ <% end %>
11
+
12
+
5
13
  <td>
6
14
  <div class="fade-if-deleted">
7
15
  <% if f.object.persisted? %>
@@ -30,6 +38,9 @@
30
38
  <div class="modal-body">
31
39
  <%= f.resource_inputs %>
32
40
  <%= f.hidden_field(:_destroy, :class => "destroy-associated-resource") %>
41
+ <% if positionable?(f.object) %>
42
+ <%= f.hidden_field(:position, :class => "associated-resource-position") %>
43
+ <% end %>
33
44
  </div>
34
45
  <div class="modal-footer">
35
46
  <a href="#" class="btn" data-dismiss="modal"><%= t('fullstack.admin.ok', :default => "Ok") %></a>
@@ -38,7 +49,7 @@
38
49
 
39
50
  <span class="hide-if-deleted">
40
51
  <% if f.object.errors.any? %>
41
- <span data-toggle="popover" title="Your association contains some errors" data-content='<%= h("#{f.errors}") %>' ><%= icon :"warning-sign" %></span>
52
+ <span data-toggle="popover" title="<%= t('fullstack.admin.this_record_contains_some_errors', :default => "This record contains some errors") %>" data-content='<%= h("#{f.errors(:wrap => false)}") %>' ><%= icon :"warning-sign" %></span>
42
53
  <% end %>
43
54
 
44
55
  <% if subject.can_edit?(f.object) %>
@@ -1,7 +1,7 @@
1
1
  <% if content_for? :title -%>
2
2
  <div class="page-header"><h1><%= yield :title %></h1></div>
3
3
  <% else -%>
4
- <div class="page-header"><h1><%= t(collection_name, :scope => "activerecord.models") %></h1></div>
4
+ <div class="page-header"><h1><%= t(collection_name, :scope => "fullstack.admin.resources") %></h1></div>
5
5
  <% end -%>
6
6
 
7
7
  <% if partial?('collection') %>
@@ -1,7 +1,7 @@
1
1
  <% if content_for? :title -%>
2
2
  <div class="page-header"><h1><%= yield :title %></h1></div>
3
3
  <% else -%>
4
- <div class="page-header"><h1><%= t('fullstack.admin.new', :default => "New") %> <%= t(singular_name, :scope => "activerecord.models") %></h1></div>
4
+ <div class="page-header"><h1><%= t('fullstack.admin.new', :default => "New") %> <%= t(singular_name, :scope => "fullstack.admin.resources", :default => singular_name.humanize) %></h1></div>
5
5
  <% end -%>
6
6
 
7
7
  <%= render :partial => 'form' %>
@@ -17,6 +17,8 @@ en:
17
17
  last_updated: "Last updated"
18
18
  ago: "ago"
19
19
  ok: "Ok"
20
+ this_record_contains_some_errors: "This record contains some errors"
21
+ drag_to_sort_items: "Drag to sort items"
20
22
 
21
23
  form:
22
24
  correct_these_errors_and_retry: "Correct these errors and retry"
@@ -0,0 +1,7 @@
1
+ it:
2
+ fullstack:
3
+ admin:
4
+ groups:
5
+ website: "Sito Web"
6
+ contents: "Contenuti"
7
+ users: "Utenti"
@@ -0,0 +1,246 @@
1
+ da:
2
+ iso3166:
3
+ AFG: "Afghanistan"
4
+ ALB: "Albanien"
5
+ DZA: "Algeriet"
6
+ ASM: "Amerikansk Samoa"
7
+ USA: "USA"
8
+ AND: "Andorra"
9
+ AGO: "Angola"
10
+ AIA: "Anguilla"
11
+ ATA: "Antarktis Antarktika"
12
+ ATG: "Antigua og Barbuda"
13
+ ARG: "Argentina"
14
+ ARM: "Armenien"
15
+ ABW: "Aruba"
16
+ AUS: "Australien"
17
+ AZE: "Aserbajdsjan"
18
+ BHS: "Bahamas"
19
+ BHR: "Bahrain"
20
+ BGD: "Bangladesh"
21
+ BRB: "Barbados"
22
+ BEL: "Belgien"
23
+ BLZ: "Belize"
24
+ BEN: "Benin"
25
+ BMU: "Bermuda"
26
+ BTN: "Bhutan"
27
+ BOL: "Bolivia"
28
+ BIH: "Bosnien-Hercegovina"
29
+ BWA: "Botswana"
30
+ BVT: "Bouvetøen"
31
+ BRA: "Brasilien"
32
+ IOT: "British Indian Ocean Territory"
33
+ BRN: "Brunei"
34
+ BGR: "Bulgarien"
35
+ BFA: "Burkina Faso"
36
+ BDI: "Burundi"
37
+ CAN: "Canada"
38
+ CYM: "Caymanøerne"
39
+ CHL: "Chile"
40
+ CXR: "Juleøen"
41
+ COL: "Colombia"
42
+ COK: "Cookøerne"
43
+ CRI: "Costa Rica"
44
+ CUB: "Cuba"
45
+ CUW: "Curaçao"
46
+ DNK: "Danmark"
47
+ DJI: "Djibouti"
48
+ DMA: "Dominica"
49
+ DOM: "Dominikanske Republik"
50
+ ECU: "Ecuador"
51
+ EGY: "Egypten"
52
+ CIV: "Elfenbenskysten"
53
+ GNQ: "Ækvatorialguinea"
54
+ SLV: "El Salvador"
55
+ ERI: "Eritrea"
56
+ EST: "Estland"
57
+ ETH: "Etiopien"
58
+ FLK: "Falklandsøerne"
59
+ FJI: "Fiji"
60
+ PHL: "Filippinerne"
61
+ FIN: "Finland"
62
+ FRA: "Frankrig"
63
+ GUF: "Fransk Guiana"
64
+ PYF: "Fransk Polynesien"
65
+ ATF: "Franske Sydterritorier"
66
+ FRO: "Færøerne"
67
+ GAB: "Gabon"
68
+ GMB: "Gambia"
69
+ GEO: "Georgien"
70
+ GHA: "Ghana"
71
+ GIB: "Gibraltar"
72
+ GRD: "Grenada"
73
+ GRL: "Grønland"
74
+ GLP: "Guadeloupe"
75
+ GUM: "Guam"
76
+ GTM: "Guatemala"
77
+ GIN: "Guinea"
78
+ GNB: "Guinea-Bissau"
79
+ GUY: "Guyana"
80
+ HTI: "Haiti"
81
+ HMD: "Heard-øen og McDonald-øerne"
82
+ GRC: "Grækenland"
83
+ HND: "Honduras"
84
+ HKG: "Hongkong"
85
+ BLR: "Hviderusland"
86
+ IND: "Indien"
87
+ IDN: "Indonesien"
88
+ IRQ: "Irak"
89
+ IRN: "Iran"
90
+ IRL: "Irland"
91
+ ISL: "Island"
92
+ ISR: "Israel"
93
+ ITA: "Italien"
94
+ JAM: "Jamaica"
95
+ JPN: "Japan"
96
+ YEM: "Yemen"
97
+ VGB: "Britiske Jomfruøer"
98
+ VIR: "Amerikanske Jomfruøer"
99
+ JOR: "Jordan"
100
+ KHM: "Cambodja"
101
+ CMR: "Cameroun"
102
+ CPV: "Kap Verde"
103
+ BES: "Nederlandske Antiller"
104
+ KAZ: "Kasakhstan"
105
+ KEN: "Kenya"
106
+ CHN: "Kina"
107
+ KGZ: "Kirgisistan"
108
+ KIR: "Kiribati"
109
+ CCK: "Cocosøerne"
110
+ COM: "Comorerne"
111
+ COG: "Congo"
112
+ COD: "Demokratiske Republik Congo"
113
+ HRV: "Kroatien"
114
+ KWT: "Kuwait"
115
+ CYP: "Cypern"
116
+ LAO: "Laos"
117
+ LVA: "Letland"
118
+ LSO: "Lesotho"
119
+ LBN: "Libanon"
120
+ LBR: "Liberia"
121
+ LBY: "Libyen"
122
+ LIE: "Liechtenstein"
123
+ LTU: "Litauen"
124
+ LUX: "Luxembourg"
125
+ MAC: "Macao"
126
+ MDG: "Madagaskar"
127
+ MKD: "Makedonien"
128
+ MWI: "Malawi"
129
+ MYS: "Malaysia"
130
+ MDV: "Maldiverne"
131
+ MLI: "Mali"
132
+ MLT: "Malta"
133
+ MAR: "Marokko"
134
+ MHL: "Marshalløerne"
135
+ MTQ: "Martinique"
136
+ MRT: "Mauretanien"
137
+ MUS: "Mauritius"
138
+ MYT: "Mayotte"
139
+ MEX: "Mexico"
140
+ FSM: "Mikronesien"
141
+ MDA: "Moldova"
142
+ MCO: "Monaco"
143
+ MNG: "Mongoliet"
144
+ MNE: "Montenegro"
145
+ MSR: "Montserrat"
146
+ MOZ: "Mozambique"
147
+ MMR: "Burma"
148
+ NAM: "Namibia"
149
+ NRU: "Nauru"
150
+ NLD: "Holland"
151
+ NPL: "Nepal"
152
+ NZL: "New Zealand"
153
+ NIC: "Nicaragua"
154
+ NER: "Niger"
155
+ NGA: "Nigeria"
156
+ NIU: "Niue"
157
+ PRK: "Nordkorea"
158
+ MNP: "Nordmarianerne"
159
+ NFK: "Norfolk Island"
160
+ NOR: "Norge"
161
+ NCL: "Ny Kaledonien"
162
+ OMN: "Oman"
163
+ PAK: "Pakistan"
164
+ PLW: "Palau"
165
+ PSE: "Palæstina"
166
+ PAN: "Panama"
167
+ PNG: "Papua Ny Guinea"
168
+ PRY: "Paraguay"
169
+ PER: "Peru"
170
+ PCN: "Pitcairn"
171
+ POL: "Polen"
172
+ PRT: "Portugal"
173
+ PRI: "Puerto Rico"
174
+ QAT: "Qatar"
175
+ REU: "Réunion"
176
+ ROU: "Rumænien"
177
+ RUS: "Rusland"
178
+ RWA: "Rwanda"
179
+ SHN: "Sankt Helena"
180
+ KNA: "Saint Kitts og Nevis"
181
+ LCA: "Saint Lucia"
182
+ SPM: "Saint-Pierre og Miquelon"
183
+ VCT: "Saint Vincent og Grenadinerne"
184
+ SLB: "Salomonøerne"
185
+ WSM: "Samoa"
186
+ SMR: "San Marino"
187
+ STP: "Sao Tome og Principe"
188
+ SAU: "Saudi-Arabien"
189
+ SEN: "Senegal"
190
+ CAF: "Centralafrikanske Republik"
191
+ SRB: "Serbien"
192
+ SYC: "Seychellerne"
193
+ SLE: "Sierra Leone"
194
+ SGP: "Singapore"
195
+ SXM: "Sint Maarten"
196
+ SVK: "Slovakiet"
197
+ SVN: "Slovenien"
198
+ SOM: "Somalia"
199
+ ESP: "Spanien"
200
+ LKA: "Sri Lanka"
201
+ GBR: "Storbritannien"
202
+ SDN: "Sudan"
203
+ SUR: "Surinam"
204
+ SJM: "Norge Svalbard og Jan Mayen"
205
+ SWE: "Sverige"
206
+ CHE: "Schweiz"
207
+ SWZ: "Swaziland"
208
+ SYR: "Syrien"
209
+ ZAF: "Sydafrika"
210
+ SGS: "South Georgia og South Sandwich Islands"
211
+ KOR: "Sydkorea"
212
+ SSD: "Sydsudan"
213
+ TWN: "Republikken Kina Taiwan"
214
+ TJK: "Tadsjikistan"
215
+ TZA: "Tanzania"
216
+ THA: "Thailand"
217
+ TLS: "Østtimor"
218
+ TGO: "Togo"
219
+ TKL: "Tokelau"
220
+ TON: "Tonga"
221
+ TTO: "Trinidad og Tobago"
222
+ TCD: "Tchad"
223
+ CZE: "Tjekkiet"
224
+ TUN: "Tunesien"
225
+ TUR: "Tyrkiet"
226
+ TKM: "Turkmenistan"
227
+ TCA: "Turks- og Caicosøerne"
228
+ DEU: "Tyskland"
229
+ TUV: "Tuvalu"
230
+ UGA: "Uganda"
231
+ UKR: "Ukraine"
232
+ HUN: "Ungarn"
233
+ ARE: "Forenede Arabiske Emirater"
234
+ UMI: "USA's ydre småøer"
235
+ URY: "Uruguay"
236
+ UZB: "Usbekistan"
237
+ VUT: "Vanuatu"
238
+ VAT: "Vatikanstaten"
239
+ VEN: "Venezuela"
240
+ ESH: "Vestsahara"
241
+ VNM: "Vietnam"
242
+ WLF: "Wallis og Futuna"
243
+ ZMB: "Zambia"
244
+ ZWE: "Zimbabwe"
245
+ AUT: "Østrig"
246
+ ALA: "Ålandsøerne"
@@ -0,0 +1,251 @@
1
+ en:
2
+ iso3166:
3
+ AFG: "Afghanistan"
4
+ ALA: "Aland Islands"
5
+ ALB: "Albania"
6
+ DZA: "Algeria"
7
+ ASM: "American Samoa"
8
+ AND: "Andorra"
9
+ AGO: "Angola"
10
+ AIA: "Anguilla"
11
+ ATA: "Antarctica"
12
+ ATG: "Antigua and Barbuda"
13
+ ARG: "Argentina"
14
+ ARM: "Armenia"
15
+ ABW: "Aruba"
16
+ AUS: "Australia"
17
+ AUT: "Austria"
18
+ AZE: "Azerbaijan"
19
+ BHS: "Bahamas"
20
+ BHR: "Bahrain"
21
+ BGD: "Bangladesh"
22
+ BRB: "Barbados"
23
+ BLR: "Belarus"
24
+ BEL: "Belgium"
25
+ BLZ: "Belize"
26
+ BEN: "Benin"
27
+ BMU: "Bermuda"
28
+ BTN: "Bhutan"
29
+ BOL: "Bolivia, Plurinational State of"
30
+ BES: "Bonaire, Sint Eustatius and Saba"
31
+ BIH: "Bosnia and Herzegovina"
32
+ BWA: "Botswana"
33
+ BVT: "Bouvet Island"
34
+ BRA: "Brazil"
35
+ IOT: "British Indian Ocean Territory"
36
+ BRN: "Brunei Darussalam"
37
+ BGR: "Bulgaria"
38
+ BFA: "Burkina Faso"
39
+ BDI: "Burundi"
40
+ KHM: "Cambodia"
41
+ CMR: "Cameroon"
42
+ CAN: "Canada"
43
+ CPV: "Cape Verde"
44
+ CYM: "Cayman Islands"
45
+ CAF: "Central African Republic"
46
+ TCD: "Chad"
47
+ CHL: "Chile"
48
+ CHN: "China"
49
+ CXR: "Christmas Island"
50
+ CCK: "Cocos (Keeling) Islands"
51
+ COL: "Colombia"
52
+ COM: "Comoros"
53
+ COG: "Congo"
54
+ COD: "Congo, the Democratic Republic of the"
55
+ COK: "Cook Islands"
56
+ CRI: "Costa Rica"
57
+ CIV: "Cote d'Ivoire"
58
+ HRV: "Croatia"
59
+ CUB: "Cuba"
60
+ CUW: "Curaçao"
61
+ CYP: "Cyprus"
62
+ CZE: "Czech Republic"
63
+ DNK: "Denmark"
64
+ DJI: "Djibouti"
65
+ DMA: "Dominica"
66
+ DOM: "Dominican Republic"
67
+ ECU: "Ecuador"
68
+ EGY: "Egypt"
69
+ SLV: "El Salvador"
70
+ GNQ: "Equatorial Guinea"
71
+ ERI: "Eritrea"
72
+ EST: "Estonia"
73
+ ETH: "Ethiopia"
74
+ FLK: "Falkland Islands (Malvinas)"
75
+ FRO: "Faroe Islands"
76
+ FJI: "Fiji"
77
+ FIN: "Finland"
78
+ FRA: "France"
79
+ GUF: "French Guiana"
80
+ PYF: "French Polynesia"
81
+ ATF: "French Southern Territories"
82
+ GAB: "Gabon"
83
+ GMB: "Gambia"
84
+ GEO: "Georgia"
85
+ DEU: "Germany"
86
+ GHA: "Ghana"
87
+ GIB: "Gibraltar"
88
+ GRC: "Greece"
89
+ GRL: "Greenland"
90
+ GRD: "Grenada"
91
+ GLP: "Guadeloupe"
92
+ GUM: "Guam"
93
+ GTM: "Guatemala"
94
+ GGY: "Guernsey"
95
+ GIN: "Guinea"
96
+ GNB: "Guinea-Bissau"
97
+ GUY: "Guyana"
98
+ HTI: "Haiti"
99
+ HMD: "Heard Island and McDonald Islands"
100
+ VAT: "Holy See (Vatican City State)"
101
+ HND: "Honduras"
102
+ HKG: "Hong Kong"
103
+ HUN: "Hungary"
104
+ ISL: "Iceland"
105
+ IND: "India"
106
+ IDN: "Indonesia"
107
+ IRN: "Iran, Islamic Republic of"
108
+ IRQ: "Iraq"
109
+ IRL: "Ireland"
110
+ IMN: "Isle of Man"
111
+ ISR: "Israel"
112
+ ITA: "Italy"
113
+ JAM: "Jamaica"
114
+ JPN: "Japan"
115
+ JEY: "Jersey"
116
+ JOR: "Jordan"
117
+ KAZ: "Kazakhstan"
118
+ KEN: "Kenya"
119
+ KIR: "Kiribati"
120
+ PRK: "Korea, Democratic People's Republic of"
121
+ KOR: "Korea, Republic of"
122
+ KWT: "Kuwait"
123
+ KGZ: "Kyrgyzstan"
124
+ LAO: "Lao People's Democratic Republic"
125
+ LVA: "Latvia"
126
+ LBN: "Lebanon"
127
+ LSO: "Lesotho"
128
+ LBR: "Liberia"
129
+ LBY: "Libya"
130
+ LIE: "Liechtenstein"
131
+ LTU: "Lithuania"
132
+ LUX: "Luxembourg"
133
+ MAC: "Macao"
134
+ MKD: "Macedonia, the former Yugoslav Republic of"
135
+ MDG: "Madagascar"
136
+ MWI: "Malawi"
137
+ MYS: "Malaysia"
138
+ MDV: "Maldives"
139
+ MLI: "Mali"
140
+ MLT: "Malta"
141
+ MHL: "Marshall Islands"
142
+ MTQ: "Martinique"
143
+ MRT: "Mauritania"
144
+ MUS: "Mauritius"
145
+ MYT: "Mayotte"
146
+ MEX: "Mexico"
147
+ FSM: "Micronesia, Federated States of"
148
+ MDA: "Moldova, Republic of"
149
+ MCO: "Monaco"
150
+ MNG: "Mongolia"
151
+ MNE: "Montenegro"
152
+ MSR: "Montserrat"
153
+ MAR: "Morocco"
154
+ MOZ: "Mozambique"
155
+ MMR: "Myanmar"
156
+ NAM: "Namibia"
157
+ NRU: "Nauru"
158
+ NPL: "Nepal"
159
+ NLD: "Netherlands"
160
+ NCL: "New Caledonia"
161
+ NZL: "New Zealand"
162
+ NIC: "Nicaragua"
163
+ NER: "Niger"
164
+ NGA: "Nigeria"
165
+ NIU: "Niue"
166
+ NFK: "Norfolk Island"
167
+ MNP: "Northern Mariana Islands"
168
+ NOR: "Norway"
169
+ OMN: "Oman"
170
+ PAK: "Pakistan"
171
+ PLW: "Palau"
172
+ PSE: "Palestinian Territory, Occupied"
173
+ PAN: "Panama"
174
+ PNG: "Papua New Guinea"
175
+ PRY: "Paraguay"
176
+ PER: "Peru"
177
+ PHL: "Philippines"
178
+ PCN: "Pitcairn"
179
+ POL: "Poland"
180
+ PRT: "Portugal"
181
+ PRI: "Puerto Rico"
182
+ QAT: "Qatar"
183
+ REU: "Reunion"
184
+ ROU: "Romania"
185
+ RUS: "Russian Federation"
186
+ RWA: "Rwanda"
187
+ BLM: "Saint Barthélemy"
188
+ SHN: "Saint Helena, Ascension and Tristan da Cunha"
189
+ KNA: "Saint Kitts and Nevis"
190
+ LCA: "Saint Lucia"
191
+ MAF: "Saint Martin (French part)"
192
+ SPM: "Saint Pierre and Miquelon"
193
+ VCT: "Saint Vincent and the Grenadines"
194
+ WSM: "Samoa"
195
+ SMR: "San Marino"
196
+ STP: "Sao Tome and Principe"
197
+ SAU: "Saudi Arabia"
198
+ SEN: "Senegal"
199
+ SRB: "Serbia"
200
+ SYC: "Seychelles"
201
+ SLE: "Sierra Leone"
202
+ SGP: "Singapore"
203
+ SXM: "Sint Maarten (Dutch part)"
204
+ SVK: "Slovakia"
205
+ SVN: "Slovenia"
206
+ SLB: "Solomon Islands"
207
+ SOM: "Somalia"
208
+ ZAF: "South Africa"
209
+ SGS: "South Georgia and the South Sandwich Islands"
210
+ SSD: "South Sudan"
211
+ ESP: "Spain"
212
+ LKA: "Sri Lanka"
213
+ SDN: "Sudan"
214
+ SUR: "Suriname"
215
+ SJM: "Svalbard and Jan Mayen"
216
+ SWZ: "Swaziland"
217
+ SWE: "Sweden"
218
+ CHE: "Switzerland"
219
+ SYR: "Syrian Arab Republic"
220
+ TWN: "Taiwan, Province of China"
221
+ TJK: "Tajikistan"
222
+ TZA: "Tanzania, United Republic of"
223
+ THA: "Thailand"
224
+ TLS: "Timor-Leste"
225
+ TGO: "Togo"
226
+ TKL: "Tokelau"
227
+ TON: "Tonga"
228
+ TTO: "Trinidad and Tobago"
229
+ TUN: "Tunisia"
230
+ TUR: "Turkey"
231
+ TKM: "Turkmenistan"
232
+ TCA: "Turks and Caicos Islands"
233
+ TUV: "Tuvalu"
234
+ UGA: "Uganda"
235
+ UKR: "Ukraine"
236
+ ARE: "United Arab Emirates"
237
+ GBR: "United Kingdom"
238
+ USA: "United States"
239
+ UMI: "United States Minor Outlying Islands"
240
+ URY: "Uruguay"
241
+ UZB: "Uzbekistan"
242
+ VUT: "Vanuatu"
243
+ VEN: "Venezuela, Bolivarian Republic of"
244
+ VNM: "Viet Nam"
245
+ VGB: "Virgin Islands, British"
246
+ VIR: "Virgin Islands, U.S."
247
+ WLF: "Wallis and Futuna"
248
+ ESH: "Western Sahara"
249
+ YEM: "Yemen"
250
+ ZMB: "Zambia"
251
+ ZWE: "Zimbabwe"