mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
777ad11bec
Partially added TR.
11 lines
258 B
Python
11 lines
258 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", "tr"]
|
|
ALL_LANGUAGES = [ENGLISH_LANG] + FOREIGN_LANGUAGES
|