Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions spring-ai-alibaba-jmanus/ui-vue3/src/base/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const words: I18nType = {
restartRequired: 'API key saved successfully! The application needs to be restarted for the configuration to take effect.\n\nClick "OK" to restart now, or "Cancel" to restart manually later.',
simplifiedChinese: 'Simplified Chinese',
completionsPath: 'Completions Path',
completionsPathPlaceholder: 'Completions Path, Resource Path',
completionsPathPlaceholder: 'If not specified, the default configuration is: /v1/chat/completions',
},

// Common buttons and actions
Expand Down Expand Up @@ -310,7 +310,7 @@ const words: I18nType = {
topP: 'Top P',
topPPlaceholder: 'Leave empty to use model default',
completionsPath: 'Completions Path',
completionsPathPlaceholder: 'Leave empty to use model default',
completionsPathPlaceholder: 'If not specified, the default configuration is: /v1/chat/completions',
headers: 'Headers',
headersPlaceholder: 'Request headers (JSON format)',
},
Expand Down Expand Up @@ -840,7 +840,8 @@ const words: I18nType = {
direct: {
planTemplateIdNotFound: 'Plan template ID not found',
executionFailedNoPlanId: 'Plan execution failed: No valid plan ID returned',
executionFailed: 'Plan execution failed'
executionFailed: 'Plan execution failed',
configuration: 'config'
},

// Modal
Expand Down
9 changes: 5 additions & 4 deletions spring-ai-alibaba-jmanus/ui-vue3/src/base/i18n/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ const words: I18nType = {
successMessage: '配置保存成功!正在跳转到主页面...',
restartRequired: 'API密钥已保存成功!为了使配置生效,需要重启应用程序。\n\n点击"确定"立即重启,点击"取消"稍后手动重启。',
simplifiedChinese: '简体中文',
completionsPath: 'Completions路径',
completionsPathPlaceholder: 'CompletionsPath,资源路径',
completionsPath: 'Completions Path',
completionsPathPlaceholder: '聊天模型端点,各平台路径不同。如未填写默认配置是:/v1/chat/completions',
},

// 通用按钮和操作
Expand Down Expand Up @@ -312,7 +312,7 @@ const words: I18nType = {
topP: 'Top P',
topPPlaceholder: '留空使用模型默认值',
completionsPath: 'Completions Path',
completionsPathPlaceholder: '留空使用模型默认值',
completionsPathPlaceholder: '聊天模型端点,各平台路径不同。如未填写默认配置是:/v1/chat/completions',
},
// MCP配置页面
mcpConfig: {
Expand Down Expand Up @@ -807,7 +807,8 @@ const words: I18nType = {
direct: {
planTemplateIdNotFound: '没有找到计划模板ID',
executionFailedNoPlanId: '执行计划失败:未返回有效的计划ID',
executionFailed: '执行计划失败'
executionFailed: '执行计划失败',
configuration: '设置'
},

// 模态框
Expand Down
Loading