Amend regex pattern for tr identification

This commit is contained in:
jpirnay
2026-03-17 07:07:47 +01:00
parent 2419cc43bf
commit f23d01093e
+1 -1
View File
@@ -239,7 +239,7 @@ def find_used_string_keys(
if skip_filenames is None:
skip_filenames = _GENERATED_FILENAMES
pattern = re.compile(r"\bSTR_[A-Z0-9_]+\b")
pattern = re.compile(r"\bSTR_[A-Za-z0-9_]+\b")
used: Set[str] = set()
for src_dir in src_dirs: