@shopgate/engage 7.20.0-beta.1 → 7.20.0-beta.11

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.
Files changed (140) hide show
  1. package/account/actions/addContacts.js +1 -1
  2. package/account/actions/deleteContact.js +1 -1
  3. package/account/actions/deleteCustomer.js +1 -1
  4. package/account/actions/fetchContacts.js +1 -1
  5. package/account/actions/fetchCustomer.js +1 -1
  6. package/account/actions/updateContact.js +1 -1
  7. package/account/actions/updateCustomer.js +1 -1
  8. package/account/components/Account/Account.js +1 -1
  9. package/account/reducers/index.js +2 -2
  10. package/cart/cart.helpers.js +8 -1
  11. package/cart/components/CartItem/CartItemProductLayout.js +2 -1
  12. package/cart/index.js +2 -1
  13. package/cart/streams/index.js +1 -0
  14. package/checkout/components/Checkout/CheckoutPickupContactForm.config.js +1 -1
  15. package/checkout/components/GuestCheckout/GuestCheckoutPickupNotes.config.js +1 -1
  16. package/checkout/components/index.js +1 -1
  17. package/checkout/constants/index.js +1 -1
  18. package/checkout/index.js +3 -4
  19. package/checkout/paymentMethods/stripe/sdk.js +3 -2
  20. package/components/ChipLayout/style.js +2 -2
  21. package/components/ConditionalWrapper/ConditionalWrapper.js +7 -2
  22. package/components/QuantityInput/QuantityInput.js +5 -4
  23. package/components/ResponsiveContainer/ResponsiveContainer.js +2 -6
  24. package/components/ResponsiveContainer/breakpoints.js +2 -1
  25. package/components/ResponsiveContainer/hooks.js +20 -0
  26. package/components/ScrollHeader/index.js +2 -2
  27. package/components/ScrollHeader/style.js +1 -1
  28. package/core/constants/index.js +1 -1
  29. package/core/helpers/appFeatures.js +2 -1
  30. package/core/helpers/i18n.js +1 -1
  31. package/core/helpers/index.js +1 -1
  32. package/core/hooks/index.js +1 -1
  33. package/core/streams/index.js +1 -1
  34. package/core/subscriptions/app.js +2 -2
  35. package/favorites/components/Item/Item.js +6 -6
  36. package/favorites/components/List/List.js +17 -6
  37. package/favorites/components/List/ListAccordionLabel.js +4 -0
  38. package/favorites/components/List/ListContent.js +8 -0
  39. package/favorites/components/List/ListItemWrapper.js +6 -0
  40. package/favorites/components/List/styles.js +1 -0
  41. package/favorites/components/Lists/Lists.js +4 -4
  42. package/favorites/components/Lists/ListsModal.js +3 -2
  43. package/favorites/constants/index.js +1 -0
  44. package/filter/actions/index.js +1 -0
  45. package/filter/components/PriceSlider/style.js +1 -3
  46. package/filter/components/index.js +1 -0
  47. package/filter/constants/index.js +1 -1
  48. package/filter/helpers/buildInitialFilters.js +1 -1
  49. package/filter/helpers/translateFilterLabel.js +3 -3
  50. package/filter/index.js +2 -7
  51. package/filter/selectors/index.js +1 -1
  52. package/filter/streams/index.js +1 -0
  53. package/i18n/locale/cs-cz/countries.json +255 -0
  54. package/i18n/locale/de-de/countries.json +26 -28
  55. package/i18n/locale/el-gr/countries.json +255 -0
  56. package/i18n/locale/en-us/countries.json +12 -14
  57. package/i18n/locale/es-es/countries.json +65 -67
  58. package/i18n/locale/fi-fi/countries.json +255 -0
  59. package/i18n/locale/fr-fr/countries.json +85 -87
  60. package/i18n/locale/hu-hu/countries.json +255 -0
  61. package/i18n/locale/it-it/countries.json +11 -13
  62. package/i18n/locale/nl-nl/countries.json +42 -44
  63. package/i18n/locale/pl-pl/countries.json +255 -0
  64. package/i18n/locale/pt-pt/countries.json +128 -130
  65. package/i18n/locale/ro-ro/countries.json +255 -0
  66. package/i18n/locale/sv-se/countries.json +255 -0
  67. package/locations/action-creators/receiveInventories.js +3 -5
  68. package/locations/components/StoreList/StoreListSearch.js +3 -1
  69. package/locations/subscriptions.js +2 -2
  70. package/orders/index.js +1 -1
  71. package/package.json +7 -7
  72. package/page/selectors/index.js +7 -1
  73. package/product/components/Options/components/Content/spec.js +1 -1
  74. package/product/components/ProductSlider/index.js +1 -1
  75. package/product/components/QuantityPicker/hooks.js +5 -0
  76. package/product/components/QuantityPicker/index.js +2 -2
  77. package/product/components/Rating/spec.js +1 -1
  78. package/product/components/UnitQuantityPicker/CartUnitQuantityPicker.js +2 -2
  79. package/product/components/UnitQuantityPicker/ProductUnitQuantityPicker.js +3 -2
  80. package/product/components/UnitQuantityPicker/UnitQuantityPicker.js +6 -3
  81. package/product/components/UnitQuantityPicker/UnitQuantityPickerWithSection.js +7 -0
  82. package/product/components/UnitQuantityPicker/index.js +1 -1
  83. package/product/components/index.js +1 -1
  84. package/product/providers/ProductListType/context.js +2 -1
  85. package/product/providers/ProductListType/index.js +2 -1
  86. package/product/providers/index.js +1 -1
  87. package/product/selectors/product.js +12 -2
  88. package/push-opt-in/components/PushOptInModal/index.js +5 -6
  89. package/push-opt-in/subscriptions/optInTrigger.js +3 -5
  90. package/registration/components/index.js +1 -0
  91. package/registration/index.js +1 -1
  92. package/registration/streams/index.js +4 -0
  93. package/registration/subscriptions/index.js +4 -4
  94. package/reviews/components/Reviews/components/Header/components/ReviewsExcerpt/style.js +1 -2
  95. package/reviews/components/Reviews/components/RatingCount/style.js +1 -2
  96. package/reviews/index.js +3 -1
  97. package/styles/helpers/initCSSCustomProperties.js +2 -2
  98. package/styles/helpers/loadCustomStyles.js +2 -2
  99. package/styles/helpers/setPageBackgroundColor.js +2 -1
  100. package/tracking/action-creators/cookieConsent.js +24 -0
  101. package/tracking/action-creators/index.js +1 -4
  102. package/tracking/actions/cookieConsent.js +21 -0
  103. package/tracking/actions/index.js +1 -0
  104. package/tracking/components/CookieConsentModal/connector.js +6 -0
  105. package/tracking/components/CookieConsentModal/index.js +9 -0
  106. package/tracking/components/CookieConsentModal/style.js +1 -0
  107. package/tracking/components/CookieConsentModal/tracking-opt-in.svg +18 -0
  108. package/tracking/components/PrivacySettings/connector.js +6 -0
  109. package/tracking/components/PrivacySettings/index.js +4 -0
  110. package/tracking/components/PrivacySettings/style.js +1 -0
  111. package/tracking/components/index.js +1 -1
  112. package/tracking/constants/index.js +0 -1
  113. package/tracking/reducers/cookieConsentModal.js +6 -0
  114. package/tracking/reducers/cookieSettings.js +6 -0
  115. package/tracking/reducers/index.js +1 -0
  116. package/tracking/selectors/cookieConsent.js +35 -0
  117. package/tracking/selectors/index.js +1 -4
  118. package/tracking/streams/cookieConsent.js +46 -0
  119. package/tracking/streams/index.js +1 -1
  120. package/tracking/subscriptions/analytics.js +11 -0
  121. package/tracking/subscriptions/cookieConsent.js +13 -0
  122. package/tracking/subscriptions/index.js +1 -4
  123. package/user/index.js +1 -1
  124. package/i18n/locale/ru-ru/countries.json +0 -251
  125. package/product/components/QuantityPicker/helpers.js +0 -5
  126. package/tracking/components/CookieConsent/CookieConsent.connector.js +0 -4
  127. package/tracking/components/CookieConsent/CookieConsent.js +0 -4
  128. package/tracking/components/CookieConsent/CookieConsentButtons.js +0 -3
  129. package/tracking/components/CookieConsent/CookieConsentCheckboxes.js +0 -3
  130. package/tracking/components/CookieConsent/CookieConsentContent.js +0 -4
  131. package/tracking/components/CookieConsent/CookieConsentMessage.js +0 -4
  132. package/tracking/components/CookieConsent/index.js +0 -1
  133. package/tracking/helpers/index.js +0 -7
  134. package/tracking/hooks/index.js +0 -4
  135. package/tracking/index.js +0 -1
  136. package/tracking/providers/CookieConsentProvider.connector.js +0 -4
  137. package/tracking/providers/CookieConsentProvider.context.js +0 -1
  138. package/tracking/providers/CookieConsentProvider.js +0 -8
  139. /package/product/{components/ProductProvider → providers/Product}/connector.js +0 -0
  140. /package/product/{components/ProductProvider → providers/Product}/index.js +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "AF": "Afghanistan",
