intl-tel-input 23.9.0 → 23.9.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.
Files changed (47) hide show
  1. package/README.md +5 -5
  2. package/build/js/data.js +1 -1
  3. package/build/js/data.min.js +1 -1
  4. package/build/js/i18n/ar/countries.js +0 -7
  5. package/build/js/i18n/bg/countries.js +0 -7
  6. package/build/js/i18n/bn/countries.js +0 -7
  7. package/build/js/i18n/bs/countries.js +0 -7
  8. package/build/js/i18n/ca/countries.js +0 -7
  9. package/build/js/i18n/cs/countries.js +0 -7
  10. package/build/js/i18n/de/countries.js +0 -7
  11. package/build/js/i18n/el/countries.js +0 -7
  12. package/build/js/i18n/en/countries.js +0 -7
  13. package/build/js/i18n/es/countries.js +0 -7
  14. package/build/js/i18n/fa/countries.js +0 -7
  15. package/build/js/i18n/fi/countries.js +0 -7
  16. package/build/js/i18n/fr/countries.js +0 -7
  17. package/build/js/i18n/hi/countries.js +0 -7
  18. package/build/js/i18n/hr/countries.js +0 -7
  19. package/build/js/i18n/hu/countries.js +0 -7
  20. package/build/js/i18n/id/countries.js +0 -7
  21. package/build/js/i18n/it/countries.js +0 -7
  22. package/build/js/i18n/ja/countries.js +0 -7
  23. package/build/js/i18n/ko/countries.js +0 -7
  24. package/build/js/i18n/mr/countries.js +0 -7
  25. package/build/js/i18n/nl/countries.js +0 -7
  26. package/build/js/i18n/pt/countries.js +0 -7
  27. package/build/js/i18n/ro/countries.js +0 -7
  28. package/build/js/i18n/ru/countries.js +0 -7
  29. package/build/js/i18n/sk/countries.js +0 -7
  30. package/build/js/i18n/sv/countries.js +0 -7
  31. package/build/js/i18n/te/countries.js +0 -7
  32. package/build/js/i18n/th/countries.js +0 -7
  33. package/build/js/i18n/tr/countries.js +0 -7
  34. package/build/js/i18n/ur/countries.js +0 -7
  35. package/build/js/i18n/zh/countries.js +0 -7
  36. package/build/js/intlTelInput.d.ts +0 -7
  37. package/build/js/intlTelInput.js +2 -9
  38. package/build/js/intlTelInput.min.js +2 -2
  39. package/build/js/intlTelInputWithUtils.js +2 -9
  40. package/build/js/intlTelInputWithUtils.min.js +2 -2
  41. package/package.json +1 -1
  42. package/react/README.md +1 -1
  43. package/react/build/IntlTelInput.cjs +1 -8
  44. package/react/build/IntlTelInput.d.ts +0 -7
  45. package/react/build/IntlTelInput.js +1 -8
  46. package/react/build/IntlTelInputWithUtils.cjs +1 -8
  47. package/react/build/IntlTelInputWithUtils.js +1 -8
package/README.md CHANGED
@@ -73,16 +73,16 @@ _Note: We have now dropped support for all versions of Internet Explorer because
73
73
  ## Getting Started (Using a CDN)
74
74
  1. Add the CSS
75
75
  ```html
76
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.0/build/css/intlTelInput.css">
76
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.1/build/css/intlTelInput.css">
77
77
  ```
78
78
 
79
79
  2. Add the plugin script and initialise it on your input element
80
80
  ```html
81
- <script src="https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.0/build/js/intlTelInput.min.js"></script>
81
+ <script src="https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.1/build/js/intlTelInput.min.js"></script>
82
82
  <script>
83
83
  const input = document.querySelector("#phone");
84
84
  window.intlTelInput(input, {
85
- utilsScript: "https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.0/build/js/utils.js",
85
+ utilsScript: "https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.1/build/js/utils.js",
86
86
  });
87
87
  </script>
88
88
  ```
