1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-20 21:48:14 +00:00
trezor-firmware/core/tools/translations/helpers.py
2025-06-02 11:42:34 +02:00

11 lines
252 B
Python

from pathlib import Path
HERE = Path(__file__).parent
CORE = HERE.parent.parent
TRANSLATIONS_DIR = CORE / "translations"
ENGLISH_LANG = "en"
FOREIGN_LANGUAGES = ["cs", "de", "es", "fr", "it", "pt"]
ALL_LANGUAGES = [ENGLISH_LANG] + FOREIGN_LANGUAGES