3
- "AX": "\u00c5land",
4
- "AL": "Albani\u00eb",
3
+ "AX": "Åland",
4
+ "AL": "Albanië",
5
5
  "DZ": "Algerije",
6
6
  "AS": "Amerikaans-Samoa",
7
7
  "VI": "Amerikaanse Maagdeneilanden",
@@ -10,26 +10,26 @@
10
10
  "AI": "Anguilla",
11
11
  "AQ": "Antarctica",
12
12
  "AG": "Antigua en Barbuda",
13
- "AR": "Argentini\u00eb",
14
- "AM": "Armeni\u00eb",
13
+ "AR": "Argentinië",
14
+ "AM": "Armenië",
15
15
  "AW": "Aruba",
16
16
  "AC": "Ascension",
17
- "AU": "Australi\u00eb",
17
+ "AU": "Australië",
18
18
  "AZ": "Azerbeidzjan",
19
- "BS": "Bahama\u2019s",
19
+ "BS": "Bahama’s",
20
20
  "BH": "Bahrein",
21
21
  "BD": "Bangladesh",
22
22
  "BB": "Barbados",
23
23
  "BY": "Belarus",
24
- "BE": "Belgi\u00eb",
24
+ "BE": "België",
25
25
  "BZ": "Belize",
26
26
  "BJ": "Benin",
