RVC / i18n.py
fantasyfish's picture
Initial commit
4de32eb
raw
history blame contribute delete
868 Bytes
import locale
import json
import os
now_dir = os.path.dirname(__file__)
def load_language_list(language):
with open(f"%s/i18n/{language}.json"%now_dir, "r", encoding="utf-8") as f:
language_list = json.load(f)
return language_list
class I18nAuto:
def __init__(self, language=None):
if language in ["Auto", None]:
language = locale.getdefaultlocale()[
0
] # getlocale can't identify the system's language ((None, None))
if not os.path.exists(f"%s/i18n/{language}.json"%now_dir):
language = "en_US"
self.language = language
# print("Use Language:", language)
self.language_map = load_language_list(language)
def __call__(self, key):
return self.language_map.get(key, key)
def print(self):
print("Use Language:", self.language)