diff --git a/GPT_SoVITS/process_ckpt.py b/GPT_SoVITS/process_ckpt.py index ed64cf2..170dbb3 100644 --- a/GPT_SoVITS/process_ckpt.py +++ b/GPT_SoVITS/process_ckpt.py @@ -4,7 +4,7 @@ import traceback from collections import OrderedDict import torch -from i18n.i18n import I18nAuto +from tools.i18n.i18n import I18nAuto i18n = I18nAuto() def savee(ckpt, name, epoch, steps, hps): try: diff --git a/i18n/i18n.py b/tools/i18n/i18n.py similarity index 100% rename from i18n/i18n.py rename to tools/i18n/i18n.py diff --git a/i18n/locale/en_US.json b/tools/i18n/locale/en_US.json similarity index 100% rename from i18n/locale/en_US.json rename to tools/i18n/locale/en_US.json diff --git a/i18n/locale/es_ES.json b/tools/i18n/locale/es_ES.json similarity index 100% rename from i18n/locale/es_ES.json rename to tools/i18n/locale/es_ES.json diff --git a/i18n/locale/fr_FR.json b/tools/i18n/locale/fr_FR.json similarity index 100% rename from i18n/locale/fr_FR.json rename to tools/i18n/locale/fr_FR.json diff --git a/i18n/locale/it_IT.json b/tools/i18n/locale/it_IT.json similarity index 100% rename from i18n/locale/it_IT.json rename to tools/i18n/locale/it_IT.json diff --git a/i18n/locale/ja_JP.json b/tools/i18n/locale/ja_JP.json similarity index 100% rename from i18n/locale/ja_JP.json rename to tools/i18n/locale/ja_JP.json diff --git a/i18n/locale/ru_RU.json b/tools/i18n/locale/ru_RU.json similarity index 100% rename from i18n/locale/ru_RU.json rename to tools/i18n/locale/ru_RU.json diff --git a/i18n/locale/tr_TR.json b/tools/i18n/locale/tr_TR.json similarity index 100% rename from i18n/locale/tr_TR.json rename to tools/i18n/locale/tr_TR.json diff --git a/i18n/locale/zh_CN.json b/tools/i18n/locale/zh_CN.json similarity index 100% rename from i18n/locale/zh_CN.json rename to tools/i18n/locale/zh_CN.json diff --git a/i18n/locale/zh_HK.json b/tools/i18n/locale/zh_HK.json similarity index 100% rename from i18n/locale/zh_HK.json rename to tools/i18n/locale/zh_HK.json diff --git a/i18n/locale/zh_SG.json b/tools/i18n/locale/zh_SG.json similarity index 100% rename from i18n/locale/zh_SG.json rename to tools/i18n/locale/zh_SG.json diff --git a/i18n/locale/zh_TW.json b/tools/i18n/locale/zh_TW.json similarity index 100% rename from i18n/locale/zh_TW.json rename to tools/i18n/locale/zh_TW.json diff --git a/i18n/locale_diff.py b/tools/i18n/locale_diff.py similarity index 100% rename from i18n/locale_diff.py rename to tools/i18n/locale_diff.py diff --git a/i18n/scan_i18n.py b/tools/i18n/scan_i18n.py similarity index 100% rename from i18n/scan_i18n.py rename to tools/i18n/scan_i18n.py diff --git a/tools/uvr5/webui.py b/tools/uvr5/webui.py index 051ece5..11b39f5 100644 --- a/tools/uvr5/webui.py +++ b/tools/uvr5/webui.py @@ -1,7 +1,7 @@ import os import traceback,gradio as gr import logging -from i18n.i18n import I18nAuto +from tools.i18n.i18n import I18nAuto i18n = I18nAuto() logger = logging.getLogger(__name__) diff --git a/webui.py b/webui.py index 703c597..e51b9e6 100644 --- a/webui.py +++ b/webui.py @@ -37,7 +37,7 @@ from config import ( webui_port_uvr5, webui_port_subfix, ) -from i18n.i18n import I18nAuto +from tools.i18n.i18n import I18nAuto i18n = I18nAuto() from multiprocessing import cpu_count