From e2f058f59d4f51e4d1463cc75677232377a4bf0f Mon Sep 17 00:00:00 2001 From: Timofey Date: Thu, 8 Sep 2016 18:16:36 +0300 Subject: [PATCH] Modified strings.txt formatter to place en-GB after en. --- tools/python/find_untranslated_strings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/find_untranslated_strings.py b/tools/python/find_untranslated_strings.py index 80708f8c94..51084e4a00 100755 --- a/tools/python/find_untranslated_strings.py +++ b/tools/python/find_untranslated_strings.py @@ -14,7 +14,7 @@ MANY_DOTS = re.compile(r"\.{4,}") SPACE_PUNCTUATION = re.compile(r"\s[.,?!:;]") PLACEHOLDERS = re.compile(r"(%\d*\$@|%[@dqus]|\^)") -ITUNES_LANGS = ["en", "ru", "ar", "cs", "da", "nl", "fi", "fr", "de", "hu", "id", "it", "ja", "ko", "nb", "pl", "pt", "ro", "sl", "es", "sv", "th", "tr", "uk", "vi", "zh-Hans", "zh-Hant"] +ITUNES_LANGS = ["en", "en-GB", "ru", "ar", "cs", "da", "nl", "fi", "fr", "de", "hu", "id", "it", "ja", "ko", "nb", "pl", "pt", "ro", "sl", "es", "sv", "th", "tr", "uk", "vi", "zh-Hans", "zh-Hant"] SIMILARITY_THRESHOLD = 20.0 #%