uncomment debug change

This commit is contained in:
Jann Stute
2024-12-23 21:49:44 +01:00
parent 399e4eb5fa
commit 2889cf7631

View File

@@ -74,7 +74,8 @@ class Translator:
return self[key].format(**kwargs)
def __getitem__(self, key: str) -> str:
return "???" # self._strings[key].value if key in self._strings else "Not Translated"
# return "???"
return self._strings[key].value if key in self._strings else "Not Translated"
Translations = Translator()