[strings] Fix messy formatting of countries_names.txt

This huge diff is necessary to re-enable automatic tooling.

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2024-01-07 10:39:04 +02:00
parent 8357450694
commit a9973ec907
4 changed files with 16573 additions and 16567 deletions

View file

@ -4,8 +4,11 @@ on:
pull_request:
paths:
- .github/workflows/strings-check.yaml # Run check on self change
- data/strings/strings.txt
- data/strings/types_strings.txt
- data/strings/sound.txt
- data/countries_names.txt
- data/strings/*
- iphone/plist.txt
- tools/python/strings_utils.py
jobs:
@ -19,8 +22,10 @@ jobs:
with:
python-version: '3'
- name: Validate strings.txt and types_strings.txt files
- name: Validate string files
shell: bash
run: |
./tools/python/strings_utils.py --validate
./tools/python/strings_utils.py --types-strings --validate
for f in data/strings/strings.txt data/strings/types_strings.txt data/strings/sound.txt data/countries_names.txt iphone/plist.txt; do
./tools/python/strings_utils.py --validate $f -o
done;
git diff --exit-code

File diff suppressed because it is too large Load diff

View file

@ -1369,8 +1369,8 @@
en = Take the fifth exit.
ar = اسلك المخرج الخامس.
be = Збочце на пяты з'езд.
cs = Vyjeďte pátým výjezdem.
ca = Agafeu la cinquena sortida.
cs = Vyjeďte pátým výjezdem.
da = Tag den femte afkørsel.
de = Nehmen Sie die fünfte Ausfahrt.
el = Πάρτε την πέμπτη έξοδο.
@ -2506,8 +2506,8 @@
de = Blitzer voraus
el = Κάμερα παρακάτω
es = Cámara adelante
eu = Kamera aurrera
es-MX = Cámara próxima
eu = Kamera aurrera
fa = دوربین کنترل سرعت در نزدیکی
fi = Edessä on kamera
fr = Caméra devant

View file

@ -332,6 +332,12 @@ class StringsTxt:
if target_file is None:
target_file = self.strings_path
if target_file.endswith('countries_names.txt'):
section_padding = 0 * " "
key_padding = 2 * " "
else:
section_padding = 2 * " "
key_padding = 4 * " "
with open(target_file, "w", encoding='utf-8') as outfile:
for key in self.keys_in_order:
# TODO: sort definitions and sections too?
@ -345,24 +351,24 @@ class StringsTxt:
before_block = "\n"
continue
outfile.write("{0} {1}\n".format(before_block, key))
outfile.write("{0}{1}{2}\n".format(before_block, section_padding, key))
before_block = "\n"
ref_tran = {}
if key in self.comments_tags_refs:
for k, v in self.comments_tags_refs[key].items():
outfile.write(" {0} = {1}\n".format(k, v))
outfile.write("{0}{1} = {2}\n".format(key_padding, k, v))
if not keep_resolved and k == "ref":
ref_tran = self.translations.get("[{0}]".format(v))
self._write_translations_for_langs(outfile, sorted_langs, tran, ref_tran)
self._write_translations_for_langs(outfile, sorted_langs, tran, ref_tran, key_padding)
def _write_translations_for_langs(self, outfile, langs, tran, ref_tran):
def _write_translations_for_langs(self, outfile, langs, tran, ref_tran, key_padding):
for lang in langs:
# don't output translation if it's duplicated in referenced definition
if lang in tran and tran[lang] != ref_tran.get(lang):
outfile.write(" {0} = {1}\n".format(
lang, tran[lang].replace("...", "")
outfile.write("{0}{1} = {2}\n".format(
key_padding, lang, tran[lang].replace("...", "")
))
def _compare_blocks(self, key_1, key_2):