Update config.toml only for generated languages

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2023-01-28 17:44:35 +02:00
parent 30e0399194
commit ade4d17353

View file

@ -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: