Tactility/Translations/generate-all.py
Ken Van Hoeylandt 18a681a924 WIP
2025-08-25 00:37:16 +02:00

38 lines
1.2 KiB
Python

import os
from pathlib import Path
def get_project_root():
return Path(__file__).parent.parent.resolve()
def generate(csv_file, header_file, header_namespace, data_path):
csv_file_path = f"{get_project_root()}/Translations/{csv_file}"
if os.path.isfile(csv_file_path):
print(f"Processing {csv_file}")
script_path = f"{get_project_root()}/Translations/generate.py"
os.system(f"python {script_path} {csv_file} {header_file} {header_namespace} {data_path}")
else:
print(f"Skipping {csv_file} (not found)")
if __name__ == "__main__":
# Core translations
generate(
"Core.csv",
"Tactility/Include/Tactility/i18n/CoreTextResources.h",
"tt::i18n::core",
"Data/system/i18n/core"
)
# Launcher app
generate(
"Launcher.csv",
"Tactility/Private/Tactility/app/launcher/TextResources.h",
"tt::app::launcher::i18n",
"Data/system/app/Launcher/i18n"
)
# LocaleSettings app
generate(
"LocaleSettings.csv",
"Tactility/Private/Tactility/app/localesettings/TextResources.h",
"tt::app::localesettings::i18n",
"Data/system/app/LocaleSettings/i18n"
)