Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit 44d0c34

Browse files
committed
i18n: Fallback to english in retrieve_country_name
1 parent 466e38f commit 44d0c34

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

eduvpn/i18n.py

+3-10
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,9 @@ def extract_translation(d: Union[str, Dict[str, str]]):
7373

7474
def retrieve_country_name(country_code: str) -> str:
7575
country_map = _read_country_map()
76-
loc = locale.getlocale()
77-
if loc[0] is None:
78-
prefix = "en"
79-
else:
80-
prefix = loc[0][:2]
81-
if country_code in country_map:
82-
code = country_map[country_code]
83-
if prefix in code:
84-
return code[prefix]
85-
return country_code
76+
if country_code not in country_map:
77+
return country_code
78+
return extract_translation(country_map[country_code])
8679

8780

8881
def _read_country_map() -> dict:

0 commit comments

Comments
 (0)