mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2026-01-20 02:51:09 +00:00
feat: link zh_TW.json to zh_HK.json & zh_SG.json (#64)
* optimize: 精简未用到的配置项并在特征提取初步引入mps * add cmd argument: --noautoopen * fix: i18n * fix * fix * add genlocale workflow * add unitest * fix * fix * fix * 优化笔记本 * reintroduce Push changes * disable genlocale on non-main branch * 将笔记本checkout改为stable * 优化代码结构 * make lint happy * make lint happy * 优化 * 优化 * 优化 * fix path on windows okey pack * fix * fix * revert * revert * revert * fix: extract locale regex * feat: link zh_TW.json to zh_HK.json & zh_SG.json * fix #50: set default language to en_US
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import locale
|
||||
import json
|
||||
import os
|
||||
|
||||
|
||||
def load_language_list(language):
|
||||
@@ -14,6 +15,8 @@ class I18nAuto:
|
||||
language = "auto"
|
||||
if language == "auto":
|
||||
language = locale.getdefaultlocale()[0]
|
||||
if not os.path.exists(f"./locale/{language}.json"):
|
||||
language = "en_US"
|
||||
self.language = language
|
||||
print("Use Language:", language)
|
||||
self.language_map = load_language_list(language)
|
||||
|
||||
Reference in New Issue
Block a user