sync_translations.py: Report number of missing strings

This commit is contained in:
Jules Aguillon 2023-08-05 17:27:56 +02:00
parent 9ea06594d1
commit 7ce0c6e37a

View File

@ -7,31 +7,41 @@ import glob
# - Sort in the same order as the baseline
# The baseline is 'values/strings.xml', which is english.
# Dict of strings. Key is the pair string name and product field (often None).
def parse_strings_file(file):
def key(ent): return ent.get("name"), ent.get("product")
resrcs = ET.parse(file).getroot()
return { key(ent): ent for ent in resrcs if ent.tag == "string" }
def dump_entry(out, entry, comment):
out.write(" ")
if comment: out.write("<!-- ")
out.write(ET.tostring(entry, "unicode").strip())
if comment: out.write(" -->")
out.write("\n")
def write_updated_strings(out, baseline, strings):
# Print the XML file back autoformatted. Takes the output of [sync].
def write_updated_strings(out, strings):
out.write('<?xml version="1.0" encoding="utf-8"?>\n<resources>\n')
for key, baseline_entry in baseline.items():
if key in strings:
dump_entry(out, strings[key], False)
else:
dump_entry(out, baseline_entry, True)
for key, string, comment in strings:
out.write(" ")
if comment: out.write("<!-- ")
out.write(ET.tostring(string, "unicode").strip())
if comment: out.write(" -->")
out.write("\n")
out.write('</resources>\n')
# Print whether string file is uptodate.
def print_status(fname, strings):
# Number of commented-out strings
c = sum(1 for _, _, comment in strings if comment)
status = "uptodate" if c == 0 else "missing %d strings" % c
print("%s: %s" % (fname, status))
# Returns a list of tuples (key, string, commented).
def sync(baseline, strings):
return [
(key, strings[key], False) if key in strings else
(key, base_string, True)
for key, base_string in baseline.items() ]
baseline = parse_strings_file("res/values/strings.xml")
for strings_file in glob.glob("res/values-*/strings.xml"):
print(strings_file)
strings = dict(parse_strings_file(strings_file))
strings = sync(baseline, dict(parse_strings_file(strings_file)))
with open(strings_file, "w", encoding="utf-8") as out:
write_updated_strings(out, baseline, strings)
write_updated_strings(out, strings)
print_status(strings_file, strings)