Skip to content

Commit 07de4fd

Browse files
authored
🐛 fix the problems of the last week commit #1279
2 parents e043fc3 + ae373c9 commit 07de4fd

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

frontend/app/[locale]/setup/agents/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default function AgentSetupPage() {
112112
isCheckingConnection={isCheckingConnection}
113113
onCheckConnection={checkModelEngineConnection}
114114
title={t("setup.header.title")}
115-
description={t("setup.agent.description")}
115+
description={t("setup.header.description")}
116116
onBack={handleBack}
117117
onComplete={handleComplete}
118118
isSaving={isSaving}

frontend/app/[locale]/setup/knowledges/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export default function KnowledgeSetupPage() {
160160
isCheckingConnection={isCheckingConnection}
161161
onCheckConnection={checkModelEngineConnection}
162162
title={t("setup.header.title")}
163-
description={t("setup.knowledge.description")}
163+
description={t("setup.header.description")}
164164
onBack={handleBack}
165165
onNext={isAdmin ? handleNext : undefined}
166166
onComplete={isAdmin ? undefined : handleComplete}

frontend/app/[locale]/setup/models/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export default function ModelSetupPage() {
195195
isCheckingConnection={isCheckingConnection}
196196
onCheckConnection={checkModelEngineConnection}
197197
title={t("setup.header.title")}
198-
description={t("setup.model.description")}
198+
description={t("setup.header.description")}
199199
onNext={handleNext}
200200
showNext={true}
201201
nextText={t("setup.navigation.button.next")}

frontend/public/locales/en/common.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,9 @@
253253
"setup.header.button.back": "Back to Home",
254254
"setup.header.title": "Quick Setup",
255255
"setup.header.description": "Smartly build any assistant, accurately solve every challenge",
256+
"setup.model.description": "Model Configuration",
257+
"setup.knowledge.description": "Knowledge Base Configuration",
258+
"setup.agent.description": "Agent Configuration",
256259
"setup.navigation.button.previous": "Previous",
257260
"setup.navigation.button.next": "Next",
258261
"setup.navigation.button.complete": "Complete Setup",

frontend/public/locales/zh/common.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,9 @@
253253
"setup.header.button.back": "返回首页",
254254
"setup.header.title": "快速配置",
255255
"setup.header.description": "智能生成每一种助手,精准解决每一个问题",
256+
"setup.model.description": "模型配置",
257+
"setup.knowledge.description": "知识库配置",
258+
"setup.agent.description": "Agent配置",
256259
"setup.navigation.button.previous": "上一步",
257260
"setup.navigation.button.next": "下一步",
258261
"setup.navigation.button.complete": "完成配置",

0 commit comments

Comments
 (0)