From e11465c9699110067011596f48f52b8ae9ab653c Mon Sep 17 00:00:00 2001 From: Amit Kotlovski Date: Thu, 11 Jun 2020 21:44:18 +0300 Subject: [PATCH] Remove diacritic signs from Israel country name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Users searching for Israel will never type the diacritic signs when searching for the country name. Because the diacritics are there, a search for "ישראל" will not find the correct dial code, as this is a different Unicode string. --- lib/country_codes.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/country_codes.dart b/lib/country_codes.dart index 826d931..0f650be 100644 --- a/lib/country_codes.dart +++ b/lib/country_codes.dart @@ -530,7 +530,7 @@ List> codes = [ "dial_code": "+44", }, { - "name": "יִשְׂרָאֵל", + "name": "ישראל", "code": "IL", "dial_code": "+972", },