diff --git a/HMI/code_gen/localization/iobroker.py b/HMI/code_gen/localization/iobroker.py index b6dcb74d..6bc53529 100644 --- a/HMI/code_gen/localization/iobroker.py +++ b/HMI/code_gen/localization/iobroker.py @@ -57,6 +57,8 @@ def lookup(path_frontend_file, path_backend_file, lookupstr): def get_translation(locale, lookupstr): path_frontend_file, path_backend_file = build_locale_filestring(locale) res = lookup(path_frontend_file, path_backend_file, lookupstr) + if locale == "he_IL": + res = res[::-1] return res out = defaultdict(lambda: defaultdict(lambda: defaultdict(dict)))