diff --git a/frappe/geo/country_info.py b/frappe/geo/country_info.py index dd2c0eb56a..2ba57bd419 100644 --- a/frappe/geo/country_info.py +++ b/frappe/geo/country_info.py @@ -50,7 +50,7 @@ def get_translated_countries(): # country names && currencies for country, info in get_all().items(): country_name = locale.territories.get((info.get("code") or "").upper()) - if country_name: + if country_name and country != country_name: translated_dict[country] = country_name return translated_dict