@@ -329,7 +329,7 @@ Control when the country list appears as a fullscreen popup vs an inline dropdow
329
329
 
330
330
  **utilsScript**
331
331
  Type: `String` Default: `""` Example: `"/build/js/utils.js"`
332
- This is one way to (lazy) load the included utils.js (to enable formatting/validation etc) - see [Loading The Utilities Script](#loading-the-utilities-script) for more options. You will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `utilsScript` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.0/build/js/utils.js"`. The script is loaded via a [dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) statement, which means the URL cannot be relative - it must be absolute. The script is only fetched when you initialise the plugin, and additionally, only when the page has finished loading (on the window load event) to prevent blocking (the script is ~260KB). When instantiating the plugin, a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) object is returned under the `promise` instance property, so you can do something like `iti.promise.then(callback)` to know when initialisation requests like this have finished. See [Utilities Script](#utilities-script) for more information.
332
+ This is one way to (lazy) load the included utils.js (to enable formatting/validation etc) - see [Loading The Utilities Script](#loading-the-utilities-script) for more options. You will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `utilsScript` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.1/build/js/utils.js"`. The script is loaded via a [dynamic import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) statement, which means the URL cannot be relative - it must be absolute. The script is only fetched when you initialise the plugin, and additionally, only when the page has finished loading (on the window load event) to prevent blocking (the script is ~260KB). When instantiating the plugin, a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) object is returned under the `promise` instance property, so you can do something like `iti.promise.then(callback)` to know when initialisation requests like this have finished. See [Utilities Script](#utilities-script) for more information.
333
333
 
334
334
  **validationNumberType**
335
335
  Type: `String` Default: `"MOBILE"`
@@ -544,7 +544,7 @@ The utils script provides lots of great functionality (see above section), but c
544
544
  If you're not concerned about filesize (e.g. you're lazy loading this script), the easiest thing to do is to just use the full bundle /build/js/intlTelInputWithUtils.js, which comes with the utils script included. This script can be used exactly like the main intlTelInput.js - so it can either be loaded directly onto the page (which defines `window.intlTelInput` like usual), or it can be imported like so: `import intlTelInput from "intl-tel-input/intlTelInputWithUtils"`.
545
545
 
546
546
  **Option 2: utilsScript**
547
- If you *are* concerned about filesize, you can lazy load the utils script when the plugin intitialises, using the `utilsScript` initialisation option. You will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `utilsScript` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.0/build/js/utils.js"`. If you want more control over when this file is lazy loaded, you can manually invoke the `loadUtils` static method, instead of using `utilsScript`.
547
+ If you *are* concerned about filesize, you can lazy load the utils script when the plugin intitialises, using the `utilsScript` initialisation option. You will need to host the [utils.js](https://github.com/jackocnr/intl-tel-input/blob/master/build/js/utils.js) file, and then set the `utilsScript` option to that URL, or alternatively just point it to a CDN hosted version e.g. `"https://cdn.jsdelivr.net/npm/intl-tel-input@23.9.1/build/js/utils.js"`. If you want more control over when this file is lazy loaded, you can manually invoke the `loadUtils` static method, instead of using `utilsScript`.
548
548
 
549
549
  ## Troubleshooting
550
550
 
package/build/js/data.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * International Telephone Input v23.9.0
2
+ * International Telephone Input v23.9.1
3
3
  * https://github.com/jackocnr/intl-tel-input.git
4
4
  * Licensed under the MIT license
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*
2
- * International Telephone Input v23.9.0
2
+ * International Telephone Input v23.9.1
3
3
  * https://github.com/jackocnr/intl-tel-input.git
4
4
  * Licensed under the MIT license
5
5
  */
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "ألبانيا",
8
8
  am: "أرمينيا",
9
9
  ao: "أنغولا",
10
- aq: "أنتاركتيكا",
11
10
  ar: "الأرجنتين",
12
11
  as: "ساموا الأمريكية",
13
12
  at: "النمسا",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "البرازيل",
33
32
  bs: "جزر البهاما",
34
33
  bt: "بوتان",
35
- bv: "جزيرة بوفيه",
36
34
  bw: "بوتسوانا",
37
35
  by: "بيلاروس",
38
36
  bz: "بليز",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "غوادلوب",
89
87
  gq: "غينيا الاستوائية",
90
88
  gr: "اليونان",
91
- gs: "جورجيا الجنوبية وجزر ساندويتش الجنوبية",
92
89
  gt: "غواتيمالا",
93
90
  gu: "غوام",
94
91
  gw: "غينيا بيساو",
95
92
  gy: "غيانا",
96
93
  hk: "هونغ كونغ الصينية (منطقة إدارية خاصة)",
97
- hm: "جزيرة هيرد وجزر ماكدونالد",
98
94
  hn: "هندوراس",
99
95
  hr: "كرواتيا",
100
96
  ht: "هايتي",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "باكستان",
180
176
  pl: "بولندا",
181
177
  pm: "سان بيير ومكويلون",
182
- pn: "جزر بيتكيرن",
183
178
  pr: "بورتوريكو",
184
179
  ps: "الأراضي الفلسطينية",
185
180
  pt: "البرتغال",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "إسواتيني",
215
210
  tc: "جزر توركس وكايكوس",
216
211
  td: "تشاد",
217
- tf: "الأقاليم الجنوبية الفرنسية",
218
212
  tg: "توغو",
219
213
  th: "تايلاند",
220
214
  tj: "طاجيكستان",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "تنزانيا",
231
225
  ua: "أوكرانيا",
232
226
  ug: "أوغندا",
233
- um: "جزر الولايات المتحدة النائية",
234
227
  us: "الولايات المتحدة",
235
228
  uy: "أورغواي",
236
229
  uz: "أوزبكستان",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Албания",
8
8
  am: "Армения",
9
9
  ao: "Ангола",
10
- aq: "Антарктика",
11
10
  ar: "Аржентина",
12
11
  as: "Американска Самоа",
13
12
  at: "Австрия",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Бразилия",
33
32
  bs: "Бахамски острови",
34
33
  bt: "Бутан",
35
- bv: "остров Буве",
36
34
  bw: "Ботсвана",
37
35
  by: "Беларус",
38
36
  bz: "Белиз",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Гваделупа",
89
87
  gq: "Екваториална Гвинея",
90
88
  gr: "Гърция",
91
- gs: "Южна Джорджия и Южни Сандвичеви острови",
92
89
  gt: "Гватемала",
93
90
  gu: "Гуам",
94
91
  gw: "Гвинея-Бисау",
95
92
  gy: "Гаяна",
96
93
  hk: "Хонконг, САР на Китай",
97
- hm: "острови Хърд и Макдоналд",
98
94
  hn: "Хондурас",
99
95
  hr: "Хърватия",
100
96
  ht: "Хаити",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Пакистан",
180
176
  pl: "Полша",
181
177
  pm: "Сен Пиер и Микелон",
182
- pn: "Острови Питкерн",
183
178
  pr: "Пуерто Рико",
184
179
  ps: "Палестински територии",
185
180
  pt: "Португалия",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "Есватини",
215
210
  tc: "острови Търкс и Кайкос",
216
211
  td: "Чад",
217
- tf: "Френски южни територии",
218
212
  tg: "Того",
219
213
  th: "Тайланд",
220
214
  tj: "Таджикистан",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Танзания",
231
225
  ua: "Украйна",
232
226
  ug: "Уганда",
233
- um: "Отдалечени острови на САЩ",
234
227
  us: "Съединени щати",
235
228
  uy: "Уругвай",
236
229
  uz: "Узбекистан",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "আলবেনিয়া",
8
8
  am: "আর্মেনিয়া",
9
9
  ao: "অ্যাঙ্গোলা",
10
- aq: "অ্যান্টার্কটিকা",
11
10
  ar: "আর্জেন্টিনা",
12
11
  as: "আমেরিকান সামোয়া",
13
12
  at: "অস্ট্রিয়া",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "ব্রাজিল",
33
32
  bs: "বাহামা দ্বীপপুঞ্জ",
34
33
  bt: "ভুটান",
35
- bv: "বোভেট দ্বীপ",
36
34
  bw: "বতসোয়ানা",
37
35
  by: "বেলারুশ",
38
36
  bz: "বেলিজ",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "গুয়াদেলৌপ",
89
87
  gq: "নিরক্ষীয় গিনি",
90
88
  gr: "গ্রীস",
91
- gs: "দক্ষিণ জর্জিয়া ও দক্ষিণ স্যান্ডউইচ দ্বীপপুঞ্জ",
92
89
  gt: "গুয়াতেমালা",
93
90
  gu: "গুয়াম",
94
91
  gw: "গিনি-বিসাউ",
95
92
  gy: "গিয়ানা",
96
93
  hk: "হংকং এসএআর চীনা",
97
- hm: "হার্ড এবং ম্যাকডোনাল্ড দ্বীপপুঞ্জ",
98
94
  hn: "হন্ডুরাস",
99
95
  hr: "ক্রোয়েশিয়া",
100
96
  ht: "হাইতি",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "পাকিস্তান",
180
176
  pl: "পোল্যান্ড",
181
177
  pm: "সেন্ট পিয়ের ও মিকুয়েলন",
182
- pn: "পিটকেয়ার্ন দ্বীপপুঞ্জ",
183
178
  pr: "পুয়ের্তো রিকো",
184
179
  ps: "প্যালেস্টাইনের অঞ্চলসমূহ",
185
180
  pt: "পর্তুগাল",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "ইসওয়াতিনি",
215
210
  tc: "তুর্কস ও কাইকোস দ্বীপপুঞ্জ",
216
211
  td: "চাদ",
217
- tf: "ফরাসী দক্ষিণাঞ্চল",
218
212
  tg: "টোগো",
219
213
  th: "থাইল্যান্ড",
220
214
  tj: "তাজিকিস্তান",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "তাঞ্জানিয়া",
231
225
  ua: "ইউক্রেন",
232
226
  ug: "উগান্ডা",
233
- um: "যুক্তরাষ্ট্রের পার্শ্ববর্তী দ্বীপপুঞ্জ",
234
227
  us: "মার্কিন যুক্তরাষ্ট্র",
235
228
  uy: "উরুগুয়ে",
236
229
  uz: "উজবেকিস্তান",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Albanija",
8
8
  am: "Armenija",
9
9
  ao: "Angola",
10
- aq: "Antarktika",
11
10
  ar: "Argentina",
12
11
  as: "Američka Samoa",
13
12
  at: "Austrija",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Brazil",
33
32
  bs: "Bahami",
34
33
  bt: "Butan",
35
- bv: "Ostrvo Buve",
36
34
  bw: "Bocvana",
37
35
  by: "Bjelorusija",
38
36
  bz: "Belize",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Gvadalupe",
89
87
  gq: "Ekvatorijalna Gvineja",
90
88
  gr: "Grčka",
91
- gs: "Južna Džordžija i Južna Sendvič ostrva",
92
89
  gt: "Gvatemala",
93
90
  gu: "Guam",
94
91
  gw: "Gvineja-Bisao",
95
92
  gy: "Gvajana",
96
93
  hk: "Hong Kong (SAR Kina)",
97
- hm: "Herd i arhipelag MekDonald",
98
94
  hn: "Honduras",
99
95
  hr: "Hrvatska",
100
96
  ht: "Haiti",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Pakistan",
180
176
  pl: "Poljska",
181
177
  pm: "Sveti Petar i Mikelon",
182
- pn: "Pitkernska Ostrva",
183
178
  pr: "Porto Riko",
184
179
  ps: "Palestinska Teritorija",
185
180
  pt: "Portugal",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "Esvatini",
215
210
  tc: "Ostrva Turks i Kaikos",
216
211
  td: "Čad",
217
- tf: "Francuske Južne Teritorije",
218
212
  tg: "Togo",
219
213
  th: "Tajland",
220
214
  tj: "Tadžikistan",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Tanzanija",
231
225
  ua: "Ukrajina",
232
226
  ug: "Uganda",
233
- um: "Američka Vanjska Ostrva",
234
227
  us: "Sjedinjene Države",
235
228
  uy: "Urugvaj",
236
229
  uz: "Uzbekistan",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Albània",
8
8
  am: "Armènia",
9
9
  ao: "Angola",
10
- aq: "Antàrtida",
11
10
  ar: "Argentina",
12
11
  as: "Samoa Nord-americana",
13
12
  at: "Àustria",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Brasil",
33
32
  bs: "Bahames",
34
33
  bt: "Bhutan",
35
- bv: "Bouvet",
36
34
  bw: "Botswana",
37
35
  by: "Belarús",
38
36
  bz: "Belize",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Guadeloupe",
89
87
  gq: "Guinea Equatorial",
90
88
  gr: "Grècia",
91
- gs: "Illes Geòrgia del Sud i Sandwich del Sud",
92
89
  gt: "Guatemala",
93
90
  gu: "Guam",
94
91
  gw: "Guinea Bissau",
95
92
  gy: "Guyana",
96
93
  hk: "Hong Kong (RAE Xina)",
97
- hm: "Illa Heard i Illes McDonald",
98
94
  hn: "Hondures",
99
95
  hr: "Croàcia",
100
96
  ht: "Haití",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Pakistan",
180
176
  pl: "Polònia",
181
177
  pm: "Saint-Pierre-et-Miquelon",
182
- pn: "Illes Pitcairn",
183
178
  pr: "Puerto Rico",
184
179
  ps: "Territoris palestins",
185
180
  pt: "Portugal",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "eSwatini",
215
210
  tc: "Illes Turks i Caicos",
216
211
  td: "Txad",
217
- tf: "Territoris Australs Francesos",
218
212
  tg: "Togo",
219
213
  th: "Tailàndia",
220
214
  tj: "Tadjikistan",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Tanzània",
231
225
  ua: "Ucraïna",
232
226
  ug: "Uganda",
233
- um: "Illes Perifèriques Menors dels EUA",
234
227
  us: "Estats Units",
235
228
  uy: "Uruguai",
236
229
  uz: "Uzbekistan",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Albánie",
8
8
  am: "Arménie",
9
9
  ao: "Angola",
10
- aq: "Antarktida",
11
10
  ar: "Argentina",
12
11
  as: "Americká Samoa",
13
12
  at: "Rakousko",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Brazílie",
33
32
  bs: "Bahamy",
34
33
  bt: "Bhútán",
35
- bv: "Bouvetův ostrov",
36
34
  bw: "Botswana",
37
35
  by: "Bělorusko",
38
36
  bz: "Belize",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Guadeloupe",
89
87
  gq: "Rovníková Guinea",
90
88
  gr: "Řecko",
91
- gs: "Jižní Georgie a Jižní Sandwichovy ostrovy",
92
89
  gt: "Guatemala",
93
90
  gu: "Guam",
94
91
  gw: "Guinea-Bissau",
95
92
  gy: "Guyana",
96
93
  hk: "Hongkong – ZAO Číny",
97
- hm: "Heardův ostrov a McDonaldovy ostrovy",
98
94
  hn: "Honduras",
99
95
  hr: "Chorvatsko",
100
96
  ht: "Haiti",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Pákistán",
180
176
  pl: "Polsko",
181
177
  pm: "Saint-Pierre a Miquelon",
182
- pn: "Pitcairnovy ostrovy",
183
178
  pr: "Portoriko",
184
179
  ps: "Palestinská území",
185
180
  pt: "Portugalsko",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "Svazijsko",
215
210
  tc: "Turks a Caicos",
216
211
  td: "Čad",
217
- tf: "Francouzská jižní území",
218
212
  tg: "Togo",
219
213
  th: "Thajsko",
220
214
  tj: "Tádžikistán",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Tanzanie",
231
225
  ua: "Ukrajina",
232
226
  ug: "Uganda",
233
- um: "Menší odlehlé ostrovy USA",
234
227
  us: "Spojené státy",
235
228
  uy: "Uruguay",
236
229
  uz: "Uzbekistán",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Albanien",
8
8
  am: "Armenien",
9
9
  ao: "Angola",
10
- aq: "Antarktis",
11
10
  ar: "Argentinien",
12
11
  as: "Amerikanisch-Samoa",
13
12
  at: "Österreich",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Brasilien",
33
32
  bs: "Bahamas",
34
33
  bt: "Bhutan",
35
- bv: "Bouvetinsel",
36
34
  bw: "Botsuana",
37
35
  by: "Belarus",
38
36
  bz: "Belize",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Guadeloupe",
89
87
  gq: "Äquatorialguinea",
90
88
  gr: "Griechenland",
91
- gs: "Südgeorgien und die Südlichen Sandwichinseln",
92
89
  gt: "Guatemala",
93
90
  gu: "Guam",
94
91
  gw: "Guinea-Bissau",
95
92
  gy: "Guyana",
96
93
  hk: "Sonderverwaltungsregion Hongkong",
97
- hm: "Heard und McDonaldinseln",
98
94
  hn: "Honduras",
99
95
  hr: "Kroatien",
100
96
  ht: "Haiti",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Pakistan",
180
176
  pl: "Polen",
181
177
  pm: "St. Pierre und Miquelon",
182
- pn: "Pitcairninseln",
183
178
  pr: "Puerto Rico",
184
179
  ps: "Palästinensische Autonomiegebiete",
185
180
  pt: "Portugal",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "Eswatini",
215
210
  tc: "Turks- und Caicosinseln",
216
211
  td: "Tschad",
217
- tf: "Französische Süd- und Antarktisgebiete",
218
212
  tg: "Togo",
219
213
  th: "Thailand",
220
214
  tj: "Tadschikistan",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Tansania",
231
225
  ua: "Ukraine",
232
226
  ug: "Uganda",
233
- um: "Amerikanische Überseeinseln",
234
227
  us: "Vereinigte Staaten",
235
228
  uy: "Uruguay",
236
229
  uz: "Usbekistan",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Αλβανία",
8
8
  am: "Αρμενία",
9
9
  ao: "Αγκόλα",
10
- aq: "Ανταρκτική",
11
10
  ar: "Αργεντινή",
12
11
  as: "Αμερικανική Σαμόα",
13
12
  at: "Αυστρία",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Βραζιλία",
33
32
  bs: "Μπαχάμες",
34
33
  bt: "Μπουτάν",
35
- bv: "Νήσος Μπουβέ",
36
34
  bw: "Μποτσουάνα",
37
35
  by: "Λευκορωσία",
38
36
  bz: "Μπελίζ",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Γουαδελούπη",
89
87
  gq: "Ισημερινή Γουινέα",
90
88
  gr: "Ελλάδα",
91
- gs: "Νήσοι Νότια Γεωργία και Νότιες Σάντουιτς",
92
89
  gt: "Γουατεμάλα",
93
90
  gu: "Γκουάμ",
94
91
  gw: "Γουινέα Μπισάου",
95
92
  gy: "Γουιάνα",
96
93
  hk: "Χονγκ Κονγκ ΕΔΠ Κίνας",
97
- hm: "Νήσοι Χερντ και Μακντόναλντ",
98
94
  hn: "Ονδούρα",
99
95
  hr: "Κροατία",
100
96
  ht: "Αϊτή",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Πακιστάν",
180
176
  pl: "Πολωνία",
181
177
  pm: "Σεν Πιερ και Μικελόν",
182
- pn: "Νήσοι Πίτκερν",
183
178
  pr: "Πουέρτο Ρίκο",
184
179
  ps: "Παλαιστινιακά Εδάφη",
185
180
  pt: "Πορτογαλία",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "Σουαζιλάνδη",
215
210
  tc: "Νήσοι Τερκς και Κάικος",
216
211
  td: "Τσαντ",
217
- tf: "Γαλλικά Νότια Εδάφη",
218
212
  tg: "Τόγκο",
219
213
  th: "Ταϊλάνδη",
220
214
  tj: "Τατζικιστάν",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Τανζανία",
231
225
  ua: "Ουκρανία",
232
226
  ug: "Ουγκάντα",
233
- um: "Απομακρυσμένες Νησίδες ΗΠΑ",
234
227
  us: "Ηνωμένες Πολιτείες",
235
228
  uy: "Ουρουγουάη",
236
229
  uz: "Ουζμπεκιστάν",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Albania",
8
8
  am: "Armenia",
9
9
  ao: "Angola",
10
- aq: "Antarctica",
11
10
  ar: "Argentina",
12
11
  as: "American Samoa",
13
12
  at: "Austria",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Brazil",
33
32
  bs: "Bahamas",
34
33
  bt: "Bhutan",
35
- bv: "Bouvet Island",
36
34
  bw: "Botswana",
37
35
  by: "Belarus",
38
36
  bz: "Belize",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Guadeloupe",
89
87
  gq: "Equatorial Guinea",
90
88
  gr: "Greece",
91
- gs: "South Georgia & South Sandwich Islands",
92
89
  gt: "Guatemala",
93
90
  gu: "Guam",
94
91
  gw: "Guinea-Bissau",
95
92
  gy: "Guyana",
96
93
  hk: "Hong Kong SAR China",
97
- hm: "Heard & McDonald Islands",
98
94
  hn: "Honduras",
99
95
  hr: "Croatia",
100
96
  ht: "Haiti",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Pakistan",
180
176
  pl: "Poland",
181
177
  pm: "St. Pierre & Miquelon",
182
- pn: "Pitcairn Islands",
183
178
  pr: "Puerto Rico",
184
179
  ps: "Palestinian Territories",
185
180
  pt: "Portugal",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "Eswatini",
215
210
  tc: "Turks & Caicos Islands",
216
211
  td: "Chad",
217
- tf: "French Southern Territories",
218
212
  tg: "Togo",
219
213
  th: "Thailand",
220
214
  tj: "Tajikistan",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Tanzania",
231
225
  ua: "Ukraine",
232
226
  ug: "Uganda",
233
- um: "U.S. Outlying Islands",
234
227
  us: "United States",
235
228
  uy: "Uruguay",
236
229
  uz: "Uzbekistan",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "Albania",
8
8
  am: "Armenia",
9
9
  ao: "Angola",
10
- aq: "Antártida",
11
10
  ar: "Argentina",
12
11
  as: "Samoa Americana",
13
12
  at: "Austria",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "Brasil",
33
32
  bs: "Bahamas",
34
33
  bt: "Bután",
35
- bv: "Isla Bouvet",
36
34
  bw: "Botsuana",
37
35
  by: "Bielorrusia",
38
36
  bz: "Belice",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "Guadalupe",
89
87
  gq: "Guinea Ecuatorial",
90
88
  gr: "Grecia",
91
- gs: "Islas Georgia del Sur y Sandwich del Sur",
92
89
  gt: "Guatemala",
93
90
  gu: "Guam",
94
91
  gw: "Guinea-Bisáu",
95
92
  gy: "Guyana",
96
93
  hk: "RAE de Hong Kong (China)",
97
- hm: "Islas Heard y McDonald",
98
94
  hn: "Honduras",
99
95
  hr: "Croacia",
100
96
  ht: "Haití",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "Pakistán",
180
176
  pl: "Polonia",
181
177
  pm: "San Pedro y Miquelón",
182
- pn: "Islas Pitcairn",
183
178
  pr: "Puerto Rico",
184
179
  ps: "Territorios Palestinos",
185
180
  pt: "Portugal",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "Esuatini",
215
210
  tc: "Islas Turcas y Caicos",
216
211
  td: "Chad",
217
- tf: "Territorios Australes Franceses",
218
212
  tg: "Togo",
219
213
  th: "Tailandia",
220
214
  tj: "Tayikistán",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "Tanzania",
231
225
  ua: "Ucrania",
232
226
  ug: "Uganda",
233
- um: "Islas menores alejadas de EE. UU.",
234
227
  us: "Estados Unidos",
235
228
  uy: "Uruguay",
236
229
  uz: "Uzbekistán",
@@ -7,7 +7,6 @@ const countryTranslations = {
7
7
  al: "آلبانی",
8
8
  am: "ارمنستان",
9
9
  ao: "آنگولا",
10
- aq: "جنوبگان",
11
10
  ar: "آرژانتین",
12
11
  as: "ساموآی امریکا",
13
12
  at: "اتریش",
@@ -32,7 +31,6 @@ const countryTranslations = {
32
31
  br: "برزیل",
33
32
  bs: "باهاما",
34
33
  bt: "بوتان",
35
- bv: "جزیرهٔ بووه",
36
34
  bw: "بوتسوانا",
37
35
  by: "بلاروس",
38
36
  bz: "بلیز",
@@ -88,13 +86,11 @@ const countryTranslations = {
88
86
  gp: "گوادلوپ",
89
87
  gq: "گینهٔ استوایی",
90
88
  gr: "یونان",
91
- gs: "جورجیای جنوبی و جزایر ساندویچ جنوبی",
92
89
  gt: "گواتمالا",
93
90
  gu: "گوام",
94
91
  gw: "گینهٔ بیسائو",
95
92
  gy: "گویان",
96
93
  hk: "هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین",
97
- hm: "هرد و جزایر مک‌دونالد",
98
94
  hn: "هندوراس",
99
95
  hr: "کرواسی",
100
96
  ht: "هائیتی",
@@ -179,7 +175,6 @@ const countryTranslations = {
179
175
  pk: "پاکستان",
180
176
  pl: "لهستان",
181
177
  pm: "سن پیر و میکلن",
182
- pn: "جزایر پیت‌کرن",
183
178
  pr: "پورتوریکو",
184
179
  ps: "سرزمین‌های فلسطینی",
185
180
  pt: "پرتغال",
@@ -214,7 +209,6 @@ const countryTranslations = {
214
209
  sz: "اسواتینی",
215
210
  tc: "جزایر تورکس و کایکوس",
216
211
  td: "چاد",
217
- tf: "سرزمین‌های جنوب فرانسه",
218
212
  tg: "توگو",
219
213
  th: "تایلند",
220
214
  tj: "تاجیکستان",
@@ -230,7 +224,6 @@ const countryTranslations = {
230
224
  tz: "تانزانیا",
231
225
  ua: "اوکراین",
232
226
  ug: "اوگاندا",
233
- um: "جزایر دورافتادهٔ ایالات متحده",
234
227
  us: "ایالات متحده",
235
228
  uy: "اروگوئه",
236
229
  uz: "ازبکستان",