diff --git a/i18n/locale/en_US.json b/i18n/locale/en_US.json index 292a915c..d6426cd5 100644 --- a/i18n/locale/en_US.json +++ b/i18n/locale/en_US.json @@ -7,6 +7,7 @@ "ASR 模型": "ASR model", "ASR 模型尺寸": "ASR model size", "ASR 语言设置": "ASR language", + "ASR 精度设置": "ASR precision", "模型切换": "Model switch", "是否开启dpo训练选项(实验性)": "Enable DPO training (experimental feature)", "开启无参考文本模式。不填参考文本亦相当于开启。": "Enable no reference mode. If you don't fill 'Text for reference audio', no reference mode will be enabled.", diff --git a/i18n/locale/zh_CN.json b/i18n/locale/zh_CN.json index e6639c51..23b0a7d0 100644 --- a/i18n/locale/zh_CN.json +++ b/i18n/locale/zh_CN.json @@ -7,6 +7,7 @@ "ASR 模型": "ASR 模型", "ASR 模型尺寸": "ASR 模型尺寸", "ASR 语言设置": "ASR 语言设置", + "ASR 精度设置": "ASR 精度设置", "模型切换": "模型切换", "是否开启dpo训练选项(实验性)": "是否开启dpo训练选项(实验性)", "开启无参考文本模式。不填参考文本亦相当于开启。": "开启无参考文本模式。不填参考文本亦相当于开启。", diff --git a/webui.py b/webui.py index 9154a47c..63f3089c 100644 --- a/webui.py +++ b/webui.py @@ -755,9 +755,9 @@ with gr.Blocks(title="GPT-SoVITS WebUI") as app: choices = ["float32"], interactive = True, value="float32" - ) + ) with gr.Row(): - asr_info = gr.Textbox(label=i18n("ASR进程输出信息")) + asr_info = gr.Textbox(label=i18n("ASR进程输出信息")) def change_lang_choices(key): #根据选择的模型修改可选的语言 # return gr.Dropdown(choices=asr_dict[key]['lang'])