From ade4d1735308939fcf2956636697a27732a9ab60 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Sat, 28 Jan 2023 17:44:35 +0200 Subject: [PATCH] Update config.toml only for generated languages Signed-off-by: Roman Tsisyk --- tools/update-zola-translations.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/update-zola-translations.py b/tools/update-zola-translations.py index 96b0ab36..b9404a06 100755 --- a/tools/update-zola-translations.py +++ b/tools/update-zola-translations.py @@ -21,8 +21,11 @@ with open(ZOLA_CONFIG_TOML, "r") as f: # Merge changes from .po files into config.yaml languages = config['languages'] sources = config['translations'] -for po_path in glob('po/content.*.po'): - lang = po_path.removeprefix('po/content.').removesuffix('.po') +for index_path in glob('content/_index.*.md'): + lang = index_path.removeprefix('content/_index.').removesuffix('.md') + po_path = f"po/content.{lang}.po" + if not os.path.exists(po_path): + continue # Add a new section to TOML if needed if lang not in languages: