This commit is contained in:
24c02 2026-01-03 21:14:51 -05:00
parent 1d05664d2a
commit feb1d54495
2 changed files with 16 additions and 0 deletions

View file

@ -267,6 +267,7 @@ module CountryEnumable
VU: 240,
WF: 245,
WS: 193,
XK: 250,
YE: 247,
YT: 143,
ZA: 207,

View file

@ -0,0 +1,15 @@
# frozen_string_literal: true
# Kosovo uses the user-assigned code XK (not officially in ISO 3166-1, but widely recognized)
ISO3166::Data.register(
alpha2: "XK",
alpha3: "XKX",
country_code: "383",
name: "Kosovo",
names: ["Kosovo"],
unofficial_names: ["Kosovo", "Kosova", "Република Косово"],
number: "926",
region: "Europe",
subregion: "Southern Europe",
world_region: "EMEA"
)