diff --git a/static/generate_i18n_resources_list.py b/static/generate_i18n_resources_list.py new file mode 100755 index 000000000..ae9fa5e18 --- /dev/null +++ b/static/generate_i18n_resources_list.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 +# Copyright (c) 2020 Matthieu Gautier +# +# This file is part of libkiwix. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +from pathlib import Path + +script_path = Path(__file__) + +resource_file = script_path.parent / "i18n_resources_list.txt" +translation_dir = script_path.parent / "i18n" + +json_files = translation_dir.glob("*.json") +with open(resource_file, 'w', encoding="utf-8") as f: + for json in sorted(translation_dir.glob("*.json")): + if json.name == "qqq.json": + continue + f.write(str(json.relative_to(script_path.parent)) + '\n')