@vibe-forge/client 0.2.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/cli.cjs +6 -0
- package/index.html +27 -0
- package/package.json +42 -0
- package/src/App.tsx +174 -0
- package/src/api.ts +241 -0
- package/src/components/ArchiveView.scss +168 -0
- package/src/components/ArchiveView.tsx +299 -0
- package/src/components/AutomationView/AutomationView.scss +26 -0
- package/src/components/AutomationView/RuleFormPanel.scss +129 -0
- package/src/components/AutomationView/RuleFormPanel.tsx +257 -0
- package/src/components/AutomationView/RuleSidebar.scss +219 -0
- package/src/components/AutomationView/RuleSidebar.tsx +258 -0
- package/src/components/AutomationView/RunHistoryPanel.scss +286 -0
- package/src/components/AutomationView/RunHistoryPanel.tsx +320 -0
- package/src/components/AutomationView/TaskList.scss +128 -0
- package/src/components/AutomationView/TaskList.tsx +79 -0
- package/src/components/AutomationView/TriggerList.scss +153 -0
- package/src/components/AutomationView/TriggerList.tsx +217 -0
- package/src/components/AutomationView/index.tsx +228 -0
- package/src/components/AutomationView/types.ts +21 -0
- package/src/components/Chat.scss +89 -0
- package/src/components/Chat.tsx +92 -0
- package/src/components/ConfigView.scss +185 -0
- package/src/components/ConfigView.tsx +258 -0
- package/src/components/NavRail.scss +71 -0
- package/src/components/NavRail.tsx +188 -0
- package/src/components/Sidebar.scss +112 -0
- package/src/components/Sidebar.tsx +291 -0
- package/src/components/chat/ChatHeader.scss +401 -0
- package/src/components/chat/ChatHeader.tsx +342 -0
- package/src/components/chat/ChatHistoryView.tsx +122 -0
- package/src/components/chat/ChatSettingsView.tsx +22 -0
- package/src/components/chat/ChatTimelineView.scss +53 -0
- package/src/components/chat/ChatTimelineView.tsx +158 -0
- package/src/components/chat/CodeBlock.scss +87 -0
- package/src/components/chat/CodeBlock.tsx +179 -0
- package/src/components/chat/CompletionMenu.scss +70 -0
- package/src/components/chat/CompletionMenu.tsx +58 -0
- package/src/components/chat/CurrentTodoList.scss +217 -0
- package/src/components/chat/CurrentTodoList.tsx +103 -0
- package/src/components/chat/MarkdownContent.tsx +43 -0
- package/src/components/chat/MessageFooter.tsx +48 -0
- package/src/components/chat/MessageItem.scss +251 -0
- package/src/components/chat/MessageItem.tsx +78 -0
- package/src/components/chat/NewSessionGuide.scss +186 -0
- package/src/components/chat/NewSessionGuide.tsx +167 -0
- package/src/components/chat/Sender.scss +367 -0
- package/src/components/chat/Sender.tsx +541 -0
- package/src/components/chat/SessionTimelinePanel/EventList.scss +58 -0
- package/src/components/chat/SessionTimelinePanel/EventList.tsx +212 -0
- package/src/components/chat/SessionTimelinePanel/gantt.ts +177 -0
- package/src/components/chat/SessionTimelinePanel/git-graph.ts +518 -0
- package/src/components/chat/SessionTimelinePanel/index.scss +28 -0
- package/src/components/chat/SessionTimelinePanel/index.tsx +121 -0
- package/src/components/chat/SessionTimelinePanel/mermaid.ts +4 -0
- package/src/components/chat/SessionTimelinePanel/types.ts +64 -0
- package/src/components/chat/SessionTimelinePanel/utils.ts +20 -0
- package/src/components/chat/ThinkingStatus.scss +70 -0
- package/src/components/chat/ThinkingStatus.tsx +13 -0
- package/src/components/chat/ToolCallBox.scss +137 -0
- package/src/components/chat/ToolCallBox.tsx +55 -0
- package/src/components/chat/ToolGroup.scss +154 -0
- package/src/components/chat/ToolGroup.tsx +102 -0
- package/src/components/chat/ToolRenderer.tsx +45 -0
- package/src/components/chat/messageUtils.ts +171 -0
- package/src/components/chat/safeSerialize.ts +84 -0
- package/src/components/chat/tools/DefaultTool.tsx +63 -0
- package/src/components/chat/tools/adapter-claude/BashTool.scss +71 -0
- package/src/components/chat/tools/adapter-claude/BashTool.tsx +82 -0
- package/src/components/chat/tools/adapter-claude/GlobTool.scss +88 -0
- package/src/components/chat/tools/adapter-claude/GlobTool.tsx +85 -0
- package/src/components/chat/tools/adapter-claude/GrepTool.scss +96 -0
- package/src/components/chat/tools/adapter-claude/GrepTool.tsx +114 -0
- package/src/components/chat/tools/adapter-claude/LSTool.scss +85 -0
- package/src/components/chat/tools/adapter-claude/LSTool.tsx +94 -0
- package/src/components/chat/tools/adapter-claude/ReadTool.scss +57 -0
- package/src/components/chat/tools/adapter-claude/ReadTool.tsx +87 -0
- package/src/components/chat/tools/adapter-claude/TodoTool.scss +78 -0
- package/src/components/chat/tools/adapter-claude/TodoTool.tsx +60 -0
- package/src/components/chat/tools/adapter-claude/WriteTool.scss +92 -0
- package/src/components/chat/tools/adapter-claude/WriteTool.tsx +86 -0
- package/src/components/chat/tools/adapter-claude/components/FileList.scss +65 -0
- package/src/components/chat/tools/adapter-claude/components/FileList.tsx +185 -0
- package/src/components/chat/tools/adapter-claude/index.ts +28 -0
- package/src/components/chat/tools/defineToolRender.ts +28 -0
- package/src/components/chat/tools/task/GetTaskInfoTool.scss +50 -0
- package/src/components/chat/tools/task/GetTaskInfoTool.tsx +88 -0
- package/src/components/chat/tools/task/ListTasksTool.scss +56 -0
- package/src/components/chat/tools/task/ListTasksTool.tsx +83 -0
- package/src/components/chat/tools/task/StartTasksTool.scss +56 -0
- package/src/components/chat/tools/task/StartTasksTool.tsx +96 -0
- package/src/components/chat/tools/task/components/TaskToolCard.scss +127 -0
- package/src/components/chat/tools/task/components/TaskToolCard.tsx +177 -0
- package/src/components/chat/tools/task/index.ts +15 -0
- package/src/components/chat/useChatModels.tsx +206 -0
- package/src/components/chat/useChatSession.ts +370 -0
- package/src/components/config/ConfigAboutSection.scss +111 -0
- package/src/components/config/ConfigAboutSection.tsx +86 -0
- package/src/components/config/ConfigDisplayValue.scss +22 -0
- package/src/components/config/ConfigDisplayValue.tsx +62 -0
- package/src/components/config/ConfigEditors.scss +65 -0
- package/src/components/config/ConfigEditors.tsx +98 -0
- package/src/components/config/ConfigFieldRow.scss +97 -0
- package/src/components/config/ConfigFieldRow.tsx +36 -0
- package/src/components/config/ConfigSectionForm.scss +94 -0
- package/src/components/config/ConfigSectionForm.tsx +436 -0
- package/src/components/config/ConfigSectionPanel.tsx +67 -0
- package/src/components/config/ConfigShortcutInput.scss +11 -0
- package/src/components/config/ConfigShortcutInput.tsx +52 -0
- package/src/components/config/ConfigSourceSwitch.tsx +57 -0
- package/src/components/config/configSchema.ts +319 -0
- package/src/components/config/configUtils.ts +83 -0
- package/src/components/config/index.tsx +5 -0
- package/src/components/config/recordEditors/BooleanRecordEditor.scss +1 -0
- package/src/components/config/recordEditors/BooleanRecordEditor.tsx +75 -0
- package/src/components/config/recordEditors/KeyValueEditor.scss +1 -0
- package/src/components/config/recordEditors/KeyValueEditor.tsx +97 -0
- package/src/components/config/recordEditors/McpServersRecordEditor.scss +1 -0
- package/src/components/config/recordEditors/McpServersRecordEditor.tsx +258 -0
- package/src/components/config/recordEditors/ModelServicesRecordEditor.scss +1 -0
- package/src/components/config/recordEditors/ModelServicesRecordEditor.tsx +233 -0
- package/src/components/config/recordEditors/RecordEditors.scss +117 -0
- package/src/components/config/recordEditors/RecordJsonEditor.scss +1 -0
- package/src/components/config/recordEditors/RecordJsonEditor.tsx +113 -0
- package/src/components/config/recordEditors/index.tsx +5 -0
- package/src/components/knowledge-base/KnowledgeBaseView.scss +19 -0
- package/src/components/knowledge-base/KnowledgeBaseView.tsx +186 -0
- package/src/components/knowledge-base/components/ActionButton.scss +5 -0
- package/src/components/knowledge-base/components/ActionButton.tsx +9 -0
- package/src/components/knowledge-base/components/EmptyState.scss +19 -0
- package/src/components/knowledge-base/components/EmptyState.tsx +42 -0
- package/src/components/knowledge-base/components/EntitiesTab.scss +5 -0
- package/src/components/knowledge-base/components/EntitiesTab.tsx +80 -0
- package/src/components/knowledge-base/components/EntityItem.scss +82 -0
- package/src/components/knowledge-base/components/EntityItem.tsx +79 -0
- package/src/components/knowledge-base/components/EntityList.scss +5 -0
- package/src/components/knowledge-base/components/EntityList.tsx +70 -0
- package/src/components/knowledge-base/components/FilterBar.scss +21 -0
- package/src/components/knowledge-base/components/FilterBar.tsx +51 -0
- package/src/components/knowledge-base/components/FlowsTab.scss +5 -0
- package/src/components/knowledge-base/components/FlowsTab.tsx +80 -0
- package/src/components/knowledge-base/components/KnowledgeBaseHeader.scss +27 -0
- package/src/components/knowledge-base/components/KnowledgeBaseHeader.tsx +29 -0
- package/src/components/knowledge-base/components/KnowledgeList.scss +19 -0
- package/src/components/knowledge-base/components/KnowledgeList.tsx +19 -0
- package/src/components/knowledge-base/components/LoadingState.scss +5 -0
- package/src/components/knowledge-base/components/LoadingState.tsx +11 -0
- package/src/components/knowledge-base/components/MetaList.scss +19 -0
- package/src/components/knowledge-base/components/MetaList.tsx +18 -0
- package/src/components/knowledge-base/components/RulesTab.scss +5 -0
- package/src/components/knowledge-base/components/RulesTab.tsx +49 -0
- package/src/components/knowledge-base/components/SectionHeader.scss +22 -0
- package/src/components/knowledge-base/components/SectionHeader.tsx +21 -0
- package/src/components/knowledge-base/components/SkillsTab.scss +5 -0
- package/src/components/knowledge-base/components/SkillsTab.tsx +49 -0
- package/src/components/knowledge-base/components/SpecItem.scss +138 -0
- package/src/components/knowledge-base/components/SpecItem.tsx +131 -0
- package/src/components/knowledge-base/components/SpecList.scss +5 -0
- package/src/components/knowledge-base/components/SpecList.tsx +70 -0
- package/src/components/knowledge-base/components/TabContent.scss +8 -0
- package/src/components/knowledge-base/components/TabContent.tsx +17 -0
- package/src/components/knowledge-base/components/TabLabel.scss +10 -0
- package/src/components/knowledge-base/components/TabLabel.tsx +15 -0
- package/src/components/knowledge-base/index.tsx +1 -0
- package/src/components/sidebar/SessionItem.scss +256 -0
- package/src/components/sidebar/SessionItem.tsx +265 -0
- package/src/components/sidebar/SessionList.scss +92 -0
- package/src/components/sidebar/SessionList.tsx +166 -0
- package/src/components/sidebar/SidebarHeader.scss +79 -0
- package/src/components/sidebar/SidebarHeader.tsx +128 -0
- package/src/connectionManager.ts +172 -0
- package/src/hooks/useGlobalShortcut.ts +26 -0
- package/src/hooks/useQueryParams.ts +54 -0
- package/src/i18n.ts +22 -0
- package/src/main.tsx +41 -0
- package/src/resources/locales/en.json +765 -0
- package/src/resources/locales/zh.json +766 -0
- package/src/store/index.ts +23 -0
- package/src/styles/global.scss +100 -0
- package/src/utils/shortcutUtils.ts +88 -0
- package/src/vite-env.d.ts +12 -0
- package/src/ws.ts +33 -0
- package/vite.config.ts +26 -0
|
@@ -0,0 +1,766 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"newChat": "新建会话",
|
|
4
|
+
"search": "搜索标题或 ID...",
|
|
5
|
+
"sessions": "会话列表",
|
|
6
|
+
"knowledgeBase": "项目知识库",
|
|
7
|
+
"archive": "归档",
|
|
8
|
+
"archivedSessions": "已归档会话",
|
|
9
|
+
"theme": "主题模式",
|
|
10
|
+
"themeLight": "浅色模式",
|
|
11
|
+
"themeDark": "深色模式",
|
|
12
|
+
"themeSystem": "跟随系统",
|
|
13
|
+
"settings": "设置",
|
|
14
|
+
"language": "语言",
|
|
15
|
+
"automation": "自动化任务",
|
|
16
|
+
"delete": "删除",
|
|
17
|
+
"deleteSession": "删除会话",
|
|
18
|
+
"deleteSessionConfirm": "确定要删除这个会话吗?此操作不可撤销。",
|
|
19
|
+
"restore": "还原",
|
|
20
|
+
"restoreSuccess": "还原成功",
|
|
21
|
+
"restoreFailed": "还原失败",
|
|
22
|
+
"batchRestore": "批量还原",
|
|
23
|
+
"batchRestoreSuccess": "批量还原成功",
|
|
24
|
+
"batchRestoreFailed": "部分会话还原失败",
|
|
25
|
+
"cancel": "取消",
|
|
26
|
+
"confirm": "确定",
|
|
27
|
+
"startNewChat": "暂时没有未归档的历史会话,聊点什么吧",
|
|
28
|
+
"backToHome": "返回首页",
|
|
29
|
+
"noData": "暂无数据",
|
|
30
|
+
"noSessions": "未找到匹配的会话",
|
|
31
|
+
"noArchivedSessions": "暂无已归档会话",
|
|
32
|
+
"sessionNotFound": "会话不存在",
|
|
33
|
+
"expand": "展开侧边栏",
|
|
34
|
+
"dragResize": "拖动调整宽度",
|
|
35
|
+
"selectOrCreateSession": "请选择或新建会话开始对话",
|
|
36
|
+
"batchMode": "批量操作",
|
|
37
|
+
"cancelBatch": "取消批量操作",
|
|
38
|
+
"batchArchive": "批量归档",
|
|
39
|
+
"archiveConfirm": "确定要归档选中的 {{count}} 个会话吗?",
|
|
40
|
+
"alreadyInNewChat": "当前已是新建会话",
|
|
41
|
+
"creatingChat": "正在新建会话",
|
|
42
|
+
"batchDelete": "批量删除",
|
|
43
|
+
"batchDeleteSuccess": "批量删除成功",
|
|
44
|
+
"batchDeleteFailed": "部分会话删除失败",
|
|
45
|
+
"selectedCount": "已选中 {{count}} 个会话",
|
|
46
|
+
"collapse": "收起侧边栏",
|
|
47
|
+
"expandChildren": "展开子会话",
|
|
48
|
+
"collapseChildren": "收起子会话",
|
|
49
|
+
"childSummary": "{{count}} 个子会话",
|
|
50
|
+
"childStatusItem": "{{count}} {{status}}",
|
|
51
|
+
"deleteConfirm": "确定要删除选中的 {{count}} 个会话吗?",
|
|
52
|
+
"deleteSuccess": "删除成功",
|
|
53
|
+
"deleteFailed": "删除失败",
|
|
54
|
+
"star": "收藏",
|
|
55
|
+
"unstar": "取消收藏",
|
|
56
|
+
"addTag": "标签",
|
|
57
|
+
"actions": "操作",
|
|
58
|
+
"sessionIdCopied": "Session ID 已复制到剪贴板",
|
|
59
|
+
"doubleClickToCopy": "双击复制 Session ID",
|
|
60
|
+
"status": {
|
|
61
|
+
"running": "进行中",
|
|
62
|
+
"completed": "已完成",
|
|
63
|
+
"failed": "失败",
|
|
64
|
+
"terminated": "已终止",
|
|
65
|
+
"waiting_input": "等待输入"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"automation": {
|
|
69
|
+
"title": "自动化任务",
|
|
70
|
+
"newRule": "新建规则",
|
|
71
|
+
"creatingRule": "正在新建",
|
|
72
|
+
"editRule": "编辑规则",
|
|
73
|
+
"searchRule": "搜索规则",
|
|
74
|
+
"favorite": "收藏",
|
|
75
|
+
"unfavorite": "取消收藏",
|
|
76
|
+
"toggleEnabled": "启用/停用",
|
|
77
|
+
"noDescription": "暂无说明",
|
|
78
|
+
"runSearch": "搜索运行记录",
|
|
79
|
+
"statusAll": "全部状态",
|
|
80
|
+
"timeAll": "全部时间",
|
|
81
|
+
"time24h": "近 24 小时",
|
|
82
|
+
"time7d": "近 7 天",
|
|
83
|
+
"time30d": "近 30 天",
|
|
84
|
+
"sortDesc": "时间最新",
|
|
85
|
+
"sortAsc": "时间最早",
|
|
86
|
+
"triggerCount": "{{count}} 个触发条件",
|
|
87
|
+
"basicDesc": "用于说明规则用途与开关启停",
|
|
88
|
+
"sectionBasic": "基本信息",
|
|
89
|
+
"sectionTriggers": "触发条件",
|
|
90
|
+
"sectionTasks": "任务内容",
|
|
91
|
+
"ruleName": "规则名称",
|
|
92
|
+
"ruleNameRequired": "请输入规则名称",
|
|
93
|
+
"ruleDescription": "规则介绍",
|
|
94
|
+
"immediateRun": "立即触发",
|
|
95
|
+
"ruleType": "触发类型",
|
|
96
|
+
"ruleTypeRequired": "请选择触发类型",
|
|
97
|
+
"typeInterval": "时间间隔",
|
|
98
|
+
"typeWebhook": "接口触发",
|
|
99
|
+
"typeCron": "Cron 周期",
|
|
100
|
+
"intervalMinutes": "间隔(分钟)",
|
|
101
|
+
"intervalRequired": "请输入时间间隔",
|
|
102
|
+
"webhookKey": "Webhook Key",
|
|
103
|
+
"webhookKeyHint": "留空自动生成",
|
|
104
|
+
"cronExpressionLabel": "Cron 表达式",
|
|
105
|
+
"cronExpressionRequired": "请输入 Cron 表达式",
|
|
106
|
+
"cronExpressionHint": "例如:0 9 * * 1",
|
|
107
|
+
"cronExpression": "Cron:{{expression}}",
|
|
108
|
+
"cronPreset": "常用预设",
|
|
109
|
+
"cronPresetHint": "选择常用 Cron",
|
|
110
|
+
"cronPresetHourly": "每小时整点",
|
|
111
|
+
"cronPresetDaily9": "每天 09:00",
|
|
112
|
+
"cronPresetWeekday9": "工作日 09:00",
|
|
113
|
+
"cronPresetWeekend10": "周末 10:00",
|
|
114
|
+
"cronInputHint": "可直接输入 Cron 表达式,或用下方每周配置生成表达式",
|
|
115
|
+
"weeklyDay": "每周日期",
|
|
116
|
+
"weeklyTime": "时间(HH:mm)",
|
|
117
|
+
"weeklyTimeHint": "例如:09:00",
|
|
118
|
+
"weekdaySun": "周日",
|
|
119
|
+
"weekdayMon": "周一",
|
|
120
|
+
"weekdayTue": "周二",
|
|
121
|
+
"weekdayWed": "周三",
|
|
122
|
+
"weekdayThu": "周四",
|
|
123
|
+
"weekdayFri": "周五",
|
|
124
|
+
"weekdaySat": "周六",
|
|
125
|
+
"triggerAny": "满足任意一个条件即可触发任务",
|
|
126
|
+
"taskAll": "触发后同时执行以下任务",
|
|
127
|
+
"addTrigger": "添加触发条件",
|
|
128
|
+
"addTask": "添加任务",
|
|
129
|
+
"remove": "移除",
|
|
130
|
+
"taskDefaultTitle": "任务 {{index}}",
|
|
131
|
+
"taskTitle": "任务标题",
|
|
132
|
+
"taskTitlePlaceholder": "可选,用于区分多个任务",
|
|
133
|
+
"taskIndex": "第 {{index}} 个任务",
|
|
134
|
+
"taskCount": "{{count}} 个任务",
|
|
135
|
+
"taskUnknown": "未命名任务",
|
|
136
|
+
"webhookUrl": "Webhook 地址",
|
|
137
|
+
"prompt": "自动任务内容",
|
|
138
|
+
"promptRequired": "请输入自动任务内容",
|
|
139
|
+
"trigger": "触发方式",
|
|
140
|
+
"webhookTrigger": "Webhook",
|
|
141
|
+
"intervalEvery": "每 {{minutes}} 分钟",
|
|
142
|
+
"enabled": "启用",
|
|
143
|
+
"ruleStatus": "规则状态",
|
|
144
|
+
"lastRunLabel": "最近运行",
|
|
145
|
+
"lastRun": "最近运行",
|
|
146
|
+
"lastRunAt": "最近运行:{{time}}",
|
|
147
|
+
"noRunYet": "暂无运行记录",
|
|
148
|
+
"emptyRules": "暂无自动化任务",
|
|
149
|
+
"selectRule": "请选择一个自动化任务",
|
|
150
|
+
"ruleId": "规则 ID",
|
|
151
|
+
"createdAt": "创建时间",
|
|
152
|
+
"enabledOn": "已启用",
|
|
153
|
+
"enabledOff": "已停用",
|
|
154
|
+
"noTriggers": "暂无触发条件",
|
|
155
|
+
"noTasks": "暂无任务",
|
|
156
|
+
"runHistory": "运行记录",
|
|
157
|
+
"runTime": "运行时间",
|
|
158
|
+
"runStatus": "状态",
|
|
159
|
+
"runSummary": "摘要",
|
|
160
|
+
"session": "会话",
|
|
161
|
+
"relatedSession": "相关会话",
|
|
162
|
+
"openSession": "打开会话",
|
|
163
|
+
"noRuns": "暂无运行记录",
|
|
164
|
+
"actions": "操作",
|
|
165
|
+
"run": "立即运行",
|
|
166
|
+
"edit": "编辑",
|
|
167
|
+
"delete": "删除",
|
|
168
|
+
"copy": "复制",
|
|
169
|
+
"webhookCopied": "Webhook 已复制",
|
|
170
|
+
"created": "规则已创建",
|
|
171
|
+
"updated": "规则已更新",
|
|
172
|
+
"deleted": "规则已删除",
|
|
173
|
+
"saveFailed": "保存失败",
|
|
174
|
+
"deleteFailed": "删除失败",
|
|
175
|
+
"toggleFailed": "更新失败",
|
|
176
|
+
"runStarted": "已启动任务",
|
|
177
|
+
"runFailed": "启动失败"
|
|
178
|
+
},
|
|
179
|
+
"knowledge": {
|
|
180
|
+
"title": "项目知识库",
|
|
181
|
+
"subtitle": "管理当前项目的技能、实体、流程与规则",
|
|
182
|
+
"tabs": {
|
|
183
|
+
"skills": "技能",
|
|
184
|
+
"entities": "实体",
|
|
185
|
+
"flows": "流程",
|
|
186
|
+
"rules": "规则"
|
|
187
|
+
},
|
|
188
|
+
"actions": {
|
|
189
|
+
"refresh": "刷新",
|
|
190
|
+
"refreshed": "已刷新",
|
|
191
|
+
"import": "导入",
|
|
192
|
+
"expand": "展开",
|
|
193
|
+
"collapse": "收起"
|
|
194
|
+
},
|
|
195
|
+
"filters": {
|
|
196
|
+
"search": "搜索名称、描述或参数",
|
|
197
|
+
"tags": "按标签过滤",
|
|
198
|
+
"noResults": "没有匹配的结果"
|
|
199
|
+
},
|
|
200
|
+
"meta": {
|
|
201
|
+
"params": "{{count}} 个参数",
|
|
202
|
+
"always": "常驻",
|
|
203
|
+
"skills": "技能",
|
|
204
|
+
"rules": "规则",
|
|
205
|
+
"skillsCount": "技能 {{count}}",
|
|
206
|
+
"rulesCount": "规则 {{count}}"
|
|
207
|
+
},
|
|
208
|
+
"skills": {
|
|
209
|
+
"title": "技能库",
|
|
210
|
+
"desc": "维护可复用的技能定义与调用说明。",
|
|
211
|
+
"empty": "暂未发现技能。",
|
|
212
|
+
"create": "新建技能",
|
|
213
|
+
"createHint": "请在 .ai/skills 中创建技能文件,保存后刷新页面。",
|
|
214
|
+
"importHint": "请将技能文件导入至 .ai/skills,保存后刷新页面。"
|
|
215
|
+
},
|
|
216
|
+
"entities": {
|
|
217
|
+
"title": "实体库",
|
|
218
|
+
"desc": "管理项目内的角色、组件或领域实体。",
|
|
219
|
+
"empty": "暂未发现实体。",
|
|
220
|
+
"create": "新建实体",
|
|
221
|
+
"createHint": "请在 .ai/entities 中创建实体定义文件,保存后刷新页面。",
|
|
222
|
+
"importHint": "请将实体文件导入至 .ai/entities,保存后刷新页面。"
|
|
223
|
+
},
|
|
224
|
+
"flows": {
|
|
225
|
+
"title": "流程库",
|
|
226
|
+
"desc": "管理项目流程与参数定义。",
|
|
227
|
+
"empty": "暂未发现流程。",
|
|
228
|
+
"noContent": "暂无流程定义内容",
|
|
229
|
+
"create": "新建流程",
|
|
230
|
+
"createHint": "请在 .ai/specs 中创建流程文件,保存后刷新页面。",
|
|
231
|
+
"importHint": "请将流程文件导入至 .ai/specs,保存后刷新页面。"
|
|
232
|
+
},
|
|
233
|
+
"rules": {
|
|
234
|
+
"title": "规则库",
|
|
235
|
+
"desc": "维护项目规范、约束与执行规则。",
|
|
236
|
+
"empty": "暂未发现规则。",
|
|
237
|
+
"create": "新建规则",
|
|
238
|
+
"createHint": "请在 .ai/rules 中创建规则文件,保存后刷新页面。",
|
|
239
|
+
"importHint": "请将规则文件导入至 .ai/rules,保存后刷新页面。"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"chat": {
|
|
243
|
+
"titleUpdated": "标题已更新",
|
|
244
|
+
"titleUpdateFailed": "标题更新失败",
|
|
245
|
+
"clickToEditTitle": "点击编辑标题",
|
|
246
|
+
"inputPlaceholder": "输入消息...",
|
|
247
|
+
"send": "发送",
|
|
248
|
+
"thinking": "思考中...",
|
|
249
|
+
"stop": "停止",
|
|
250
|
+
"result": "结果",
|
|
251
|
+
"sessionActive": "会话进行中",
|
|
252
|
+
"selectModel": "选择模型开始聊天",
|
|
253
|
+
"modelSelectPlaceholder": "选择模型",
|
|
254
|
+
"modelSearchPlaceholder": "搜索模型或服务",
|
|
255
|
+
"modelUnavailable": "暂无可用模型",
|
|
256
|
+
"modelConfigRequired": "请先在配置中添加模型服务后再开始会话",
|
|
257
|
+
"modelGroupRecommended": "推荐模型",
|
|
258
|
+
"availableTools": "可用工具",
|
|
259
|
+
"toolsCount": "{{count}} 个工具",
|
|
260
|
+
"usedTools": "使用了 {{count}} 个工具",
|
|
261
|
+
"viewInitInfo": "双击查看初始化信息",
|
|
262
|
+
"viewHistory": "历史",
|
|
263
|
+
"viewTimeline": "时序",
|
|
264
|
+
"viewSettings": "配置",
|
|
265
|
+
"deleteSessionTitle": "删除会话",
|
|
266
|
+
"deleteSessionDesc": "删除会话会永久移除全部消息与上下文,请确认后再继续。",
|
|
267
|
+
"timelineEmpty": "暂无事件记录",
|
|
268
|
+
"timelineTask": "子任务",
|
|
269
|
+
"timelineStatus": "状态",
|
|
270
|
+
"timelineTiming": "时序",
|
|
271
|
+
"timelineStart": "开始",
|
|
272
|
+
"timelineEventName": "事件名",
|
|
273
|
+
"timelineInput": "输入",
|
|
274
|
+
"timelineOutput": "输出",
|
|
275
|
+
"timelineEmptyValue": "—",
|
|
276
|
+
"timeline": {
|
|
277
|
+
"mainTasks": "主任务",
|
|
278
|
+
"mainStart": "对话启动",
|
|
279
|
+
"mainEnd": "对话结束",
|
|
280
|
+
"startTasks": "创建任务",
|
|
281
|
+
"askUserQuestion": "询问问题",
|
|
282
|
+
"edit": "编辑",
|
|
283
|
+
"resumeTask": "继续任务",
|
|
284
|
+
"userPrompt": "用户提示",
|
|
285
|
+
"merge": "合并",
|
|
286
|
+
"merged": "已合并",
|
|
287
|
+
"donePrefix": "完成",
|
|
288
|
+
"taskStart": "创建任务",
|
|
289
|
+
"taskEnd": "结束",
|
|
290
|
+
"viewGit": "Git 视图",
|
|
291
|
+
"viewGantt": "甘特图",
|
|
292
|
+
"eventListTitle": "事件列表",
|
|
293
|
+
"eventListSearch": "搜索事件",
|
|
294
|
+
"ganttTitle": "任务时序",
|
|
295
|
+
"ganttMainSection": "主任务",
|
|
296
|
+
"ganttTasksSection": "任务",
|
|
297
|
+
"allTasksDone": "全部任务完成",
|
|
298
|
+
"userAnswer": "用户回答",
|
|
299
|
+
"receiveReply": "收到回复",
|
|
300
|
+
"destroyLabel": "销毁 {{name}}({{end}})",
|
|
301
|
+
"rangeLabel": "{{name}}({{start}} → {{end}})"
|
|
302
|
+
},
|
|
303
|
+
"hint": "按 Enter 发送,Shift + Enter 换行,输入 / @ # 触发补全",
|
|
304
|
+
"newSessionGuide": {
|
|
305
|
+
"loading": "正在加载...",
|
|
306
|
+
"announcements": {
|
|
307
|
+
"title": "最新公告"
|
|
308
|
+
},
|
|
309
|
+
"specs": {
|
|
310
|
+
"title": "已有流程",
|
|
311
|
+
"params": "{{count}} 个参数",
|
|
312
|
+
"empty": "暂未发现流程,放入 .ai/specs/*.md 即可展示。",
|
|
313
|
+
"create": "快速创建流程",
|
|
314
|
+
"createToast": "请在 .ai/specs 下创建流程文件,保存后刷新页面。"
|
|
315
|
+
},
|
|
316
|
+
"entities": {
|
|
317
|
+
"title": "已有实体",
|
|
318
|
+
"empty": "暂未发现实体,放入 .ai/entities 即可展示。",
|
|
319
|
+
"create": "快速创建实体",
|
|
320
|
+
"createToast": "请在 .ai/entities 下创建实体定义文件,保存后刷新页面。"
|
|
321
|
+
},
|
|
322
|
+
"help": {
|
|
323
|
+
"title": "一些帮助",
|
|
324
|
+
"item1": "流程文件支持 name/description/params 等元信息,便于识别和调用",
|
|
325
|
+
"item2": "实体可使用 index.json 或 README.md 描述能力与职责",
|
|
326
|
+
"item3": "创建完成后刷新页面即可出现在这里",
|
|
327
|
+
"footer": "需要更多引导时,可在流程描述中写明使用方式"
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"todo": {
|
|
331
|
+
"noTasks": "未规划任务",
|
|
332
|
+
"progress": "任务进度: {{completed}}/{{total}} 已完成"
|
|
333
|
+
},
|
|
334
|
+
"tools": {
|
|
335
|
+
"read": "读取文件",
|
|
336
|
+
"write": "写入文件",
|
|
337
|
+
"bash": "Bash",
|
|
338
|
+
"getTaskInfo": "任务详情",
|
|
339
|
+
"listTasks": "任务列表",
|
|
340
|
+
"listTasksEmpty": "暂无任务",
|
|
341
|
+
"startTasks": "启动任务",
|
|
342
|
+
"startTasksBackground": "后台任务",
|
|
343
|
+
"startTasksForeground": "前台任务",
|
|
344
|
+
"startTasksEmpty": "未提供任务",
|
|
345
|
+
"startTasksStarted": "已启动",
|
|
346
|
+
"startTasksFailed": "失败",
|
|
347
|
+
"startTasksLogs": "任务日志",
|
|
348
|
+
"task": "任务",
|
|
349
|
+
"taskExitCode": "退出码: {{code}}",
|
|
350
|
+
"writeSuccess": "写入成功",
|
|
351
|
+
"writeFailed": "写入失败",
|
|
352
|
+
"todo": "任务规划",
|
|
353
|
+
"call": "调用",
|
|
354
|
+
"reading": "正在读取文件...",
|
|
355
|
+
"unknown": "未知工具"
|
|
356
|
+
},
|
|
357
|
+
"sessionSettings": "会话设置",
|
|
358
|
+
"enterTitle": "输入会话标题...",
|
|
359
|
+
"tags": "标签",
|
|
360
|
+
"addTagPlaceholder": "添加新标签并按回车...",
|
|
361
|
+
"noTags": "暂无标签",
|
|
362
|
+
"title": "标题",
|
|
363
|
+
"newSessionPlaceholder": "输入消息以创建新会话..."
|
|
364
|
+
},
|
|
365
|
+
"config": {
|
|
366
|
+
"title": "系统配置",
|
|
367
|
+
"readOnlyHint": "配置支持在线编辑,保存后会写入对应的 json/yaml 配置文件。",
|
|
368
|
+
"loadFailed": "配置加载失败",
|
|
369
|
+
"editHint": "修改后会自动保存到当前来源配置文件,可用于项目或用户级别覆盖。",
|
|
370
|
+
"maskHint": "敏感字段已脱敏展示,保留 ****** 可保持原值。",
|
|
371
|
+
"invalidJson": "JSON 格式错误,请修正后再保存。",
|
|
372
|
+
"saveSuccess": "配置已保存",
|
|
373
|
+
"saveFailed": "配置保存失败",
|
|
374
|
+
"copySuccess": "配置已复制",
|
|
375
|
+
"copyFailed": "复制失败",
|
|
376
|
+
"sources": {
|
|
377
|
+
"project": "项目",
|
|
378
|
+
"user": "用户",
|
|
379
|
+
"projectMissing": "项目(未创建)",
|
|
380
|
+
"userMissing": "用户(未创建)"
|
|
381
|
+
},
|
|
382
|
+
"actions": {
|
|
383
|
+
"edit": "编辑",
|
|
384
|
+
"save": "保存",
|
|
385
|
+
"cancel": "取消",
|
|
386
|
+
"format": "格式化",
|
|
387
|
+
"copy": "复制"
|
|
388
|
+
},
|
|
389
|
+
"editor": {
|
|
390
|
+
"addField": "添加字段",
|
|
391
|
+
"addItem": "添加项",
|
|
392
|
+
"remove": "移除",
|
|
393
|
+
"collapse": "折叠",
|
|
394
|
+
"expand": "展开",
|
|
395
|
+
"addAdapter": "添加适配器",
|
|
396
|
+
"addPlugin": "添加插件",
|
|
397
|
+
"addMcpServer": "添加 MCP 服务",
|
|
398
|
+
"addModelService": "添加模型服务",
|
|
399
|
+
"addMarketplace": "添加市场",
|
|
400
|
+
"addEnvVar": "添加环境变量",
|
|
401
|
+
"addHeader": "添加请求头",
|
|
402
|
+
"addEntry": "添加条目",
|
|
403
|
+
"shortcutPlaceholder": "按下快捷键",
|
|
404
|
+
"clearShortcut": "清除快捷键",
|
|
405
|
+
"newModelServiceName": "新增模型服务名称",
|
|
406
|
+
"newAdapterName": "新增适配器名称",
|
|
407
|
+
"newPluginName": "新增插件名称",
|
|
408
|
+
"newMcpServerName": "新增 MCP 服务名称",
|
|
409
|
+
"newMarketplaceName": "新增市场名称",
|
|
410
|
+
"newEnvVarName": "新增环境变量名称",
|
|
411
|
+
"newHeaderName": "新增请求头名称",
|
|
412
|
+
"fieldKey": "字段名",
|
|
413
|
+
"fieldValue": "字段值",
|
|
414
|
+
"complexPlaceholder": "复杂结构请使用 JSON 输入",
|
|
415
|
+
"secretPlaceholder": "请输入密钥",
|
|
416
|
+
"itemPlaceholder": "请输入内容",
|
|
417
|
+
"commandPlaceholder": "请输入命令",
|
|
418
|
+
"urlPlaceholder": "请输入地址",
|
|
419
|
+
"multilinePlaceholder": "请输入内容",
|
|
420
|
+
"defaultAdapterPlaceholder": "请选择适配器",
|
|
421
|
+
"defaultModelServicePlaceholder": "请选择模型服务",
|
|
422
|
+
"defaultModelPlaceholder": "请选择模型",
|
|
423
|
+
"titlePlaceholder": "请输入标题",
|
|
424
|
+
"descriptionPlaceholder": "请输入描述",
|
|
425
|
+
"complexValue": "复杂结构",
|
|
426
|
+
"tagsPlaceholder": "输入后回车",
|
|
427
|
+
"types": {
|
|
428
|
+
"string": "文本",
|
|
429
|
+
"number": "数字",
|
|
430
|
+
"boolean": "开关",
|
|
431
|
+
"object": "对象",
|
|
432
|
+
"array": "数组"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
"fields": {
|
|
436
|
+
"general": {
|
|
437
|
+
"baseDir": {
|
|
438
|
+
"label": "工作目录",
|
|
439
|
+
"desc": "配置文件和缓存的默认目录"
|
|
440
|
+
},
|
|
441
|
+
"defaultAdapter": {
|
|
442
|
+
"label": "默认适配器",
|
|
443
|
+
"desc": "未指定时使用的适配器"
|
|
444
|
+
},
|
|
445
|
+
"defaultModelService": {
|
|
446
|
+
"label": "默认模型服务",
|
|
447
|
+
"desc": "未指定时使用的模型服务"
|
|
448
|
+
},
|
|
449
|
+
"defaultModel": {
|
|
450
|
+
"label": "默认模型",
|
|
451
|
+
"desc": "未指定时使用的模型"
|
|
452
|
+
},
|
|
453
|
+
"recommendedModels": {
|
|
454
|
+
"label": "建议模型",
|
|
455
|
+
"desc": "用于模型下拉推荐展示的列表"
|
|
456
|
+
},
|
|
457
|
+
"interfaceLanguage": {
|
|
458
|
+
"label": "界面交互语言",
|
|
459
|
+
"desc": "控制界面显示与交互语言"
|
|
460
|
+
},
|
|
461
|
+
"modelLanguage": {
|
|
462
|
+
"label": "模型对话语言",
|
|
463
|
+
"desc": "控制模型输出语言"
|
|
464
|
+
},
|
|
465
|
+
"announcements": {
|
|
466
|
+
"label": "公告",
|
|
467
|
+
"desc": "新建会话时的提示信息"
|
|
468
|
+
},
|
|
469
|
+
"permissions": {
|
|
470
|
+
"label": "权限",
|
|
471
|
+
"desc": "控制工具与资源的访问策略",
|
|
472
|
+
"allow": {
|
|
473
|
+
"label": "允许"
|
|
474
|
+
},
|
|
475
|
+
"deny": {
|
|
476
|
+
"label": "禁止"
|
|
477
|
+
},
|
|
478
|
+
"ask": {
|
|
479
|
+
"label": "询问"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"env": {
|
|
483
|
+
"label": "环境变量",
|
|
484
|
+
"desc": "覆盖或新增的运行环境变量"
|
|
485
|
+
},
|
|
486
|
+
"notifications": {
|
|
487
|
+
"label": "通知",
|
|
488
|
+
"desc": "会话状态变更时触发通知",
|
|
489
|
+
"disabled": {
|
|
490
|
+
"label": "禁用通知",
|
|
491
|
+
"desc": "关闭后不发送通知"
|
|
492
|
+
},
|
|
493
|
+
"volume": {
|
|
494
|
+
"label": "提示音量",
|
|
495
|
+
"desc": "0-1 或 0-100,0 为静音"
|
|
496
|
+
},
|
|
497
|
+
"events": {
|
|
498
|
+
"completed": {
|
|
499
|
+
"label": "完成通知",
|
|
500
|
+
"desc": "会话完成时触发",
|
|
501
|
+
"disabled": {
|
|
502
|
+
"label": "禁用完成通知",
|
|
503
|
+
"desc": "关闭后不发送完成通知"
|
|
504
|
+
},
|
|
505
|
+
"title": {
|
|
506
|
+
"label": "完成标题",
|
|
507
|
+
"desc": "留空使用默认标题"
|
|
508
|
+
},
|
|
509
|
+
"description": {
|
|
510
|
+
"label": "完成文案",
|
|
511
|
+
"desc": "留空使用默认文案"
|
|
512
|
+
},
|
|
513
|
+
"sound": {
|
|
514
|
+
"label": "完成音频",
|
|
515
|
+
"desc": "音频文件路径,留空使用默认音效"
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"failed": {
|
|
519
|
+
"label": "失败通知",
|
|
520
|
+
"desc": "会话失败时触发",
|
|
521
|
+
"disabled": {
|
|
522
|
+
"label": "禁用失败通知",
|
|
523
|
+
"desc": "关闭后不发送失败通知"
|
|
524
|
+
},
|
|
525
|
+
"title": {
|
|
526
|
+
"label": "失败标题",
|
|
527
|
+
"desc": "留空使用默认标题"
|
|
528
|
+
},
|
|
529
|
+
"description": {
|
|
530
|
+
"label": "失败文案",
|
|
531
|
+
"desc": "留空使用默认文案"
|
|
532
|
+
},
|
|
533
|
+
"sound": {
|
|
534
|
+
"label": "失败音频",
|
|
535
|
+
"desc": "音频文件路径,留空使用默认音效"
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
"terminated": {
|
|
539
|
+
"label": "终止通知",
|
|
540
|
+
"desc": "会话终止时触发",
|
|
541
|
+
"disabled": {
|
|
542
|
+
"label": "禁用终止通知",
|
|
543
|
+
"desc": "关闭后不发送终止通知"
|
|
544
|
+
},
|
|
545
|
+
"title": {
|
|
546
|
+
"label": "终止标题",
|
|
547
|
+
"desc": "留空使用默认标题"
|
|
548
|
+
},
|
|
549
|
+
"description": {
|
|
550
|
+
"label": "终止文案",
|
|
551
|
+
"desc": "留空使用默认文案"
|
|
552
|
+
},
|
|
553
|
+
"sound": {
|
|
554
|
+
"label": "终止音频",
|
|
555
|
+
"desc": "音频文件路径,留空使用默认音效"
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
"waiting_input": {
|
|
559
|
+
"label": "等待输入通知",
|
|
560
|
+
"desc": "会话等待输入时触发",
|
|
561
|
+
"disabled": {
|
|
562
|
+
"label": "禁用等待输入通知",
|
|
563
|
+
"desc": "关闭后不发送等待输入通知"
|
|
564
|
+
},
|
|
565
|
+
"title": {
|
|
566
|
+
"label": "等待输入标题",
|
|
567
|
+
"desc": "留空使用默认标题"
|
|
568
|
+
},
|
|
569
|
+
"description": {
|
|
570
|
+
"label": "等待输入文案",
|
|
571
|
+
"desc": "留空使用默认文案"
|
|
572
|
+
},
|
|
573
|
+
"sound": {
|
|
574
|
+
"label": "等待输入音频",
|
|
575
|
+
"desc": "音频文件路径,留空使用默认音效"
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"conversation": {
|
|
582
|
+
"style": {
|
|
583
|
+
"label": "对话风格",
|
|
584
|
+
"desc": "控制助手的对话风格"
|
|
585
|
+
},
|
|
586
|
+
"customInstructions": {
|
|
587
|
+
"label": "自定义指令",
|
|
588
|
+
"desc": "为对话提供额外的提示与约束"
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"modelServices": {
|
|
592
|
+
"items": {
|
|
593
|
+
"label": "服务明细",
|
|
594
|
+
"desc": "按服务名称平铺配置"
|
|
595
|
+
},
|
|
596
|
+
"item": {
|
|
597
|
+
"title": {
|
|
598
|
+
"label": "展示标题",
|
|
599
|
+
"desc": "用于默认模型服务下拉展示"
|
|
600
|
+
},
|
|
601
|
+
"description": {
|
|
602
|
+
"label": "展示描述",
|
|
603
|
+
"desc": "用于默认模型服务下拉展示"
|
|
604
|
+
},
|
|
605
|
+
"apiBaseUrl": {
|
|
606
|
+
"label": "API 地址",
|
|
607
|
+
"desc": "模型服务的 API 基础地址"
|
|
608
|
+
},
|
|
609
|
+
"apiKey": {
|
|
610
|
+
"label": "API 密钥",
|
|
611
|
+
"desc": "模型服务的访问密钥"
|
|
612
|
+
},
|
|
613
|
+
"models": {
|
|
614
|
+
"label": "模型列表",
|
|
615
|
+
"desc": "该服务支持的模型名称"
|
|
616
|
+
},
|
|
617
|
+
"modelsAlias": {
|
|
618
|
+
"label": "模型别名",
|
|
619
|
+
"desc": "模型别名映射"
|
|
620
|
+
},
|
|
621
|
+
"extra": {
|
|
622
|
+
"label": "扩展配置",
|
|
623
|
+
"desc": "模型服务扩展参数"
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
"adapters": {
|
|
628
|
+
"items": {
|
|
629
|
+
"label": "适配器明细",
|
|
630
|
+
"desc": "按适配器名称平铺配置"
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"items": {
|
|
635
|
+
"label": "插件配置",
|
|
636
|
+
"desc": "按插件名称平铺配置"
|
|
637
|
+
},
|
|
638
|
+
"enabled": {
|
|
639
|
+
"label": "启用插件",
|
|
640
|
+
"desc": "控制插件启用状态"
|
|
641
|
+
},
|
|
642
|
+
"marketplaces": {
|
|
643
|
+
"label": "额外插件源",
|
|
644
|
+
"desc": "新增可用的插件市场来源"
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"mcp": {
|
|
648
|
+
"mcpServers": {
|
|
649
|
+
"label": "MCP 服务器",
|
|
650
|
+
"desc": "配置 MCP 服务器的连接信息"
|
|
651
|
+
},
|
|
652
|
+
"defaultIncludeMcpServers": {
|
|
653
|
+
"label": "默认启用列表",
|
|
654
|
+
"desc": "默认启用的 MCP 服务器"
|
|
655
|
+
},
|
|
656
|
+
"defaultExcludeMcpServers": {
|
|
657
|
+
"label": "默认禁用列表",
|
|
658
|
+
"desc": "默认禁用的 MCP 服务器"
|
|
659
|
+
},
|
|
660
|
+
"noDefaultVibeForgeMcpServer": {
|
|
661
|
+
"label": "禁用内置 MCP",
|
|
662
|
+
"desc": "不启用内置 VibeForge MCP 服务器"
|
|
663
|
+
},
|
|
664
|
+
"items": {
|
|
665
|
+
"label": "服务器明细",
|
|
666
|
+
"desc": "按服务器名称平铺配置"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"mcpServer": {
|
|
670
|
+
"enabled": {
|
|
671
|
+
"label": "是否启用",
|
|
672
|
+
"desc": "控制当前 MCP 服务器的启用状态"
|
|
673
|
+
},
|
|
674
|
+
"type": {
|
|
675
|
+
"label": "连接类型",
|
|
676
|
+
"desc": "选择 MCP 服务器的连接方式"
|
|
677
|
+
},
|
|
678
|
+
"command": {
|
|
679
|
+
"label": "命令",
|
|
680
|
+
"desc": "本地命令启动方式"
|
|
681
|
+
},
|
|
682
|
+
"args": {
|
|
683
|
+
"label": "命令参数",
|
|
684
|
+
"desc": "启动命令的参数列表"
|
|
685
|
+
},
|
|
686
|
+
"url": {
|
|
687
|
+
"label": "服务地址",
|
|
688
|
+
"desc": "远程 MCP 服务地址"
|
|
689
|
+
},
|
|
690
|
+
"headers": {
|
|
691
|
+
"label": "请求头",
|
|
692
|
+
"desc": "连接时附带的请求头"
|
|
693
|
+
},
|
|
694
|
+
"env": {
|
|
695
|
+
"label": "环境变量",
|
|
696
|
+
"desc": "为 MCP 服务器注入环境变量"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
"shortcuts": {
|
|
700
|
+
"newSession": {
|
|
701
|
+
"label": "新建会话",
|
|
702
|
+
"desc": "创建新会话的全局快捷键"
|
|
703
|
+
},
|
|
704
|
+
"openConfig": {
|
|
705
|
+
"label": "打开配置",
|
|
706
|
+
"desc": "打开配置页的快捷键"
|
|
707
|
+
},
|
|
708
|
+
"sendMessage": {
|
|
709
|
+
"label": "发送消息",
|
|
710
|
+
"desc": "发送消息的快捷键"
|
|
711
|
+
},
|
|
712
|
+
"clearInput": {
|
|
713
|
+
"label": "清空输入框",
|
|
714
|
+
"desc": "清空输入框内容的快捷键"
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"options": {
|
|
719
|
+
"language": {
|
|
720
|
+
"zh": "中文",
|
|
721
|
+
"en": "English"
|
|
722
|
+
},
|
|
723
|
+
"conversation": {
|
|
724
|
+
"friendly": "友好",
|
|
725
|
+
"programmatic": "程序化"
|
|
726
|
+
},
|
|
727
|
+
"mcp": {
|
|
728
|
+
"command": "命令",
|
|
729
|
+
"sse": "SSE",
|
|
730
|
+
"http": "HTTP"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"sectionGroups": {
|
|
734
|
+
"base": "基础配置",
|
|
735
|
+
"permissions": "工具权限",
|
|
736
|
+
"env": "环境变量",
|
|
737
|
+
"items": "明细配置",
|
|
738
|
+
"plugins": "插件配置"
|
|
739
|
+
},
|
|
740
|
+
"groups": {
|
|
741
|
+
"config": "配置",
|
|
742
|
+
"app": "应用"
|
|
743
|
+
},
|
|
744
|
+
"about": {
|
|
745
|
+
"software": "软件信息",
|
|
746
|
+
"version": "版本",
|
|
747
|
+
"lastRelease": "最后发布时间",
|
|
748
|
+
"checkUpdate": "检查更新",
|
|
749
|
+
"docs": "帮助文档",
|
|
750
|
+
"contact": "联系我们",
|
|
751
|
+
"feedback": "问题反馈",
|
|
752
|
+
"unknown": "未知"
|
|
753
|
+
},
|
|
754
|
+
"sections": {
|
|
755
|
+
"general": "通用",
|
|
756
|
+
"conversation": "会话",
|
|
757
|
+
"modelServices": "模型服务",
|
|
758
|
+
"adapters": "适配器",
|
|
759
|
+
"plugins": "插件",
|
|
760
|
+
"mcp": "MCP",
|
|
761
|
+
"shortcuts": "快捷键",
|
|
762
|
+
"experiments": "实验功能",
|
|
763
|
+
"about": "关于"
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
}
|