Skip to content

Commit

Permalink
Fix Incorrect City Spelling in uk_UA locale (#2084)
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4zzy authored Aug 30, 2024
1 parent b51f852 commit 93ffa73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions faker/providers/automotive/uk_UA/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ class Provider(AutomotiveProvider):
"Kyiv_reg": (("AI", "KI", "TI", "ME"), "10"),
"Zhytomyr": (("AM", "KM", "TM", "MV"), "06"),
"Zakarpattia": (("AO", "KO", "MT", "MO"), "07"),
"Zaporizhia": (("AR", "KR", "TR", "MR"), "08"),
"Zaporizhzhia": (("AR", "KR", "TR", "MR"), "08"),
"IvanoFrankivsk": (("AT", "KT", "TO", "XS"), "09"),
"Kirovohrad": (("BA", "NA", "XA", "EA"), "12"),
"Luhansk": (("BB", "NV", "EE", "EV"), "13"),
"Lviv": (("BS", "NS", "SS", "ES"), "14"),
"Mykolaiv": (("BE", "NE", "XE", "XN"), "15"),
"Odessa": (("BN", "NN", "OO", "EN"), "16"),
"Odesa": (("BN", "NN", "OO", "EN"), "16"),
"Poltava": (("BI", "NI", "XI", "EI"), "17"),
"Rivne": (("BK", "NK", "XK", "EK"), "18"),
"Sumy": (("BM", "NM", "XM", "EM"), "19"),
"Ternopil": (("BO", "NO", "XO", "EO"), "20"),
"Kharkiv": (("AX", "KX", "XX", "EX"), "21"),
"Kherson": (("BT", "NT", "XT", "ET"), "22"),
"Khmelnytsky": (("BX", "NX", "OX", "RX"), "23"),
"Khmelnytskyi": (("BX", "NX", "OX", "RX"), "23"),
"Cherkasy": (("SA", "IA", "OA", "RA"), "24"),
"Chernihiv": (("SV", "IV", "OV", "RV"), "25"),
"Chernivtsi": (("SE", "IE", "OE", "RE"), "26"),
Expand Down
4 changes: 2 additions & 2 deletions faker/providers/date_time/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ def _rand_seconds(self, start_datetime: int, end_datetime: int) -> float:
),
Country(
timezones=[
"Europe/Kiev",
"Europe/Kyiv",
"Europe/Uzhgorod",
"Europe/Zaporozhye",
"Europe/Simferopol",
Expand All @@ -1435,7 +1435,7 @@ def _rand_seconds(self, start_datetime: int, end_datetime: int) -> float:
alpha_3_code="UKR",
continent="Europe",
name="Ukraine",
capital="Kiev",
capital="Kyiv",
),
Country(
timezones=["Africa/Kampala"],
Expand Down

0 comments on commit 93ffa73

Please sign in to comment.