mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-08-03 10:16:03 -04:00

This is a quick workaround (at the expense of data duplication) for having to generate the i18n data in JSON format from the embedded i18n resource data. Note, however, that at this point i18n resources are not included in the list of regular static resources. This will change in the next commit.
32 lines
1.2 KiB
Python
Executable File
32 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2020 Matthieu Gautier <mgautier@kymeria.fr>
|
|
#
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
from pathlib import Path
|
|
|
|
script_path = Path(__file__)
|
|
|
|
resource_file = script_path.parent / "i18n_resources_list.txt"
|
|
translation_dir = script_path.parent / "skin/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')
|