27
27
  "BM": "Bermuda",
28
28
  "BT": "Bhutan",
29
29
  "BO": "Bolivia",
30
- "BA": "Bosni\u00eb en Herzegovina",
30
+ "BA": "Bosnië en Herzegovina",
31
31
  "BW": "Botswana",
32
- "BR": "Brazili\u00eb",
32
+ "BR": "Brazilië",
33
33
  "IO": "Brits Indische Oceaanterritorium",
34
34
  "VG": "Britse Maagdeneilanden",
35
35
  "BN": "Brunei",
@@ -53,7 +53,7 @@
53
53
  "CK": "Cookeilanden",
54
54
  "CR": "Costa Rica",
55
55
  "CU": "Cuba",
56
- "CW": "Cura\u00e7ao",
56
+ "CW": "Curaçao",
57
57
  "CY": "Cyprus",
58
58
  "DK": "Denemarken",
59
59
  "DG": "Diego Garcia",
@@ -68,19 +68,19 @@
68
68
  "ER": "Eritrea",
69
69
  "EE": "Estland",
70
70
  "SZ": "eSwatini",
71
- "ET": "Ethiopi\u00eb",
72
- "FO": "Faer\u00f6er",
71
+ "ET": "Ethiopië",
72
+ "FO": "Faeröer",
73
73
  "FK": "Falklandeilanden",
