You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/tools/translations/helpers.py

11 lines
240 B

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"]
ALL_LANGUAGES = [ENGLISH_LANG] + FOREIGN_LANGUAGES