change path

This commit is contained in:
Johannes
2022-06-18 22:43:41 +02:00
parent 16e637b0c8
commit 53cf662057
3 changed files with 9 additions and 6 deletions

View File

@@ -35,9 +35,9 @@ def build_locale_filestring(locale):
locale = locale.split("_")[0]
filename = f"{locale}.json"
dir_path = os.path.dirname(os.path.realpath(__file__))
path_frontend_file = os.path.join(dir_path, "translations", "frontend", filename)
path_backend_file = os.path.join(dir_path, "translations", "backend" , filename)
dir_path = os.getcwd()
path_frontend_file = os.path.join(dir_path, "apps", "nspanel-lovelace-ui", "luibackend", "translations", "frontend", filename)
path_backend_file = os.path.join(dir_path, "apps", "nspanel-lovelace-ui", "luibackend", "translations", "backend" , filename)
return path_frontend_file, path_backend_file
def lookup(path_frontend_file, path_backend_file, lookupstr):