From 740625fd2b385b5633efeff7e64874f29c41902f Mon Sep 17 00:00:00 2001 From: Ftps <63702646+Tps-F@users.noreply.github.com> Date: Mon, 28 Aug 2023 21:58:36 +0900 Subject: [PATCH] fix i18n --- i18n/i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n/i18n.py b/i18n/i18n.py index f4fb9b3..a64ee23 100644 --- a/i18n/i18n.py +++ b/i18n/i18n.py @@ -15,7 +15,7 @@ class I18nAuto: language = locale.getdefaultlocale()[ 0 ] # getlocale can't identify the system's language ((None, None)) - if not os.path.exists(f"./lib/i18n/{language}.json"): + if not os.path.exists(f"./i18n/locale/{language}.json"): language = "en_US" self.language = language # print("Use Language:", language)