1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-05 01:45:44 +00:00

tests: do not warn about missing translation if the key doesn't exist at all

otherwise code like the following raises an useless warning:

>>> try:
>>>   value = translate(somekey)
>>> except KeyError:
>>>   value = somekey  # use a literal value

as seen in click_tests/common.py _get_action_index
This commit is contained in:
matejcik 2025-02-18 12:21:59 +01:00 committed by matejcik
parent 0c77c5102a
commit c246ba4994

View File

@ -99,11 +99,15 @@ class Translation:
if tr is not None:
return tr
if self.lang != "en":
# check if the key exists in English first
retval = TRANSLATIONS["en"]._translate_raw(key)
# if not, a KeyError was raised so we fall through.
# otherwise, warn that the key is untranslated in target language.
warnings.warn(
f"Translation key '{key}' not found in '{self.lang}' translation file",
stacklevel=_stacklevel + 2,
)
return TRANSLATIONS["en"]._translate_raw(key)
return retval
raise KeyError(key)
def translate(self, key: str, _stacklevel: int = 0) -> str: