Add german translation

This commit is contained in:
Yohann D'ANELLO
2020-11-28 16:22:06 +01:00
parent 6b09d488b6
commit 9f0a29302d
9 changed files with 224 additions and 7 deletions

View File

@ -14,7 +14,7 @@ class Translator:
Translator.setlocale defines the language of the strings,
then gettext() translates the message.
"""
SUPPORTED_LOCALES: List[str] = ["en", "fr"]
SUPPORTED_LOCALES: List[str] = ["de", "en", "fr"]
locale: str = "en"
translators: dict = {}