1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-29 00:31:02 +00:00
trezor-firmware/core/mocks/trezortranslate_keys.pyi.mako

21 lines
481 B
Plaintext
Raw Normal View History

# generated from ${THIS_FILE.name}
# (by running `make templates` in `core`)
# do not edit manually!
<%
import json
en_file = ROOT / "core" / "translations" / "en.json"
en_data = json.loads(en_file.read_text())["translations"]
%>\
class TR:
% for name, value in sorted(en_data.items()):
<%
if isinstance(value, dict):
# For simplicity, use the first model's text for the stubs.
value, *_ = value.values()
%>\
${name}: str = ${json.dumps(value)}
% endfor