diff --git a/ui/src/locales/lang/en-US/views/tool.ts b/ui/src/locales/lang/en-US/views/tool.ts index d09c0f42c68..bf3e9626360 100644 --- a/ui/src/locales/lang/en-US/views/tool.ts +++ b/ui/src/locales/lang/en-US/views/tool.ts @@ -3,8 +3,11 @@ export default { all: 'All', createTool: 'Create Tool', editTool: 'Edit Tool', + createMcpTool: 'Create MCP', + editMcpTool: 'Edit MCP', copyTool: 'Copy Tool', importTool: 'Import Tool', + settingTool: 'Set Tool', toolStore: { title: 'Tool Store', createFromToolStore: 'Create from Tool Store', diff --git a/ui/src/locales/lang/zh-CN/views/tool.ts b/ui/src/locales/lang/zh-CN/views/tool.ts index 23823e2b675..2ef19fbac07 100644 --- a/ui/src/locales/lang/zh-CN/views/tool.ts +++ b/ui/src/locales/lang/zh-CN/views/tool.ts @@ -7,6 +7,7 @@ export default { editMcpTool: '编辑MCP', copyTool: '复制工具', importTool: '导入工具', + settingTool: '设置工具', toolStore: { title: '工具商店', createFromToolStore: '从工具商店创建', diff --git a/ui/src/locales/lang/zh-Hant/views/tool.ts b/ui/src/locales/lang/zh-Hant/views/tool.ts index 2c34c9eb252..ceb0b5ca204 100644 --- a/ui/src/locales/lang/zh-Hant/views/tool.ts +++ b/ui/src/locales/lang/zh-Hant/views/tool.ts @@ -3,8 +3,11 @@ export default { all: '全部', createTool: '建立工具', editTool: '編輯工具', + createMcpTool: '建立MCP', + editMcpTool: '編輯MCP', copyTool: '複製工具', importTool: '匯入工具', + settingTool: '設定工具', toolStore: { title: '工具商店', createFromToolStore: '從工具商店創建', diff --git a/ui/src/styles/app.scss b/ui/src/styles/app.scss index 4c782bbae06..a97439aefcc 100644 --- a/ui/src/styles/app.scss +++ b/ui/src/styles/app.scss @@ -56,7 +56,7 @@ div:focus { } ul { - list-style: circle; + list-style: none; margin: 0; padding: 0; } diff --git a/ui/src/styles/md-editor.scss b/ui/src/styles/md-editor.scss index 2546ab0a3ef..9a19f1fef77 100644 --- a/ui/src/styles/md-editor.scss +++ b/ui/src/styles/md-editor.scss @@ -21,6 +21,9 @@ border: 0 !important; max-width: 360px !important; } + ul { + list-style: circle; + } } @media only screen and (max-width: 768px) { diff --git a/ui/src/views/application/component/ToolDialog.vue b/ui/src/views/application/component/ToolDialog.vue index 87332676f1f..1585a7f7c9a 100644 --- a/ui/src/views/application/component/ToolDialog.vue +++ b/ui/src/views/application/component/ToolDialog.vue @@ -1,89 +1,227 @@