From 38e448e7e8c37fe33fe7d59241a599a904d932d5 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Mon, 3 Jan 2022 12:43:36 +0300 Subject: [PATCH] [tools] Rename find_untranslated_strings.py to strings_utils.py Signed-off-by: Konstantin Pastbin --- tools/python/clean_strings_txt.py | 2 +- tools/python/{find_untranslated_strings.py => strings_utils.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tools/python/{find_untranslated_strings.py => strings_utils.py} (100%) diff --git a/tools/python/clean_strings_txt.py b/tools/python/clean_strings_txt.py index eab41de359..de41556281 100755 --- a/tools/python/clean_strings_txt.py +++ b/tools/python/clean_strings_txt.py @@ -8,7 +8,7 @@ from collections import defaultdict from itertools import chain from os.path import abspath, isabs -from find_untranslated_strings import StringsTxt +from strings_utils import StringsTxt """ This script determines which strings are used in the platform code (iOS and diff --git a/tools/python/find_untranslated_strings.py b/tools/python/strings_utils.py similarity index 100% rename from tools/python/find_untranslated_strings.py rename to tools/python/strings_utils.py