From fecccafba4e17757c9aac9da3c8956d2ffd5619a Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sun, 7 Jul 2024 01:20:16 +0300 Subject: [PATCH] [tools] Fixed clean_strings_txt.py to include iOS app tips Signed-off-by: Alexander Borsuk --- tools/python/clean_strings_txt.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/python/clean_strings_txt.py b/tools/python/clean_strings_txt.py index 8d2815f9a7..7f1a4970eb 100755 --- a/tools/python/clean_strings_txt.py +++ b/tools/python/clean_strings_txt.py @@ -25,6 +25,7 @@ CORE_RE = re.compile(r'GetLocalizedString\("(.*?)"\)') IOS_RE = re.compile(r'L\(.*?"(\w+)".*?(?:"(\w+)")?\)') IOS_NS_RE = re.compile(r'NSLocalizedString\(\s*?@?"(\w+)"') IOS_XML_RE = re.compile(r'value=\"(.*?)\"') +IOS_APPTIPS_RE = re.compile(r'app_tip_\d\d') ANDROID_JAVA_RE = re.compile(r'R\.string\.([\w_]*)') ANDROID_JAVA_PLURAL_RE = re.compile(r'R\.plurals\.([\w_]*)') @@ -64,6 +65,11 @@ def grep_ios(): logging.info("Found in iOS: {0}".format(len(ret))) ret.update(get_hardcoded()) + # iOS code scans resources for all available app_tip_XX strings. + grep = "grep app_tip_ {0}/data/strings/strings.txt".format(OMIM_ROOT) + ret2 = exec_shell(grep) + ret.update(parenthesize(strings_from_grepped(ret2, IOS_APPTIPS_RE))) + return ret