74
74
  "FJ": "Fiji",
75
75
  "PH": "Filipijnen",
76
76
  "FI": "Finland",
77
77
  "FR": "Frankrijk",
78
78
  "GF": "Frans-Guyana",
79
- "PF": "Frans-Polynesi\u00eb",
79
+ "PF": "Frans-Polynesië",
80
80
  "TF": "Franse Gebieden in de zuidelijke Indische Oceaan",
81
81
  "GA": "Gabon",
82
82
  "GM": "Gambia",
83
- "GE": "Georgi\u00eb",
83
+ "GE": "Georgië",
84
84
  "GH": "Ghana",
85
85
  "GI": "Gibraltar",
86
86
  "GD": "Grenada",
@@ -93,42 +93,42 @@
93
93
  "GN": "Guinee",
94
94
  "GW": "Guinee-Bissau",
95
95
  "GY": "Guyana",
96
- "HT": "Ha\u00efti",
96
+ "HT": "Haïti",
97
97
  "HN": "Honduras",
98
98
  "HU": "Hongarije",
99
99
  "HK": "Hongkong SAR van China",
100
100
  "IE": "Ierland",
101
101
  "IS": "IJsland",
102
102
  "IN": "India",
103
- "ID": "Indonesi\u00eb",
103
+ "ID": "Indonesië",
104
104
  "IQ": "Irak",
105
105
  "IR": "Iran",
106
106
  "IM": "Isle of Man",
107
- "IL": "Isra\u00ebl",
108
- "IT": "Itali\u00eb",
107
+ "IL": "Israël",
108
+ "IT": "Italië",
109
109
  "CI": "Ivoorkust",
110
110
  "JM": "Jamaica",
111
111
  "JP": "Japan",
112
112
  "YE": "Jemen",
113
113
  "JE": "Jersey",
114
- "JO": "Jordani\u00eb",
114
+ "JO": "Jordanië",
115
115
  "KY": "Kaaimaneilanden",
116
- "CV": "Kaapverdi\u00eb",
116
+ "CV": "Kaapverdië",
117
117
  "CM": "Kameroen",
118
118
  "KZ": "Kazachstan",
119
119
  "KE": "Kenia",
120
- "KG": "Kirgizi\u00eb",
120
+ "KG": "Kirgizië",
121
121
  "KI": "Kiribati",
122
122
  "UM": "Kleine afgelegen eilanden van de Verenigde Staten",
123
123
  "KW": "Koeweit",
124
124
  "XK": "Kosovo",
125
- "HR": "Kroati\u00eb",
125
+ "HR": "Kroatië",
126
126
  "LA": "Laos",
127
127
  "LS": "Lesotho",
128
128
  "LV": "Letland",
129
129
  "LB": "Libanon",
130
130
  "LR": "Liberia",
131
- "LY": "Libi\u00eb",
131
+ "LY": "Libië",
132
132
  "LI": "Liechtenstein",
133
133
  "LT": "Litouwen",
134
134
  "LU": "Luxemburg",
@@ -136,41 +136,41 @@
136
136
  "MG": "Madagaskar",
137
137
  "MW": "Malawi",
138
138
  "MV": "Maldiven",
139
- "MY": "Maleisi\u00eb",
139
+ "MY": "Maleisië",
140
140
  "ML": "Mali",
141
141
  "MT": "Malta",
142
142
  "MA": "Marokko",
143
143
  "MH": "Marshalleilanden",
144
144
  "MQ": "Martinique",
145
- "MR": "Mauritani\u00eb",
145
+ "MR": "Mauritanië",
146
146
  "MU": "Mauritius",
147
147
  "YT": "Mayotte",
