Add script that finds strings that are missing translations, and translations that are unused

This commit is contained in:
Mathias Malmqvist
2025-10-02 03:02:59 +02:00
committed by dualshock-tools
parent 25f52689e1
commit 6a2feab7bd
3 changed files with 731 additions and 1 deletions

View File

@@ -39,7 +39,8 @@ def process_file(filename):
x[i] = ""
modified = True
del x[""]
if "" in x:
del x[""]
empties = []
for i in x:
if len(x[i].strip()) == 0: