Files
nspanel-lovelace-ui/apps/nspanel-lovelace-ui/luibackend/localization.py
2022-03-25 14:06:40 +01:00

12 lines
263 B
Python

translations = {
'de_DE': {
'ACTIVATE': "AKTIVIEREN",
'PRESS': "DRÜCKEN",
}
}
def get_translation(locale, input):
if locale in translations:
return translations.get(locale).get(input, input)
else:
return input