148
148
  "MX": "Mexico",
149
149
  "FM": "Micronesia",
150
- "MD": "Moldavi\u00eb",
150
+ "MD": "Moldavië",
151
151
  "MC": "Monaco",
152
- "MN": "Mongoli\u00eb",
152
+ "MN": "Mongolië",
153
153
  "ME": "Montenegro",
154
154
  "MS": "Montserrat",
155
155
  "MZ": "Mozambique",
156
156
  "MM": "Myanmar (Birma)",
157
- "NA": "Namibi\u00eb",
157
+ "NA": "Namibië",
158
158
  "NR": "Nauru",
159
159
  "NL": "Nederland",
160
160
  "NP": "Nepal",
161
161
  "NI": "Nicaragua",
162
- "NC": "Nieuw-Caledoni\u00eb",
162
+ "NC": "Nieuw-Caledonië",
163
163
  "NZ": "Nieuw-Zeeland",
164
164
  "NE": "Niger",
165
165
  "NG": "Nigeria",
166
166
  "NU": "Niue",
167
167
  "KP": "Noord-Korea",
168
- "MK": "Noord-Macedoni\u00eb",
168
+ "MK": "Noord-Macedonië",
169
169
  "MP": "Noordelijke Marianen",
170
170
  "NO": "Noorwegen",
171
171
  "NF": "Norfolk",
172
172
  "UG": "Oeganda",
173
- "UA": "Oekra\u00efne",
173
+ "UA": "Oekraïne",
174
174
  "UZ": "Oezbekistan",
175
175
  "OM": "Oman",
176
176
  "TL": "Oost-Timor",
@@ -185,41 +185,39 @@
185
185
  "PN": "Pitcairneilanden",
186
186
  "PL": "Polen",
187
187
  "PT": "Portugal",
188
- "XA": "Pseudo-Accenten",
189
- "XB": "Pseudo-Bidi",
190
188
  "PR": "Puerto Rico",
191
189
  "QA": "Qatar",
192
- "RE": "R\u00e9union",
193
- "RO": "Roemeni\u00eb",
190
+ "RE": "Réunion",
191
+ "RO": "Roemenië",
194
192
  "RU": "Rusland",
195
193
  "RW": "Rwanda",
196
194
  "KN": "Saint Kitts en Nevis",
197
195
  "LC": "Saint Lucia",
198
196
  "VC": "Saint Vincent en de Grenadines",
199
- "BL": "Saint-Barth\u00e9lemy",
197
+ "BL": "Saint-Barthélemy",
200
198
  "MF": "Saint-Martin",
201
199
  "PM": "Saint-Pierre en Miquelon",
202
200
  "SB": "Salomonseilanden",
203
201
  "WS": "Samoa",
204
202
  "SM": "San Marino",
205
- "ST": "Sao Tom\u00e9 en Principe",
206
- "SA": "Saoedi-Arabi\u00eb",
203
+ "ST": "Sao Tomé en Principe",
204
+ "SA": "Saoedi-Arabië",
207
205
  "SN": "Senegal",
208
- "RS": "Servi\u00eb",
206
+ "RS": "Servië",
209
207
  "SC": "Seychellen",
210
208
  "SL": "Sierra Leone",
211
209
  "SG": "Singapore",
212
210
  "SH": "Sint-Helena",
213
211
  "SX": "Sint-Maarten",
214
- "SI": "Sloveni\u00eb",
212
+ "SI": "Slovenië",
215
213
  "SK": "Slowakije",
216
214
  "SD": "Soedan",
217
- "SO": "Somali\u00eb",
215
+ "SO": "Somalië",
218
216
  "ES": "Spanje",
219
217
  "SJ": "Spitsbergen en Jan Mayen",
220
218
  "LK": "Sri Lanka",
221
219
  "SR": "Suriname",
222
- "SY": "Syri\u00eb",
220
+ "SY": "Syrië",
223
221
  "TJ": "Tadzjikistan",
