Spaces:
Sleeping
Sleeping
Keldos
commited on
Commit
·
f31a8f7
1
Parent(s):
4d0d461
WIP i18n: 完善补全翻译
Browse files- ChuanhuChatbot.py +8 -8
- locale/en_US.json +28 -5
- locale/ja_JP.json +26 -3
- locale/ko_KR.json +26 -3
- locale/ru_RU.json +7 -7
- locale/sv-SE.json +27 -4
- web_assets/stylesheet/ChuanhuChat.css +1 -0
ChuanhuChatbot.py
CHANGED
@@ -90,7 +90,7 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
90 |
gr.Markdown(i18n("默认保存于history文件夹"))
|
91 |
with gr.Row():
|
92 |
with gr.Column():
|
93 |
-
downloadFile = gr.File(interactive=True, label="下载/上传历史记录")
|
94 |
|
95 |
with gr.Column(elem_id="chuanhu-menu-footer"):
|
96 |
with gr.Row(elem_id="chuanhu-func-nav"):
|
@@ -130,7 +130,7 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
130 |
websearch_label=i18n("在线搜索"),
|
131 |
upload_file_label=i18n("上传文件"),
|
132 |
uploaded_files_label=i18n("知识库文件"),
|
133 |
-
uploaded_files_tip=i18n("
|
134 |
))
|
135 |
with gr.Row(elem_id="chatbot-input-tb-row"):
|
136 |
with gr.Column(min_width=225, scale=12):
|
@@ -165,7 +165,7 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
165 |
with gr.Column(elem_id="toolbox-area", scale=1):
|
166 |
with gr.Box(elem_id="chuanhu-toolbox"): # For CSS setting, there is an extra box. Don't remove it.
|
167 |
with gr.Row():
|
168 |
-
gr.Markdown("## 工具箱")
|
169 |
gr.HTML(get_html("close_btn.html").format(obj="toolbox"), elem_classes="close-btn")
|
170 |
with gr.Tabs(elem_id="chuanhu-toolbox-tabs"):
|
171 |
with gr.Tab(label=i18n("对话")):
|
@@ -298,7 +298,7 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
298 |
with gr.Box(elem_id="chuanhu-popup"):
|
299 |
with gr.Box(elem_id="chuanhu-setting"):
|
300 |
with gr.Row():
|
301 |
-
gr.Markdown("## 设置")
|
302 |
gr.HTML(get_html("close_btn.html").format(obj="box"),elem_classes="close-btn")
|
303 |
with gr.Tabs(elem_id="chuanhu-setting-tabs"):
|
304 |
with gr.Tab(label=i18n("模型")):
|
@@ -367,17 +367,17 @@ with gr.Blocks(theme=small_and_beautiful_theme) as demo:
|
|
367 |
|
368 |
with gr.Tab(label=i18n("关于"), elem_id="about-tab"):
|
369 |
gr.Markdown('<img alt="Chuanhu Chat logo" src="file=web_assets/icon/any-icon-512.png" style="max-width: 144px;">')
|
370 |
-
gr.Markdown("# 川虎Chat")
|
371 |
gr.HTML(get_html("footer.html").format(versions=versions_html()), elem_id="footer")
|
372 |
gr.Markdown(CHUANHU_DESCRIPTION, elem_id="description")
|
373 |
|
374 |
with gr.Box(elem_id="chuanhu-training"):
|
375 |
with gr.Row():
|
376 |
-
gr.Markdown(i18n("
|
377 |
gr.HTML(get_html("close_btn.html").format(obj="box"),elem_classes="close-btn")
|
378 |
with gr.Tabs(elem_id="chuanhu-training-tabs"):
|
379 |
-
with gr.Tab(label="OpenAI"+i18n("微调")):
|
380 |
-
openai_train_status = gr.Markdown(label=i18n("训练状态"), value=i18n("
|
381 |
|
382 |
with gr.Tab(label=i18n("准备数据集")):
|
383 |
dataset_preview_json = gr.JSON(label=i18n("数据集预览"), readonly=True)
|
|
|
90 |
gr.Markdown(i18n("默认保存于history文件夹"))
|
91 |
with gr.Row():
|
92 |
with gr.Column():
|
93 |
+
downloadFile = gr.File(interactive=True, label=i18n("下载/上传历史记录"))
|
94 |
|
95 |
with gr.Column(elem_id="chuanhu-menu-footer"):
|
96 |
with gr.Row(elem_id="chuanhu-func-nav"):
|
|
|
130 |
websearch_label=i18n("在线搜索"),
|
131 |
upload_file_label=i18n("上传文件"),
|
132 |
uploaded_files_label=i18n("知识库文件"),
|
133 |
+
uploaded_files_tip=i18n("在工具箱中管理知识库文件")
|
134 |
))
|
135 |
with gr.Row(elem_id="chatbot-input-tb-row"):
|
136 |
with gr.Column(min_width=225, scale=12):
|
|
|
165 |
with gr.Column(elem_id="toolbox-area", scale=1):
|
166 |
with gr.Box(elem_id="chuanhu-toolbox"): # For CSS setting, there is an extra box. Don't remove it.
|
167 |
with gr.Row():
|
168 |
+
gr.Markdown("## "+i18n("工具箱"))
|
169 |
gr.HTML(get_html("close_btn.html").format(obj="toolbox"), elem_classes="close-btn")
|
170 |
with gr.Tabs(elem_id="chuanhu-toolbox-tabs"):
|
171 |
with gr.Tab(label=i18n("对话")):
|
|
|
298 |
with gr.Box(elem_id="chuanhu-popup"):
|
299 |
with gr.Box(elem_id="chuanhu-setting"):
|
300 |
with gr.Row():
|
301 |
+
gr.Markdown("## "+i18n("设置"))
|
302 |
gr.HTML(get_html("close_btn.html").format(obj="box"),elem_classes="close-btn")
|
303 |
with gr.Tabs(elem_id="chuanhu-setting-tabs"):
|
304 |
with gr.Tab(label=i18n("模型")):
|
|
|
367 |
|
368 |
with gr.Tab(label=i18n("关于"), elem_id="about-tab"):
|
369 |
gr.Markdown('<img alt="Chuanhu Chat logo" src="file=web_assets/icon/any-icon-512.png" style="max-width: 144px;">')
|
370 |
+
gr.Markdown("# "+i18n("川虎Chat"))
|
371 |
gr.HTML(get_html("footer.html").format(versions=versions_html()), elem_id="footer")
|
372 |
gr.Markdown(CHUANHU_DESCRIPTION, elem_id="description")
|
373 |
|
374 |
with gr.Box(elem_id="chuanhu-training"):
|
375 |
with gr.Row():
|
376 |
+
gr.Markdown("## "+i18n("训练"))
|
377 |
gr.HTML(get_html("close_btn.html").format(obj="box"),elem_classes="close-btn")
|
378 |
with gr.Tabs(elem_id="chuanhu-training-tabs"):
|
379 |
+
with gr.Tab(label="OpenAI "+i18n("微调")):
|
380 |
+
openai_train_status = gr.Markdown(label=i18n("训练状态"), value=i18n("查看[使用介绍](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35)"))
|
381 |
|
382 |
with gr.Tab(label=i18n("准备数据集")):
|
383 |
dataset_preview_json = gr.JSON(label=i18n("数据集预览"), readonly=True)
|
locale/en_US.json
CHANGED
@@ -36,6 +36,7 @@
|
|
36 |
"💾 保存对话": "💾 Save Dialog",
|
37 |
"📝 导出为Markdown": "📝 Export as Markdown",
|
38 |
"默认保存于history文件夹": "Default save in history folder",
|
|
|
39 |
"高级": "Advanced",
|
40 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ Caution: Changes require care. ⚠️",
|
41 |
"参数": "Parameters",
|
@@ -94,15 +95,37 @@
|
|
94 |
"上传": "Upload",
|
95 |
"由于下面的原因,Google 拒绝返回 PaLM 的回答:\n\n": "Due to the following reasons, Google refuses to provide an answer to PaLM: \n\n",
|
96 |
"⚠️ 为保证API-Key安全,请在配置文件`config.json`中修改网络设置": "⚠️ To ensure the security of API-Key, please modify the network settings in the configuration file `config.json`.",
|
97 |
-
"网络": "Network
|
98 |
"暂时未知": "Unknown",
|
99 |
|
100 |
-
"
|
101 |
-
"
|
102 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
"对话": "Dialogue",
|
104 |
"拓展": "Extensions",
|
105 |
-
"上传文件": "Upload
|
106 |
"知识库": "Knowledge base",
|
107 |
"知识库文件": "Knowledge base file",
|
108 |
"在工具箱中管理知识库文件": "Manage knowledge base files in the toolbox",
|
|
|
36 |
"💾 保存对话": "💾 Save Dialog",
|
37 |
"📝 导出为Markdown": "📝 Export as Markdown",
|
38 |
"默认保存于history文件夹": "Default save in history folder",
|
39 |
+
"下载/上传历史记录": "Download/Upload History",
|
40 |
"高级": "Advanced",
|
41 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ Caution: Changes require care. ⚠️",
|
42 |
"参数": "Parameters",
|
|
|
95 |
"上传": "Upload",
|
96 |
"由于下面的原因,Google 拒绝返回 PaLM 的回答:\n\n": "Due to the following reasons, Google refuses to provide an answer to PaLM: \n\n",
|
97 |
"⚠️ 为保证API-Key安全,请在配置文件`config.json`中修改网络设置": "⚠️ To ensure the security of API-Key, please modify the network settings in the configuration file `config.json`.",
|
98 |
+
"网络": "Network",
|
99 |
"暂时未知": "Unknown",
|
100 |
|
101 |
+
"剩余配额不足,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)": "Insufficient remaining quota, [learn more](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)",
|
102 |
+
"你没有权限访问 GPT4,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)": "You do not have permission to access GPT-4, [learn more](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)",
|
103 |
+
"请查看 config_example.json,配置 Azure OpenAI": "Please review config_example.json to configure Azure OpenAI",
|
104 |
+
|
105 |
+
"微调": "Fine-tuning",
|
106 |
+
"训练状态": "Training Status",
|
107 |
+
"查看[使用介绍](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35)": "View the [usage guide](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35) for more details",
|
108 |
+
"准备数据集": "Prepare Dataset",
|
109 |
+
"数据集预览": "Dataset Preview",
|
110 |
+
"选择数据集": "Select Dataset",
|
111 |
+
"上传到OpenAI": "Upload to OpenAI",
|
112 |
+
"文件ID": "File ID",
|
113 |
+
"上传到 OpenAI 后自动填充": "Automatically filled after uploading to OpenAI",
|
114 |
+
"模型名称后缀": "Model Name Suffix",
|
115 |
+
"可选,用于区分不同的模型": "Optional, used to distinguish different models",
|
116 |
+
"训练轮数(Epochs)": "Training Epochs",
|
117 |
+
"开始训练": "Start Training",
|
118 |
+
"状态": "Status",
|
119 |
+
"刷新状态": "Refresh Status",
|
120 |
+
"取消所有任务": "Cancel All Tasks",
|
121 |
+
"添加训练好的模型到模型列表": "Add trained model to the model list",
|
122 |
+
|
123 |
+
"设置": "Settings",
|
124 |
+
"训练": "Training",
|
125 |
+
"工具箱": "Toolbox",
|
126 |
"对话": "Dialogue",
|
127 |
"拓展": "Extensions",
|
128 |
+
"上传文件": "Upload files",
|
129 |
"知识库": "Knowledge base",
|
130 |
"知识库文件": "Knowledge base file",
|
131 |
"在工具箱中管理知识库文件": "Manage knowledge base files in the toolbox",
|
locale/ja_JP.json
CHANGED
@@ -36,6 +36,7 @@
|
|
36 |
"💾 保存对话": "💾 会話を保存",
|
37 |
"📝 导出为Markdown": "📝 Markdownでエクスポート",
|
38 |
"默认保存于history文件夹": "デフォルトでhistoryフォルダに保存されます",
|
|
|
39 |
"高级": "Advanced",
|
40 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ 変更には慎重に ⚠️",
|
41 |
"参数": "パラメータ",
|
@@ -97,9 +98,31 @@
|
|
97 |
"网络": "ネットワーク",
|
98 |
"暂时未知": "しばらく不明である",
|
99 |
|
100 |
-
"
|
101 |
-
"
|
102 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
"对话": "会話",
|
104 |
"拓展": "拡張",
|
105 |
"上传文件": "ファイルをアップロード",
|
|
|
36 |
"💾 保存对话": "💾 会話を保存",
|
37 |
"📝 导出为Markdown": "📝 Markdownでエクスポート",
|
38 |
"默认保存于history文件夹": "デフォルトでhistoryフォルダに保存されます",
|
39 |
+
"下载/上传历史记录": "履歴をダウンロード/アップロード",
|
40 |
"高级": "Advanced",
|
41 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ 変更には慎重に ⚠️",
|
42 |
"参数": "パラメータ",
|
|
|
98 |
"网络": "ネットワーク",
|
99 |
"暂时未知": "しばらく不明である",
|
100 |
|
101 |
+
"剩余配额不足,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)": "残りのクォータが不足しています、[詳細はこちら](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)",
|
102 |
+
"你没有权限访问 GPT4,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)": "GPT-4にアクセス権がありません、[詳細はこちら](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)",
|
103 |
+
"请查看 config_example.json,配置 Azure OpenAI": "Azure OpenAIの設定については、config_example.jsonをご覧ください",
|
104 |
+
|
105 |
+
"微调": "ファインチューニング",
|
106 |
+
"训练状态": "トレーニングステータス",
|
107 |
+
"查看[使用介绍](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35)": "[使用ガイド](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35)を表示",
|
108 |
+
"准备数据集": "データセットの準備",
|
109 |
+
"数据集预览": "データセットのプレビュー",
|
110 |
+
"选择数据集": "データセットの選択",
|
111 |
+
"上传到OpenAI": "OpenAIへのアップロード",
|
112 |
+
"文件ID": "ファイルID",
|
113 |
+
"上传到 OpenAI 后自动填充": "OpenAIへのアップロード後、自動的に入力されます",
|
114 |
+
"模型名称后缀": "モデル名のサフィックス",
|
115 |
+
"可选,用于区分不同的模型": "オプション、異なるモデルを区別するために使用",
|
116 |
+
"训练轮数(Epochs)": "トレーニングエポック数",
|
117 |
+
"开始训练": "トレーニングを開始",
|
118 |
+
"状态": "ステータス",
|
119 |
+
"刷新状态": "ステータスを更新",
|
120 |
+
"取消所有任务": "すべてのタスクをキャンセル",
|
121 |
+
"添加训练好的模型到模型列表": "トレーニング済みモデルをモデルリストに追加",
|
122 |
+
|
123 |
+
"设置": "設定",
|
124 |
+
"训练": "トレーニング",
|
125 |
+
"工具箱": "ツールボックス",
|
126 |
"对话": "会話",
|
127 |
"拓展": "拡張",
|
128 |
"上传文件": "ファイルをアップロード",
|
locale/ko_KR.json
CHANGED
@@ -36,6 +36,7 @@
|
|
36 |
"💾 保存对话": "💾 대화 저장",
|
37 |
"📝 导出为Markdown": "📝 마크다운으로 내보내기",
|
38 |
"默认保存于history文件夹": "히스토리 폴더에 기본 저장",
|
|
|
39 |
"高级": "고급",
|
40 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ 주의: 변경시 주의하세요. ⚠️",
|
41 |
"参数": "파라미터들",
|
@@ -97,9 +98,31 @@
|
|
97 |
"网络": "네트워크",
|
98 |
"暂时未知": "알 수 없음",
|
99 |
|
100 |
-
"
|
101 |
-
"
|
102 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
"对话": "대화",
|
104 |
"拓展": "확장",
|
105 |
"上传文件": "파일 업로드",
|
|
|
36 |
"💾 保存对话": "💾 대화 저장",
|
37 |
"📝 导出为Markdown": "📝 마크다운으로 내보내기",
|
38 |
"默认保存于history文件夹": "히스토리 폴더에 기본 저장",
|
39 |
+
"下载/上传历史记录": "기록 다운로드/업로드",
|
40 |
"高级": "고급",
|
41 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ 주의: 변경시 주의하세요. ⚠️",
|
42 |
"参数": "파라미터들",
|
|
|
98 |
"网络": "네트워크",
|
99 |
"暂时未知": "알 수 없음",
|
100 |
|
101 |
+
"剩余配额不足,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)": "남은 할당량이 부족합니다. [자세히 알아보기](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)",
|
102 |
+
"你没有权限访问 GPT4,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)": "GPT-4에 접근 권한이 없습니다. [자세히 알아보기](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)",
|
103 |
+
"请查看 config_example.json,配置 Azure OpenAI": "Azure OpenAI 설정을 확인하세요",
|
104 |
+
|
105 |
+
"微调": "미세 조정",
|
106 |
+
"训练状态": "훈련 상태",
|
107 |
+
"查看[使用介绍](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35)": "[사용 가이드](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35) 보기",
|
108 |
+
"准备数据集": "데이터셋 준비",
|
109 |
+
"数据集预览": "데이터셋 미리보기",
|
110 |
+
"选择数据集": "데이터셋 선택",
|
111 |
+
"上传到OpenAI": "OpenAI로 업로드",
|
112 |
+
"文件ID": "파일 ID",
|
113 |
+
"上传到 OpenAI 后自动填充": "OpenAI로 업로드한 후 자동으로 채워집니다",
|
114 |
+
"模型名称后缀": "모델 이름 접미사",
|
115 |
+
"可选,用于区分不同的模型": "선택 사항, 다른 모델을 구분하는 데 사용",
|
116 |
+
"训练轮数(Epochs)": "훈련 라운드(Epochs)",
|
117 |
+
"开始训练": "훈련 시작",
|
118 |
+
"状态": "상태",
|
119 |
+
"刷新状态": "상태 새로 고침",
|
120 |
+
"取消所有任务": "모든 작업 취소",
|
121 |
+
"添加训练好的模型到模型列表": "훈련된 모델을 모델 목록에 추가",
|
122 |
+
|
123 |
+
"设置": "설정",
|
124 |
+
"训练": "훈련",
|
125 |
+
"工具箱": "도구 상자",
|
126 |
"对话": "대화",
|
127 |
"拓展": "확장",
|
128 |
"上传文件": "파일 업로드",
|
locale/ru_RU.json
CHANGED
@@ -36,6 +36,7 @@
|
|
36 |
"💾 保存对话": "💾 Сохранить диалог",
|
37 |
"📝 导出为Markdown": "📝 Экспортировать в Markdown",
|
38 |
"默认保存于history文件夹": "По умолчанию сохраняется в папку history",
|
|
|
39 |
"高级": "Расширенные настройки",
|
40 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ ВНИМАНИЕ: ИЗМЕНЯЙТЕ ОСТОРОЖНО ⚠️",
|
41 |
"参数": "Параметры",
|
@@ -97,18 +98,17 @@
|
|
97 |
"网络": "Параметры сети",
|
98 |
"暂时未知": "Временно неизвестно",
|
99 |
|
100 |
-
"剩余配额不足,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki
|
101 |
-
"你没有权限访问 GPT4,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843": "У вас нет доступа к GPT4, подробнее",
|
102 |
"请查看 config_example.json,配置 Azure OpenAI": "Пожалуйста, просмотрите config_example.json для настройки Azure OpenAI",
|
103 |
|
104 |
"微调": "Своя модель",
|
105 |
"训练状态": "Статус обучения",
|
106 |
-
"
|
107 |
"准备数据集": "Подготовка набора данных",
|
108 |
"数据集预览": "Предпросмотр набора данных",
|
109 |
"选择数据集": "Выберите набор данных",
|
110 |
"上传到OpenAI": "Загрузить в OpenAI",
|
111 |
-
"训练": "Обучение",
|
112 |
"文件ID": "Идентификатор файла",
|
113 |
"上传到 OpenAI 后自动填充": "Автоматическое заполнение после загрузки в OpenAI",
|
114 |
"模型名称后缀": "Суффикс имени модели",
|
@@ -120,9 +120,9 @@
|
|
120 |
"取消所有任务": "Отменить все задачи",
|
121 |
"添加训练好的模型到模型列表": "Добавить обученную модель в список моделей",
|
122 |
|
123 |
-
"
|
124 |
-
"
|
125 |
-
"
|
126 |
"对话": "Диалог",
|
127 |
"拓展": "Расширенные настройки",
|
128 |
"上传文件": "Загрузить файл",
|
|
|
36 |
"💾 保存对话": "💾 Сохранить диалог",
|
37 |
"📝 导出为Markdown": "📝 Экспортировать в Markdown",
|
38 |
"默认保存于history文件夹": "По умолчанию сохраняется в папку history",
|
39 |
+
"下载/上传历史记录": "Загрузить/загрузить историю",
|
40 |
"高级": "Расширенные настройки",
|
41 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ ВНИМАНИЕ: ИЗМЕНЯЙТЕ ОСТОРОЖНО ⚠️",
|
42 |
"参数": "Параметры",
|
|
|
98 |
"网络": "Параметры сети",
|
99 |
"暂时未知": "Временно неизвестно",
|
100 |
|
101 |
+
"剩余配额不足,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)": "Недостаточно остаточного квоты, [подробнее](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)",
|
102 |
+
"你没有权限访问 GPT4,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)": "У вас нет доступа к GPT4, [подробнее](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)",
|
103 |
"请查看 config_example.json,配置 Azure OpenAI": "Пожалуйста, просмотрите config_example.json для настройки Azure OpenAI",
|
104 |
|
105 |
"微调": "Своя модель",
|
106 |
"训练状态": "Статус обучения",
|
107 |
+
"查看[使用介绍](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35)": "[Здесь](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35) можно ознакомиться с инструкцией по использованию",
|
108 |
"准备数据集": "Подготовка набора данных",
|
109 |
"数据集预览": "Предпросмотр набора данных",
|
110 |
"选择数据集": "Выберите набор данных",
|
111 |
"上传到OpenAI": "Загрузить в OpenAI",
|
|
|
112 |
"文件ID": "Идентификатор файла",
|
113 |
"上传到 OpenAI 后自动填充": "Автоматическое заполнение после загрузки в OpenAI",
|
114 |
"模型名称后缀": "Суффикс имени модели",
|
|
|
120 |
"取消所有任务": "Отменить все задачи",
|
121 |
"添加训练好的模型到模型列表": "Добавить обученную модель в список моделей",
|
122 |
|
123 |
+
"设置": "Настройки",
|
124 |
+
"训练": "Обучение",
|
125 |
+
"工具箱": "Инструменты",
|
126 |
"对话": "Диалог",
|
127 |
"拓展": "Расширенные настройки",
|
128 |
"上传文件": "Загрузить файл",
|
locale/sv-SE.json
CHANGED
@@ -35,7 +35,8 @@
|
|
35 |
"对话历史记录": "Dialoghistorik",
|
36 |
"💾 保存对话": "💾 Spara Dialog",
|
37 |
"📝 导出为Markdown": "📝 Exportera som Markdown",
|
38 |
-
"默认保存于history文件夹": "Sparas som standard i mappen history",
|
|
|
39 |
"高级": "Avancerat",
|
40 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ Var försiktig med ändringar. ⚠️",
|
41 |
"参数": "Parametrar",
|
@@ -97,9 +98,31 @@
|
|
97 |
"网络": "nätverksparametrar",
|
98 |
"暂时未知": "Okänd",
|
99 |
|
100 |
-
"
|
101 |
-
"
|
102 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
"对话": "konversation",
|
104 |
"拓展": "utvidgning",
|
105 |
"上传文件": "ladda upp fil",
|
|
|
35 |
"对话历史记录": "Dialoghistorik",
|
36 |
"💾 保存对话": "💾 Spara Dialog",
|
37 |
"📝 导出为Markdown": "📝 Exportera som Markdown",
|
38 |
+
"默认保存于history文件夹": "Sparas som standard i mappen history",
|
39 |
+
"下载/上传历史记录": "Ladda ner/ladda upp historik",
|
40 |
"高级": "Avancerat",
|
41 |
"# ⚠️ 务必谨慎更改 ⚠️": "# ⚠️ Var försiktig med ändringar. ⚠️",
|
42 |
"参数": "Parametrar",
|
|
|
98 |
"网络": "nätverksparametrar",
|
99 |
"暂时未知": "Okänd",
|
100 |
|
101 |
+
"剩余配额不足,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)": "Återstående kvot är otillräcklig, [läs mer](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/常见问题#you-exceeded-your-current-quota-please-check-your-plan-and-billing-details)",
|
102 |
+
"你没有权限访问 GPT4,[进一步了解](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)": "Du har inte behörighet att komma åt GPT-4, [läs mer](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/843)",
|
103 |
+
"请查看 config_example.json,配置 Azure OpenAI": "Vänligen granska config_example.json för att konfigurera Azure OpenAI",
|
104 |
+
|
105 |
+
"微调": "Finjustering",
|
106 |
+
"训练状态": "Träningsstatus",
|
107 |
+
"查看[使用介绍](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35)": "Se [användarguiden](https://github.com/GaiZhenbiao/ChuanhuChatGPT/wiki/使用教程#微调-gpt-35) för mer information",
|
108 |
+
"准备数据集": "Förbered dataset",
|
109 |
+
"数据集预览": "Datasetförhandsvisning",
|
110 |
+
"选择数据集": "Välj dataset",
|
111 |
+
"上传到OpenAI": "Ladda upp till OpenAI",
|
112 |
+
"文件ID": "Fil-ID",
|
113 |
+
"上传到 OpenAI 后自动填充": "Automatiskt ifylld efter uppladdning till OpenAI",
|
114 |
+
"模型名称后缀": "Modellnamnstillägg",
|
115 |
+
"可选,用于区分不同的模型": "Valfritt, används för att särskilja olika modeller",
|
116 |
+
"训练轮数(Epochs)": "Träningsomgångar (Epochs)",
|
117 |
+
"开始训练": "Börja träning",
|
118 |
+
"状态": "Status",
|
119 |
+
"刷新状态": "Uppdatera status",
|
120 |
+
"取消所有任务": "Avbryt alla uppgifter",
|
121 |
+
"添加训练好的模型到模型列表": "Lägg till tränad modell i modellistan",
|
122 |
+
|
123 |
+
"设置": "inställningar",
|
124 |
+
"训练": "träning",
|
125 |
+
"工具箱": "verktygslåda",
|
126 |
"对话": "konversation",
|
127 |
"拓展": "utvidgning",
|
128 |
"上传文件": "ladda upp fil",
|
web_assets/stylesheet/ChuanhuChat.css
CHANGED
@@ -468,6 +468,7 @@ button.chatbot-input-more-btn:active .sm-round-bg {
|
|
468 |
display: flex;
|
469 |
justify-content: space-between;
|
470 |
align-items: center;
|
|
|
471 |
}
|
472 |
.chatbot-input-more-icon {
|
473 |
margin-right: 12px;
|
|
|
468 |
display: flex;
|
469 |
justify-content: space-between;
|
470 |
align-items: center;
|
471 |
+
gap: 4px;
|
472 |
}
|
473 |
.chatbot-input-more-icon {
|
474 |
margin-right: 12px;
|