From 9031ac9a92b4d36c20f8f78e6af7c24f2348d064 Mon Sep 17 00:00:00 2001 From: Blaise <133521603+blaise-tk@users.noreply.github.com> Date: Tue, 16 Jan 2024 17:04:43 +0100 Subject: [PATCH] change i18n folder --- GPT_SoVITS/process_ckpt.py | 2 +- {i18n => tools/i18n}/i18n.py | 0 {i18n => tools/i18n}/locale/en_US.json | 0 {i18n => tools/i18n}/locale/es_ES.json | 0 {i18n => tools/i18n}/locale/fr_FR.json | 0 {i18n => tools/i18n}/locale/it_IT.json | 0 {i18n => tools/i18n}/locale/ja_JP.json | 0 {i18n => tools/i18n}/locale/ru_RU.json | 0 {i18n => tools/i18n}/locale/tr_TR.json | 0 {i18n => tools/i18n}/locale/zh_CN.json | 0 {i18n => tools/i18n}/locale/zh_HK.json | 0 {i18n => tools/i18n}/locale/zh_SG.json | 0 {i18n => tools/i18n}/locale/zh_TW.json | 0 {i18n => tools/i18n}/locale_diff.py | 0 {i18n => tools/i18n}/scan_i18n.py | 0 tools/uvr5/webui.py | 2 +- webui.py | 2 +- 17 files changed, 3 insertions(+), 3 deletions(-) rename {i18n => tools/i18n}/i18n.py (100%) rename {i18n => tools/i18n}/locale/en_US.json (100%) rename {i18n => tools/i18n}/locale/es_ES.json (100%) rename {i18n => tools/i18n}/locale/fr_FR.json (100%) rename {i18n => tools/i18n}/locale/it_IT.json (100%) rename {i18n => tools/i18n}/locale/ja_JP.json (100%) rename {i18n => tools/i18n}/locale/ru_RU.json (100%) rename {i18n => tools/i18n}/locale/tr_TR.json (100%) rename {i18n => tools/i18n}/locale/zh_CN.json (100%) rename {i18n => tools/i18n}/locale/zh_HK.json (100%) rename {i18n => tools/i18n}/locale/zh_SG.json (100%) rename {i18n => tools/i18n}/locale/zh_TW.json (100%) rename {i18n => tools/i18n}/locale_diff.py (100%) rename {i18n => tools/i18n}/scan_i18n.py (100%) 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