224
222
  "TW": "Taiwan",
225
223
  "TZ": "Tanzania",
@@ -230,8 +228,8 @@
230
228
  "TT": "Trinidad en Tobago",
231
229
  "TA": "Tristan da Cunha",
232
230
  "TD": "Tsjaad",
233
- "CZ": "Tsjechi\u00eb",
234
- "TN": "Tunesi\u00eb",
231
+ "CZ": "Tsjechië",
232
+ "TN": "Tunesië",
235
233
  "TR": "Turkije",
236
234
  "TM": "Turkmenistan",
237
235
  "TC": "Turks- en Caicoseilanden",
@@ -0,0 +1,255 @@
1
+ {
2
+ "AF": "Afganistan",
3
+ "AL": "Albania",
4
+ "DZ": "Algieria",
5
+ "AD": "Andora",
6
+ "AO": "Angola",
7
+ "AI": "Anguilla",
8
+ "AQ": "Antarktyda",
9
+ "AG": "Antigua i Barbuda",
10
+ "SA": "Arabia Saudyjska",
11
+ "AR": "Argentyna",
12
+ "AM": "Armenia",
13
+ "AW": "Aruba",
14
+ "AU": "Australia",
15
+ "AT": "Austria",
16
+ "AZ": "Azerbejdżan",
17
+ "BS": "Bahamy",
18
+ "BH": "Bahrajn",
19
+ "BD": "Bangladesz",
20
+ "BB": "Barbados",
21
+ "BE": "Belgia",
22
+ "BZ": "Belize",
23
+ "BJ": "Benin",
24
+ "BM": "Bermudy",
25
+ "BT": "Bhutan",
26
+ "BY": "Białoruś",
27
+ "BO": "Boliwia",
28
+ "BA": "Bośnia i Hercegowina",
29
+ "BW": "Botswana",
30
+ "BR": "Brazylia",
31
+ "BN": "Brunei",
32
+ "IO": "Brytyjskie Terytorium Oceanu Indyjskiego",
33
+ "VG": "Brytyjskie Wyspy Dziewicze",
34
+ "BG": "Bułgaria",
35
+ "BF": "Burkina Faso",
36
+ "BI": "Burundi",
37
+ "EA": "Ceuta i Melilla",
38
+ "CL": "Chile",
39
+ "CN": "Chiny",
40
+ "HR": "Chorwacja",
41
+ "CW": "Curaçao",
42
+ "CY": "Cypr",
43
+ "TD": "Czad",
44
+ "ME": "Czarnogóra",
45
+ "CZ": "Czechy",
46
+ "UM": "Dalekie Wyspy Mniejsze Stanów Zjednoczonych",
47
+ "DK": "Dania",
48
+ "DG": "Diego Garcia",
49
+ "DM": "Dominika",
50
+ "DO": "Dominikana",
51
+ "DJ": "Dżibuti",
52
+ "EG": "Egipt",
53
+ "EC": "Ekwador",
54
+ "ER": "Erytrea",
55
+ "EE": "Estonia",
56
+ "SZ": "Eswatini",
57
+ "ET": "Etiopia",
58
+ "FK": "Falklandy",
59
+ "FJ": "Fidżi",
60
+ "PH": "Filipiny",
61
+ "FI": "Finlandia",
62
+ "FR": "Francja",
63
+ "TF": "Francuskie Terytoria Południowe i Antarktyczne",
64
+ "GA": "Gabon",
65
+ "GM": "Gambia",
66
+ "GS": "Georgia Południowa i Sandwich Południowy",
67
+ "GH": "Ghana",
68
+ "GI": "Gibraltar",
69
+ "GR": "Grecja",
70
+ "GD": "Grenada",
71
+ "GL": "Grenlandia",
72
+ "GE": "Gruzja",
73
+ "GU": "Guam",
74
+ "GG": "Guernsey",
75
+ "GY": "Gujana",
76
+ "GF": "Gujana Francuska",
77
+ "GP": "Gwadelupa",
78
+ "GT": "Gwatemala",
79
+ "GN": "Gwinea",
80
+ "GW": "Gwinea Bissau",
81
+ "GQ": "Gwinea Równikowa",
82
+ "HT": "Haiti",
83
+ "ES": "Hiszpania",
84
+ "NL": "Holandia",
85
+ "HN": "Honduras",
86
+ "HK": "Hongkong",
87
+ "IN": "Indie",
88
+ "ID": "Indonezja",
89
+ "IQ": "Irak",
90
+ "IR": "Iran",
91
+ "IE": "Irlandia",
92
+ "IS": "Islandia",
93
+ "IL": "Izrael",
94
+ "JM": "Jamajka",
95
+ "JP": "Japonia",
96
+ "YE": "Jemen",
97
+ "JE": "Jersey",
98
+ "JO": "Jordania",
99
+ "KY": "Kajmany",
100
+ "KH": "Kambodża",
101
+ "CM": "Kamerun",
102
+ "CA": "Kanada",
103
+ "QA": "Katar",
104
+ "KZ": "Kazachstan",
105
+ "KE": "Kenia",
106
+ "KG": "Kirgistan",
107
+ "KI": "Kiribati",
108
+ "CO": "Kolumbia",
109
+ "KM": "Komory",
110
+ "CG": "Kongo - Brazzaville",
111
+ "CD": "Kongo - Kinszasa",
112
+ "KP": "Korea Północna",
113
+ "KR": "Korea Południowa",
114
+ "XK": "Kosowo",
115
+ "CR": "Kostaryka",
116
+ "CU": "Kuba",
117
+ "KW": "Kuwejt",
118
+ "LA": "Laos",
119
+ "LS": "Lesotho",
120
+ "LB": "Liban",
121
+ "LR": "Liberia",
122
+ "LY": "Libia",
123
+ "LI": "Liechtenstein",
124
+ "LT": "Litwa",
125
+ "LV": "Łotwa",
126
+ "LU": "Luksemburg",
127
+ "MK": "Macedonia Północna",
128
+ "MG": "Madagaskar",
129
+ "YT": "Majotta",
130
+ "MO": "Makau",
131
+ "MW": "Malawi",
132
+ "MV": "Malediwy",
133
+ "MY": "Malezja",
134
+ "ML": "Mali",
135
+ "MT": "Malta",
136
+ "MP": "Mariany Północne",
137
+ "MA": "Maroko",
138
+ "MQ": "Martynika",
139
+ "MR": "Mauretania",
140
+ "MU": "Mauritius",
141
+ "MX": "Meksyk",
142
+ "FM": "Mikronezja",
143
+ "MM": "Mjanma (Birma)",
144
+ "MD": "Mołdawia",
145
+ "MC": "Monako",
146
+ "MN": "Mongolia",
147
+ "MS": "Montserrat",
148
+ "MZ": "Mozambik",
149
+ "NA": "Namibia",
150
+ "NR": "Nauru",
151
+ "NP": "Nepal",
152
+ "BQ": "Niderlandy Karaibskie",
153
+ "DE": "Niemcy",
154
+ "NE": "Niger",
155
+ "NG": "Nigeria",
156
+ "NI": "Nikaragua",
157
+ "NU": "Niue",
158
+ "NF": "Norfolk",
159
+ "NO": "Norwegia",
160
+ "NC": "Nowa Kaledonia",
161
+ "NZ": "Nowa Zelandia",
162
+ "OM": "Oman",
163
+ "PK": "Pakistan",
164
+ "PW": "Palau",
165
+ "PA": "Panama",
166
+ "PG": "Papua-Nowa Gwinea",
167
+ "PY": "Paragwaj",
168
+ "PE": "Peru",
169
+ "PN": "Pitcairn",
170
+ "PF": "Polinezja Francuska",
171
+ "PL": "Polska",
172
+ "PR": "Portoryko",
173
+ "PT": "Portugalia",
174
+ "ZA": "Republika Południowej Afryki",
175
+ "CF": "Republika Środkowoafrykańska",
176
+ "RE": "Reunion",
177
+ "RU": "Rosja",
178
+ "RO": "Rumunia",
179
+ "RW": "Rwanda",
180
+ "EH": "Sahara Zachodnia",
181
+ "KN": "Saint Kitts i Nevis",
182
+ "LC": "Saint Lucia",
183
+ "VC": "Saint Vincent i Grenadyny",
184
+ "BL": "Saint-Barthélemy",
185
+ "MF": "Saint-Martin",
186
+ "PM": "Saint-Pierre i Miquelon",
187
+ "SV": "Salwador",
188
+ "WS": "Samoa",
189
+ "AS": "Samoa Amerykańskie",
190
+ "SM": "San Marino",
191
+ "SN": "Senegal",
192
+ "RS": "Serbia",
193
+ "SC": "Seszele",
194
+ "SL": "Sierra Leone",
195
+ "SG": "Singapur",
196
+ "SX": "Sint Maarten",
197
+ "SK": "Słowacja",
198
+ "SI": "Słowenia",
199
+ "SO": "Somalia",
200
+ "LK": "Sri Lanka",
201
+ "US": "Stany Zjednoczone",
202
+ "SD": "Sudan",
203
+ "SS": "Sudan Południowy",
204
+ "SR": "Surinam",
205
+ "SJ": "Svalbard i Jan Mayen",
206
+ "SH": "Święta Helena",
207
+ "SY": "Syria",
208
+ "CH": "Szwajcaria",
209
+ "SE": "Szwecja",
210
+ "TJ": "Tadżykistan",
211
+ "TH": "Tajlandia",
212
+ "TW": "Tajwan",
213
+ "TZ": "Tanzania",
214
+ "PS": "Terytoria Palestyńskie",
215
+ "TL": "Timor Wschodni",
216
+ "TG": "Togo",
217
+ "TK": "Tokelau",
218
+ "TO": "Tonga",
219
+ "TA": "Tristan da Cunha",
220
+ "TT": "Trynidad i Tobago",
221
+ "TN": "Tunezja",
222
+ "TR": "Turcja",
223
+ "TM": "Turkmenistan",
224
+ "TC": "Turks i Caicos",
225
+ "TV": "Tuvalu",
226
+ "UG": "Uganda",
227
+ "UA": "Ukraina",
228
+ "UY": "Urugwaj",
229
+ "UZ": "Uzbekistan",
230
+ "VU": "Vanuatu",
231
+ "WF": "Wallis i Futuna",
232
+ "VA": "Watykan",
233
+ "HU": "Węgry",
234
+ "VE": "Wenezuela",
235
+ "GB": "Wielka Brytania",
236
+ "VN": "Wietnam",
237
+ "IT": "Włochy",
238
+ "CI": "Wybrzeże Kości Słoniowej",
239
+ "CX": "Wyspa Bożego Narodzenia",
240
+ "IM": "Wyspa Man",
241
+ "AC": "Wyspa Wniebowstąpienia",
242
+ "AX": "Wyspy Alandzkie",
243
+ "CK": "Wyspy Cooka",
244
+ "VI": "Wyspy Dziewicze Stanów Zjednoczonych",
245
+ "IC": "Wyspy Kanaryjskie",
246
+ "CC": "Wyspy Kokosowe",
247
+ "MH": "Wyspy Marshalla",
248
+ "FO": "Wyspy Owcze",
249
+ "SB": "Wyspy Salomona",
250
+ "ST": "Wyspy Świętego Tomasza i Książęca",
251
+ "CV": "Wyspy Zielonego Przylądka",
252
+ "ZM": "Zambia",
253
+ "ZW": "Zimbabwe",
254
+ "AE": "Zjednoczone Emiraty Arabskie"
255
+ }