mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2025-12-23 16:04:25 +01:00
12 lines
263 B
Python
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 |