🎨 轉移 GUI 語系檔案結構

This commit is contained in:
Minidoracat 2025-06-05 05:50:19 +08:00
parent 5f6e8d1eef
commit 2ed1012f38
5 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class I18nManager:
self._supported_languages = ['zh-TW', 'en', 'zh-CN'] self._supported_languages = ['zh-TW', 'en', 'zh-CN']
self._fallback_language = 'en' self._fallback_language = 'en'
self._config_file = self._get_config_file_path() self._config_file = self._get_config_file_path()
self._locales_dir = Path(__file__).parent / "locales" self._locales_dir = Path(__file__).parent / "gui" / "locales"
# 載入翻譯 # 載入翻譯
self._load_all_translations() self._load_all_translations()