You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/mocks/trezortranslate_keys.pyi.mako

16 lines
337 B

# 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, text in sorted(en_data.items()):
${name}: str = ${json.dumps(text)}
% endfor