codexmate 0.0.39 → 0.0.41
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/README.md +168 -156
- package/README.zh.md +168 -156
- package/cli/agents-files.js +230 -230
- package/cli/analytics-export-args.js +68 -68
- package/cli/archive-helpers.js +453 -453
- package/cli/auth-profiles.js +375 -375
- package/cli/builtin-proxy.js +2144 -2144
- package/cli/claude-proxy.js +1022 -1022
- package/cli/config-bootstrap.js +407 -402
- package/cli/config-health.js +454 -454
- package/cli/doctor-core.js +903 -903
- package/cli/import-skills-url.js +356 -356
- package/cli/local-bridge.js +556 -556
- package/cli/openai-bridge.js +1984 -1984
- package/cli/openclaw-config.js +629 -629
- package/cli/session-convert-args.js +69 -69
- package/cli/session-convert-io.js +82 -82
- package/cli/session-convert.js +150 -150
- package/cli/session-usage.concurrent.js +28 -28
- package/cli/session-usage.js +304 -304
- package/cli/session-usage.models.js +176 -176
- package/cli/skills.js +1141 -1141
- package/cli/update.js +171 -171
- package/cli/zip-commands.js +510 -510
- package/cli.js +16458 -16174
- package/lib/automation.js +404 -404
- package/lib/cli-file-utils.js +151 -151
- package/lib/cli-models-utils.js +440 -440
- package/lib/cli-network-utils.js +190 -190
- package/lib/cli-path-utils.js +85 -85
- package/lib/cli-session-utils.js +121 -121
- package/lib/cli-sessions.js +427 -427
- package/lib/cli-utils.js +155 -155
- package/lib/cli-webhook.js +154 -154
- package/lib/download-artifacts.js +92 -92
- package/lib/mcp-stdio.js +453 -453
- package/lib/task-orchestrator.js +869 -869
- package/lib/text-diff.js +303 -303
- package/lib/win-tray.js +119 -119
- package/lib/workflow-engine.js +340 -340
- package/package.json +77 -77
- package/plugins/README.md +20 -20
- package/plugins/README.zh-CN.md +20 -20
- package/plugins/prompt-templates/comment-polish/index.mjs +25 -25
- package/plugins/prompt-templates/computed.mjs +311 -253
- package/plugins/prompt-templates/index.mjs +8 -8
- package/plugins/prompt-templates/manifest.mjs +18 -15
- package/plugins/prompt-templates/methods.mjs +553 -553
- package/plugins/prompt-templates/overview.mjs +91 -91
- package/plugins/prompt-templates/ownership.mjs +19 -19
- package/plugins/prompt-templates/rule-ack/index.mjs +21 -21
- package/plugins/prompt-templates/storage.mjs +64 -64
- package/plugins/registry.mjs +16 -16
- package/web-ui/app.js +695 -693
- package/web-ui/index.html +37 -37
- package/web-ui/logic.agents-diff.mjs +386 -386
- package/web-ui/logic.claude.mjs +172 -172
- package/web-ui/logic.codex.mjs +69 -69
- package/web-ui/logic.mjs +5 -5
- package/web-ui/logic.runtime.mjs +128 -128
- package/web-ui/logic.session-convert.mjs +70 -70
- package/web-ui/logic.sessions.mjs +782 -782
- package/web-ui/modules/api.mjs +90 -90
- package/web-ui/modules/app.computed.dashboard.mjs +252 -252
- package/web-ui/modules/app.computed.index.mjs +17 -17
- package/web-ui/modules/app.computed.main-tabs.mjs +214 -212
- package/web-ui/modules/app.computed.session.mjs +876 -876
- package/web-ui/modules/app.constants.mjs +15 -15
- package/web-ui/modules/app.methods.agents.mjs +651 -651
- package/web-ui/modules/app.methods.claude-config.mjs +412 -412
- package/web-ui/modules/app.methods.codex-config.mjs +869 -869
- package/web-ui/modules/app.methods.index.mjs +96 -94
- package/web-ui/modules/app.methods.install.mjs +205 -205
- package/web-ui/modules/app.methods.navigation.mjs +804 -804
- package/web-ui/modules/app.methods.openclaw-core.mjs +814 -814
- package/web-ui/modules/app.methods.openclaw-editing.mjs +420 -420
- package/web-ui/modules/app.methods.openclaw-persist.mjs +375 -375
- package/web-ui/modules/app.methods.providers.mjs +601 -601
- package/web-ui/modules/app.methods.runtime.mjs +420 -420
- package/web-ui/modules/app.methods.session-actions.mjs +591 -591
- package/web-ui/modules/app.methods.session-browser.mjs +1018 -1018
- package/web-ui/modules/app.methods.session-timeline.mjs +479 -479
- package/web-ui/modules/app.methods.session-trash.mjs +468 -468
- package/web-ui/modules/app.methods.startup-claude.mjs +554 -548
- package/web-ui/modules/app.methods.task-orchestration.mjs +556 -556
- package/web-ui/modules/app.methods.tool-config-permissions.mjs +87 -0
- package/web-ui/modules/app.methods.webhook.mjs +87 -87
- package/web-ui/modules/config-mode.computed.mjs +124 -124
- package/web-ui/modules/config-template-confirm-pref.mjs +33 -33
- package/web-ui/modules/i18n/locales/en.mjs +1140 -0
- package/web-ui/modules/i18n/locales/ja.mjs +1130 -0
- package/web-ui/modules/i18n/locales/vi.mjs +239 -0
- package/web-ui/modules/i18n/locales/zh.mjs +1143 -0
- package/web-ui/modules/i18n.dict.mjs +14 -3213
- package/web-ui/modules/i18n.mjs +111 -111
- package/web-ui/modules/plugins.computed.mjs +3 -3
- package/web-ui/modules/plugins.methods.mjs +3 -3
- package/web-ui/modules/plugins.storage.mjs +11 -11
- package/web-ui/modules/provider-url-display.mjs +17 -17
- package/web-ui/modules/sessions-filters-url.mjs +138 -138
- package/web-ui/modules/skills.computed.mjs +107 -107
- package/web-ui/modules/skills.methods.mjs +513 -513
- package/web-ui/partials/index/layout-footer.html +13 -13
- package/web-ui/partials/index/layout-header.html +478 -478
- package/web-ui/partials/index/modal-config-template-agents.html +185 -185
- package/web-ui/partials/index/modal-confirm-toast.html +32 -32
- package/web-ui/partials/index/modal-health-check.html +45 -45
- package/web-ui/partials/index/modal-openclaw-config.html +344 -344
- package/web-ui/partials/index/modal-skills.html +200 -200
- package/web-ui/partials/index/modal-webhook.html +42 -42
- package/web-ui/partials/index/modals-basic.html +263 -263
- package/web-ui/partials/index/panel-config-claude.html +187 -157
- package/web-ui/partials/index/panel-config-codex.html +205 -176
- package/web-ui/partials/index/panel-config-openclaw.html +89 -89
- package/web-ui/partials/index/panel-dashboard.html +171 -171
- package/web-ui/partials/index/panel-docs.html +114 -114
- package/web-ui/partials/index/panel-market.html +104 -104
- package/web-ui/partials/index/panel-orchestration.html +391 -391
- package/web-ui/partials/index/panel-plugins.html +253 -253
- package/web-ui/partials/index/panel-sessions.html +319 -319
- package/web-ui/partials/index/panel-settings.html +181 -181
- package/web-ui/partials/index/panel-trash.html +82 -82
- package/web-ui/partials/index/panel-usage.html +181 -181
- package/web-ui/res/json5.min.js +1 -1
- package/web-ui/res/vue.global.prod.js +13 -13
- package/web-ui/res/vue.runtime.global.prod.js +7 -7
- package/web-ui/res/web-ui-render.precompiled.js +7666 -7576
- package/web-ui/session-helpers.mjs +602 -602
- package/web-ui/source-bundle.cjs +305 -305
- package/web-ui/styles/base-theme.css +291 -291
- package/web-ui/styles/bridge-pool.css +266 -266
- package/web-ui/styles/controls-forms.css +532 -439
- package/web-ui/styles/dashboard.css +438 -438
- package/web-ui/styles/docs-panel.css +245 -245
- package/web-ui/styles/feedback.css +108 -108
- package/web-ui/styles/health-check-dialog.css +144 -144
- package/web-ui/styles/layout-shell.css +711 -711
- package/web-ui/styles/modals-core.css +499 -499
- package/web-ui/styles/navigation-panels.css +399 -399
- package/web-ui/styles/openclaw-structured.css +616 -616
- package/web-ui/styles/plugins-panel.css +564 -564
- package/web-ui/styles/responsive.css +501 -501
- package/web-ui/styles/sessions-list.css +683 -683
- package/web-ui/styles/sessions-preview.css +407 -407
- package/web-ui/styles/sessions-toolbar-trash.css +518 -518
- package/web-ui/styles/sessions-usage.css +849 -849
- package/web-ui/styles/settings-panel.css +419 -419
- package/web-ui/styles/skills-list.css +305 -305
- package/web-ui/styles/skills-market.css +723 -723
- package/web-ui/styles/task-orchestration.css +822 -822
- package/web-ui/styles/titles-cards.css +486 -486
- package/web-ui/styles/trash-panel.css +90 -90
- package/web-ui/styles/webhook.css +115 -115
- package/web-ui/styles.css +24 -24
- package/web-ui.html +17 -17
|
@@ -1,3213 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
'common.update': '升级',
|
|
16
|
-
'common.uninstall': '卸载',
|
|
17
|
-
'common.official': '官方',
|
|
18
|
-
'common.custom': '自定义',
|
|
19
|
-
'common.rules': '规则',
|
|
20
|
-
'common.troubleshooting': '排障提示',
|
|
21
|
-
'common.command': '命令',
|
|
22
|
-
'common.mirror': '镜像源',
|
|
23
|
-
'common.packageManager': '包管理器',
|
|
24
|
-
'common.action': '操作',
|
|
25
|
-
'common.targets': '目标数',
|
|
26
|
-
'common.currentPm': '当前包管理器',
|
|
27
|
-
'common.currentAction': '当前操作',
|
|
28
|
-
'common.mirrorActive': '镜像',
|
|
29
|
-
'common.defaultOfficial': '官方默认',
|
|
30
|
-
'common.cancel': '取消',
|
|
31
|
-
'common.confirm': '确认',
|
|
32
|
-
'common.add': '添加',
|
|
33
|
-
'common.save': '保存',
|
|
34
|
-
'common.saveApply': '保存并应用',
|
|
35
|
-
'common.close': '关闭',
|
|
36
|
-
'common.delete': '删除',
|
|
37
|
-
'common.clear': '清空',
|
|
38
|
-
'common.show': '显示',
|
|
39
|
-
'common.hide': '隐藏',
|
|
40
|
-
'common.detail': '详情',
|
|
41
|
-
'common.refresh': '刷新',
|
|
42
|
-
'common.refreshing': '刷新中...',
|
|
43
|
-
'common.loading': '加载中...',
|
|
44
|
-
'common.saving': '保存中...',
|
|
45
|
-
'common.sending': '发送中...',
|
|
46
|
-
'common.scanning': '扫描中...',
|
|
47
|
-
'common.export': '导出',
|
|
48
|
-
'common.import': '导入',
|
|
49
|
-
'common.apply': '应用',
|
|
50
|
-
'common.applying': '应用中...',
|
|
51
|
-
'common.confirming': '确认中...',
|
|
52
|
-
'common.writeToEditor': '写入编辑器',
|
|
53
|
-
'common.refreshFromText': '从文本刷新',
|
|
54
|
-
'common.backToEdit': '返回编辑',
|
|
55
|
-
'common.selectAll': '全选',
|
|
56
|
-
'common.unselectAll': '取消全选',
|
|
57
|
-
'common.resetFilters': '重置筛选',
|
|
58
|
-
'common.notEditable': '不可编辑',
|
|
59
|
-
'common.notDeletable': '不可删除',
|
|
60
|
-
'common.notLoaded': '未加载',
|
|
61
|
-
'common.exists': '已存在',
|
|
62
|
-
'common.notExistsWillCreateOnApply': '不存在,将在应用时创建',
|
|
63
|
-
'common.notExistsWillCreateOnSave': '不存在,将在保存时创建',
|
|
64
|
-
'common.none': '暂无',
|
|
65
|
-
'cli.missing.title': '{name} CLI 未安装',
|
|
66
|
-
'cli.missing.subtitle': '请先安装 {name} CLI 后再继续使用此页面。',
|
|
67
|
-
'cli.missing.openDocs': '打开安装指南',
|
|
68
|
-
'cli.missing.commandAria': '{name} CLI 安装命令',
|
|
69
|
-
|
|
70
|
-
// Brand
|
|
71
|
-
'brand.kicker.workspace': '工作区',
|
|
72
|
-
'brand.subtitle.localConfigSessionsWorkspace': '本地配置与会话工作区',
|
|
73
|
-
|
|
74
|
-
// Confirm dialog
|
|
75
|
-
'confirm.aria': '确认操作',
|
|
76
|
-
'confirm.title.default': '请确认操作',
|
|
77
|
-
'confirm.ok': '确认',
|
|
78
|
-
'confirm.cancel': '取消',
|
|
79
|
-
|
|
80
|
-
// Shared fields
|
|
81
|
-
'field.name': '名称',
|
|
82
|
-
'field.configName': '配置名称',
|
|
83
|
-
'field.apiEndpoint': 'API 端点',
|
|
84
|
-
'field.apiKey': '认证密钥',
|
|
85
|
-
'field.baseUrl': 'Base URL',
|
|
86
|
-
'field.provider': '提供商',
|
|
87
|
-
'field.providerName': 'Provider 名称',
|
|
88
|
-
'field.modelName': '模型名称',
|
|
89
|
-
'field.model': '模型',
|
|
90
|
-
'field.message': '消息',
|
|
91
|
-
'field.varName': '变量名',
|
|
92
|
-
'field.targetFile': '目标文件',
|
|
93
|
-
'field.modelId': '模型 ID',
|
|
94
|
-
'field.displayName': '展示名称',
|
|
95
|
-
'field.contextAndMaxOutput': '上下文与最大输出',
|
|
96
|
-
'field.apiType': 'API 类型',
|
|
97
|
-
'field.env': '环境变量',
|
|
98
|
-
'field.allow': 'Allow',
|
|
99
|
-
'field.deny': 'Deny',
|
|
100
|
-
|
|
101
|
-
// Shared placeholders/hints
|
|
102
|
-
'placeholder.providerNameExample': '例如: myapi',
|
|
103
|
-
'placeholder.apiEndpointExample': 'https://api.example.com/v1',
|
|
104
|
-
'placeholder.providerName': '提供商名称',
|
|
105
|
-
'placeholder.keepUnchanged': '留空则保持不变',
|
|
106
|
-
'hint.keepKeyUnchanged': '留空表示不修改密钥',
|
|
107
|
-
'placeholder.modelExample': '例如: gpt-5',
|
|
108
|
-
'placeholder.configNameExample': '例如: 智谱GLM',
|
|
109
|
-
'placeholder.apiKeyExampleClaude': 'sk-ant-...',
|
|
110
|
-
'placeholder.baseUrlExampleClaude': 'https://open.bigmodel.cn/api/anthropic',
|
|
111
|
-
'placeholder.selectProvider': '请选择提供商',
|
|
112
|
-
|
|
113
|
-
// Roles / labels
|
|
114
|
-
'role.you': '你',
|
|
115
|
-
'role.provider': '提供商',
|
|
116
|
-
'label.model': '模型:',
|
|
117
|
-
|
|
118
|
-
// Top tabs
|
|
119
|
-
'tab.dashboard': '概览',
|
|
120
|
-
'tab.docs': '文档',
|
|
121
|
-
'tab.config': '配置',
|
|
122
|
-
'tab.config.codex': 'Codex',
|
|
123
|
-
'tab.config.claude': 'Claude',
|
|
124
|
-
'tab.config.openclaw': 'OpenClaw',
|
|
125
|
-
'tab.sessions': '会话',
|
|
126
|
-
'tab.usage': '用量',
|
|
127
|
-
'tab.orchestration': '任务',
|
|
128
|
-
'tab.market': 'Skills',
|
|
129
|
-
'tab.plugins': '插件',
|
|
130
|
-
'tab.settings': '设置',
|
|
131
|
-
|
|
132
|
-
// Side rail section titles
|
|
133
|
-
'side.overview': '概览',
|
|
134
|
-
'side.docs': '文档',
|
|
135
|
-
'side.config': '配置',
|
|
136
|
-
'side.sessions': '会话',
|
|
137
|
-
'side.plugins': '插件',
|
|
138
|
-
'side.system': '系统',
|
|
139
|
-
'side.orchestration': '任务',
|
|
140
|
-
'side.skills': 'Skills',
|
|
141
|
-
|
|
142
|
-
// Side rail items
|
|
143
|
-
'side.overview.doctor': 'Doctor 面板',
|
|
144
|
-
'side.overview.doctor.meta': '总览 / 诊断 / 跳转',
|
|
145
|
-
'side.docs.cliInstall': 'CLI 安装',
|
|
146
|
-
'side.docs.cliInstall.meta': '安装 / 升级 / 卸载',
|
|
147
|
-
'side.config.codex': 'Codex',
|
|
148
|
-
'side.config.codex.meta': 'Provider / Model',
|
|
149
|
-
'side.config.claude': 'Claude Code',
|
|
150
|
-
'side.config.claude.meta': 'Claude Settings',
|
|
151
|
-
'side.config.openclaw': 'OpenClaw',
|
|
152
|
-
'side.config.openclaw.meta': 'JSON5 / AGENTS',
|
|
153
|
-
'side.sessions.browser': '会话浏览',
|
|
154
|
-
'side.sessions.browser.meta': '浏览 / 导出 / 清理',
|
|
155
|
-
'side.plugins.tools': '提示词工具',
|
|
156
|
-
'side.plugins.tools.meta': '模板 / 变量',
|
|
157
|
-
'side.plugins.templatesCount': '{count} 个模板',
|
|
158
|
-
'side.system.settings': '运行设置',
|
|
159
|
-
'side.system.settings.meta': '数据 / 备份',
|
|
160
|
-
|
|
161
|
-
// Header titles
|
|
162
|
-
'kicker.dashboard': 'Doctor',
|
|
163
|
-
'kicker.config': 'Configuration',
|
|
164
|
-
'kicker.sessions': 'Sessions',
|
|
165
|
-
'kicker.usage': 'Usage',
|
|
166
|
-
'kicker.orchestration': 'Tasks',
|
|
167
|
-
'kicker.market': 'Skills',
|
|
168
|
-
'kicker.plugins': 'Plugins',
|
|
169
|
-
'kicker.docs': 'Docs',
|
|
170
|
-
'kicker.settings': 'Settings',
|
|
171
|
-
|
|
172
|
-
'title.dashboard': 'Dashboard / Doctor',
|
|
173
|
-
'title.config': '本地配置控制台',
|
|
174
|
-
'title.sessions': '会话与导出',
|
|
175
|
-
'title.usage': '本地用量与趋势',
|
|
176
|
-
'title.orchestration': '任务编排',
|
|
177
|
-
'title.market': 'Skills 安装与同步',
|
|
178
|
-
'title.plugins': '插件与模板',
|
|
179
|
-
'title.docs': 'CLI 安装与文档',
|
|
180
|
-
'title.settings': '系统与数据设置',
|
|
181
|
-
|
|
182
|
-
'subtitle.dashboard': '聚合状态与诊断入口。',
|
|
183
|
-
'subtitle.config': '管理本地配置与模型。',
|
|
184
|
-
'subtitle.sessions': '浏览与导出会话。',
|
|
185
|
-
'subtitle.usage': '查看近 7 / 30 天用量。',
|
|
186
|
-
'subtitle.orchestration': '规划、排队、执行与回看本地任务。',
|
|
187
|
-
'subtitle.market': '管理本地 Skills。',
|
|
188
|
-
'subtitle.plugins': '管理模板化 prompt 与可复用插件。',
|
|
189
|
-
'subtitle.docs': '查看 CLI 安装命令与排障。',
|
|
190
|
-
'subtitle.settings': '管理下载、目录与回收站。',
|
|
191
|
-
'dashboard.doctor.title': 'Doctor',
|
|
192
|
-
'dashboard.doctor.runChecks': '运行检查',
|
|
193
|
-
'dashboard.doctor.checking': '检查中...',
|
|
194
|
-
'dashboard.doctor.export': '导出报告',
|
|
195
|
-
'dashboard.doctor.export.json': '导出 JSON',
|
|
196
|
-
'dashboard.doctor.export.md': '导出 Markdown',
|
|
197
|
-
'dashboard.doctor.open': '打开',
|
|
198
|
-
'doctor.action.openConfig': '打开 Config',
|
|
199
|
-
'doctor.action.checkProvider': '检查 Provider 配置',
|
|
200
|
-
'doctor.action.openUsage': '打开 Usage',
|
|
201
|
-
'doctor.action.openSessions': '打开 Sessions',
|
|
202
|
-
'doctor.action.openTasks': '打开 Tasks',
|
|
203
|
-
'doctor.action.viewTaskLogs': '查看 Tasks / Logs',
|
|
204
|
-
'doctor.action.openSkills': '打开 Skills',
|
|
205
|
-
'doctor.issue.configNotReady.problem': '配置文件未就绪',
|
|
206
|
-
'doctor.issue.configNotReady.impact': '可能导致 provider/model 无法读取,模型列表与请求将不可用。',
|
|
207
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-unreachable': 'Provider 不可达',
|
|
208
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-auth-failed': 'Provider 鉴权失败',
|
|
209
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-not-found': 'Provider 返回 404',
|
|
210
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-http-error': 'Provider 返回 HTTP 错误',
|
|
211
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-error': 'Provider 探测失败',
|
|
212
|
-
'doctor.issue.providerUnreachable.problem.unknown': 'Provider 不可用',
|
|
213
|
-
'doctor.issue.providerUnreachable.impactAuth': '鉴权失败会导致模型列表/对话请求返回 401/403。',
|
|
214
|
-
'doctor.issue.providerUnreachable.impactNetwork': '远端不可达会导致模型列表/对话请求失败或超时。',
|
|
215
|
-
'doctor.issue.configHealthFailed.problem': '配置健康检查未通过',
|
|
216
|
-
'doctor.issue.configHealthFailed.impact': '可能导致部分功能不可用或行为不符合预期。',
|
|
217
|
-
'doctor.issue.usageError.problem': 'Usage 统计异常',
|
|
218
|
-
'doctor.issue.usageError.impact': 'Usage 页面可能无法展示趋势/汇总,Doctor 的用量诊断也会缺失。',
|
|
219
|
-
'doctor.issue.usageMissingModel.problem': '部分会话缺少模型信息',
|
|
220
|
-
'doctor.issue.usageMissingModel.impact': '会导致用量归因与成本估算不准确。',
|
|
221
|
-
'doctor.issue.tasksError.problem': 'Tasks 状态读取失败',
|
|
222
|
-
'doctor.issue.tasksError.impact': '可能导致编排队列/运行记录无法展示。',
|
|
223
|
-
'doctor.issue.tasksFailed.problem': '存在失败的任务运行',
|
|
224
|
-
'doctor.issue.tasksFailed.impact': '可能导致自动化流水线中断,需要查看日志并重试或修复输入。',
|
|
225
|
-
'doctor.issue.skillsError.problem': 'Skills 列表读取失败',
|
|
226
|
-
'doctor.issue.skillsError.impact': '会导致 Skills 页面无法正常展示或安装。',
|
|
227
|
-
'doctor.issue.skillsRootMissing.problem': 'Skills 目录不存在',
|
|
228
|
-
'doctor.issue.skillsRootMissing.impact': '会导致 Skills 安装/扫描为空;可在 Settings/Docs 按指引初始化目录。',
|
|
229
|
-
'doctor.issue.skillsMissingFiles.problem': '存在缺失 skill.json 的技能',
|
|
230
|
-
'doctor.issue.skillsMissingFiles.impact': '会导致部分技能无法被运行或同步。',
|
|
231
|
-
'dashboard.card.config': '配置',
|
|
232
|
-
'dashboard.card.sessions': '会话',
|
|
233
|
-
'dashboard.card.usage': '用量',
|
|
234
|
-
'dashboard.card.tasks': '任务',
|
|
235
|
-
'dashboard.card.skills': 'Skills',
|
|
236
|
-
'dashboard.kv.model': '模型',
|
|
237
|
-
'dashboard.kv.issue': '异常',
|
|
238
|
-
'dashboard.kv.active': '当前',
|
|
239
|
-
'dashboard.kv.sessions': '会话数',
|
|
240
|
-
'dashboard.kv.missingModel': '缺失模型',
|
|
241
|
-
'dashboard.kv.blockers': '阻塞',
|
|
242
|
-
'dashboard.kv.runs': '运行',
|
|
243
|
-
'dashboard.kv.target': '目标',
|
|
244
|
-
'dashboard.kv.root': '目录',
|
|
245
|
-
'dashboard.status.health': '健康',
|
|
246
|
-
'dashboard.status.busy': '忙闲',
|
|
247
|
-
'dashboard.status.models': '模型',
|
|
248
|
-
'dashboard.busy.init': '初始化',
|
|
249
|
-
'dashboard.busy.sessions': '会话加载',
|
|
250
|
-
'dashboard.busy.models': '模型加载',
|
|
251
|
-
'dashboard.busy.configApply': '配置应用',
|
|
252
|
-
'dashboard.busy.agents': 'AGENTS 保存',
|
|
253
|
-
'dashboard.busy.skills': 'Skills 管理',
|
|
254
|
-
'dashboard.busy.tasks': '任务编排',
|
|
255
|
-
'dashboard.busy.idle': '空闲',
|
|
256
|
-
'dashboard.message.none': '暂无提示',
|
|
257
|
-
'dashboard.sessionSource.codex': 'Codex',
|
|
258
|
-
'dashboard.sessionSource.claude': 'Claude Code',
|
|
259
|
-
'dashboard.sessionSource.gemini': 'Gemini CLI',
|
|
260
|
-
'dashboard.sessionSource.codebuddy': 'CodeBuddy Code',
|
|
261
|
-
'dashboard.sessionSource.all': '全部',
|
|
262
|
-
'dashboard.sessionPath.all': '全部路径',
|
|
263
|
-
'dashboard.sessionQuery.unsupported': '当前来源不支持',
|
|
264
|
-
'dashboard.sessionQuery.unset': '未设置',
|
|
265
|
-
'dashboard.healthStatus.failRead': '读取失败',
|
|
266
|
-
'dashboard.healthStatus.initializing': '初始化中',
|
|
267
|
-
'dashboard.healthStatus.ok': '正常',
|
|
268
|
-
'dashboard.modelStatus.loading': '加载中',
|
|
269
|
-
'dashboard.modelStatus.error': '加载异常',
|
|
270
|
-
'dashboard.modelStatus.ok': '正常',
|
|
271
|
-
'dashboard.health.ok': '检查通过',
|
|
272
|
-
'dashboard.health.fail': '检查失败',
|
|
273
|
-
'dashboard.health.issues': '{count} 条问题',
|
|
274
|
-
'dashboard.issues.title': '发现 {count} 条可操作问题',
|
|
275
|
-
'dashboard.state.loading': '加载中',
|
|
276
|
-
'dashboard.state.ready': '就绪',
|
|
277
|
-
'dashboard.state.idle': '未加载',
|
|
278
|
-
'dashboard.none': '无',
|
|
279
|
-
'dashboard.sessions.count': '{count} 条会话',
|
|
280
|
-
'dashboard.usage.range': '范围 {value}',
|
|
281
|
-
'dashboard.tasks.queue': 'run {running} / queue {queued}',
|
|
282
|
-
'dashboard.skills.count': 'installed {installed} / import {importable}',
|
|
283
|
-
'dashboard.providersHealth.title': 'Provider 健康状态',
|
|
284
|
-
'dashboard.providersHealth.current': '(当前)',
|
|
285
|
-
'dashboard.providersHealth.checking': '检查中...',
|
|
286
|
-
'dashboard.providersHealth.allOk': '所有 Provider 正常',
|
|
287
|
-
'dashboard.providersHealth.hasIssues': '{count} 个 Provider 存在问题',
|
|
288
|
-
|
|
289
|
-
// Plugins panel
|
|
290
|
-
'plugins.sidebar.title': 'Plugins',
|
|
291
|
-
'plugins.sidebar.note': '可复用的标准化工具。未来自定义插件应遵循相同结构。',
|
|
292
|
-
'plugins.sidebar.ariaList': '插件列表',
|
|
293
|
-
'plugins.main.ariaWorkspace': '插件工作区',
|
|
294
|
-
'plugins.refresh': '刷新',
|
|
295
|
-
'plugins.refreshing': '刷新中...',
|
|
296
|
-
'plugins.promptTemplates.title': '提示词模板',
|
|
297
|
-
'plugins.promptTemplates.subtitle': '内置:代码注释润色({{code}})。复制后直接粘贴到输入框即可。',
|
|
298
|
-
'plugins.promptTemplates.mode.aria': '提示词模板模式',
|
|
299
|
-
'plugins.promptTemplates.mode.compose': '生成',
|
|
300
|
-
'plugins.promptTemplates.mode.manage': '管理',
|
|
301
|
-
'plugins.promptTemplates.compose.selectTemplate': '选择模板',
|
|
302
|
-
'plugins.promptTemplates.compose.chooseTemplate': '选择模板',
|
|
303
|
-
'plugins.promptTemplates.compose.chooseTemplateHint': '请选择一个模板开始生成。',
|
|
304
|
-
'plugins.promptTemplates.compose.builtinSuffix': '(内置)',
|
|
305
|
-
'plugins.promptTemplates.compose.empty': '暂无可用模板。',
|
|
306
|
-
'plugins.promptTemplates.compose.varsHint': '变量填写与新增请在「管理」中进行。',
|
|
307
|
-
'plugins.promptTemplates.compose.missingCount': '未填 {count} 项',
|
|
308
|
-
'plugins.promptTemplates.compose.jumpToMissing': '跳到未填',
|
|
309
|
-
'plugins.promptTemplates.compose.goManage': '去管理填写变量',
|
|
310
|
-
'plugins.promptTemplates.compose.outputTitle': '生成结果',
|
|
311
|
-
'plugins.promptTemplates.compose.outputHint': '点“复制”后直接粘贴到 Codex/Claude 输入框。',
|
|
312
|
-
'plugins.promptTemplates.compose.outputAria': '生成结果(提示词)',
|
|
313
|
-
'plugins.promptTemplates.compose.copy': '复制',
|
|
314
|
-
'plugins.promptTemplates.manage.searchAria': '搜索模板',
|
|
315
|
-
'plugins.promptTemplates.manage.searchPlaceholder': '搜索模板',
|
|
316
|
-
'plugins.promptTemplates.manage.create': '新建',
|
|
317
|
-
'plugins.promptTemplates.manage.export': '导出',
|
|
318
|
-
'plugins.promptTemplates.manage.import': '导入',
|
|
319
|
-
'plugins.promptTemplates.manage.loading': '正在加载模板...',
|
|
320
|
-
'plugins.promptTemplates.manage.empty': '暂无模板。',
|
|
321
|
-
'plugins.promptTemplates.manage.vars': '{count} vars',
|
|
322
|
-
'plugins.promptTemplates.manage.builtin': 'built-in',
|
|
323
|
-
'plugins.promptTemplates.manage.custom': 'custom',
|
|
324
|
-
'plugins.promptTemplates.manage.newTemplateName': '新模板',
|
|
325
|
-
'plugins.promptTemplates.editor.selectHint': '请选择一个模板进行编辑。',
|
|
326
|
-
'plugins.promptTemplates.editor.namePlaceholder': '模板名称',
|
|
327
|
-
'plugins.promptTemplates.editor.nameAria': '模板名称',
|
|
328
|
-
'plugins.promptTemplates.editor.duplicate': '复制',
|
|
329
|
-
'plugins.promptTemplates.editor.delete': '删除',
|
|
330
|
-
'plugins.promptTemplates.editor.save': '保存',
|
|
331
|
-
'plugins.promptTemplates.editor.builtinReadOnly': '内置模板为只读,不支持编辑/保存/删除/复制。',
|
|
332
|
-
'plugins.promptTemplates.editor.descPlaceholder': '描述(可选)',
|
|
333
|
-
'plugins.promptTemplates.editor.descAria': '模板描述',
|
|
334
|
-
'plugins.promptTemplates.editor.templateLabel': '模板',
|
|
335
|
-
'plugins.promptTemplates.editor.templateAria': '模板内容',
|
|
336
|
-
'plugins.promptTemplates.editor.templatePlaceholder': '在这里编写模板。使用 {{var}} 占位符。',
|
|
337
|
-
'plugins.promptTemplates.vars.title': '变量',
|
|
338
|
-
'plugins.promptTemplates.vars.hint': '从模板中检测。填写后可渲染最终提示词。',
|
|
339
|
-
'plugins.promptTemplates.vars.reset': '重置',
|
|
340
|
-
'plugins.promptTemplates.vars.empty': '未检测到变量。',
|
|
341
|
-
'plugins.promptTemplates.vars.valuePlaceholder': '变量值:{name}',
|
|
342
|
-
'plugins.promptTemplates.preview.title': '预览',
|
|
343
|
-
'plugins.promptTemplates.preview.hint': '渲染结果(缺失变量会替换为空)。',
|
|
344
|
-
'plugins.promptTemplates.preview.copy': '复制',
|
|
345
|
-
'plugins.promptTemplates.preview.outputAria': '渲染结果(提示词)',
|
|
346
|
-
'plugins.promptTemplates.noPluginSelected': '请先从左侧选择一个插件。',
|
|
347
|
-
|
|
348
|
-
'plugins.meta.attribution': '创建者:{createdBy} · 维护者:{maintainers}',
|
|
349
|
-
'plugins.meta.createdBy': '创建者:{createdBy}',
|
|
350
|
-
'plugins.meta.maintainedBy': '维护者:{maintainers}',
|
|
351
|
-
|
|
352
|
-
// Built-in prompt templates
|
|
353
|
-
'plugins.builtin.commentPolish.name': '代码注释润色',
|
|
354
|
-
'plugins.builtin.commentPolish.desc': '轻微收敛以下代码注释 {{code}}',
|
|
355
|
-
'plugins.builtin.commentPolish.line1': '轻微收敛以下代码注释',
|
|
356
|
-
'plugins.builtin.ruleAck.name': '规则确认回复',
|
|
357
|
-
'plugins.builtin.ruleAck.desc': '请根据【{{rule}}】,收到请回复',
|
|
358
|
-
'plugins.builtin.ruleAck.line1': '请根据【{{rule}}】,收到请回复',
|
|
359
|
-
|
|
360
|
-
// Toasts
|
|
361
|
-
'toast.copy.empty': '没有可复制内容',
|
|
362
|
-
'toast.copy.ok': '已复制',
|
|
363
|
-
'toast.copy.fail': '复制失败',
|
|
364
|
-
'toast.save.ok': '已保存',
|
|
365
|
-
'toast.save.fail': '保存失败',
|
|
366
|
-
'toast.delete.ok': '已删除',
|
|
367
|
-
'toast.delete.fail': '删除失败',
|
|
368
|
-
'toast.export.empty': '没有可导出内容',
|
|
369
|
-
'toast.export.ok': '已导出',
|
|
370
|
-
'toast.export.fail': '导出失败',
|
|
371
|
-
'toast.import.ok': '导入成功',
|
|
372
|
-
'toast.import.fail': '导入失败',
|
|
373
|
-
'toast.import.notAvailable': '导入不可用',
|
|
374
|
-
'toast.import.readFileFail': '读取文件失败',
|
|
375
|
-
'toast.import.invalidJson': 'JSON 无效',
|
|
376
|
-
'toast.import.expectedArray': 'JSON 必须为数组',
|
|
377
|
-
'toast.export.notSupported': '当前不支持导出',
|
|
378
|
-
'toast.plugins.loadFail': '加载 Plugins 失败',
|
|
379
|
-
'toast.templates.builtinNotEditable': '内置模板不可编辑',
|
|
380
|
-
'toast.templates.builtinNotModifiable': '内置模板不可修改,请先复制再编辑',
|
|
381
|
-
'toast.templates.nameRequired': '模板名称不能为空',
|
|
382
|
-
'toast.templates.builtinNotDuplicable': '内置模板不可复制',
|
|
383
|
-
'toast.templates.builtinNotDeletable': '内置模板不可删除',
|
|
384
|
-
'toast.templates.deleteTitle': '删除模板',
|
|
385
|
-
'toast.templates.deleteMessage': '删除“{name}”?此操作无法撤销。',
|
|
386
|
-
'toast.templates.deleteConfirm': '删除',
|
|
387
|
-
'toast.templates.deleteCancel': '取消',
|
|
388
|
-
|
|
389
|
-
// Basic modals
|
|
390
|
-
'modal.providerAdd.title': '添加提供商',
|
|
391
|
-
'modal.providerEdit.title': '编辑提供商',
|
|
392
|
-
'modal.modelAdd.title': '添加模型',
|
|
393
|
-
'modal.modelManage.title': '管理模型',
|
|
394
|
-
'modal.claudeConfigAdd.title': '添加 Claude Code 配置',
|
|
395
|
-
'modal.claudeConfigEdit.title': '编辑 Claude Code 配置',
|
|
396
|
-
'field.useBuiltinTransform': '使用内建转换(兼容 OpenAI 格式)',
|
|
397
|
-
'hint.useBuiltinTransform': '开启后:写入的 base_url 会指向 codexmate 内建转换服务;Codex 使用的令牌固定为 codexmate。',
|
|
398
|
-
|
|
399
|
-
// Config template / agents modals
|
|
400
|
-
'modal.configTemplate.title': 'Config 模板编辑器(手动确认应用)',
|
|
401
|
-
'modal.configTemplate.label': 'config.toml 模板',
|
|
402
|
-
'modal.configTemplate.placeholder': '在这里编辑 config.toml 模板内容',
|
|
403
|
-
'modal.configTemplate.mode.twoStep': '两步确认:先预览差异,再应用写入。',
|
|
404
|
-
'modal.configTemplate.mode.oneStep': '一步应用:点击“应用”直接写入。',
|
|
405
|
-
'diff.title.configTemplate': '差异预览(config.toml)',
|
|
406
|
-
'diff.generating': '生成中...',
|
|
407
|
-
'diff.failed': '生成失败',
|
|
408
|
-
'diff.noChanges': '未检测到改动',
|
|
409
|
-
'diff.hint.busy': '正在生成差异或应用中,操作暂不可用。',
|
|
410
|
-
'diff.hint.failedBack': '差异预览失败,请返回编辑后重试。',
|
|
411
|
-
'diff.hint.noChangesBack': '未检测到改动,可返回编辑继续修改或取消退出。',
|
|
412
|
-
'diff.hint.previewMode': '当前为预览模式,可点击“应用”写入或“返回编辑”继续修改。',
|
|
413
|
-
|
|
414
|
-
'modal.agents.export': '导出',
|
|
415
|
-
'modal.agents.copy': '复制',
|
|
416
|
-
'modal.agents.title': 'AGENTS.md 编辑器',
|
|
417
|
-
'modal.agents.hint': '保存后会写入目标 AGENTS.md(与 config.toml 同级)。',
|
|
418
|
-
'modal.agents.targetFile': '目标文件',
|
|
419
|
-
'modal.agents.contentLabel': 'AGENTS.md 内容',
|
|
420
|
-
'modal.agents.placeholder': '在这里编辑 AGENTS.md 内容',
|
|
421
|
-
'modal.agents.unsaved.previewModeHint': '预览模式:当前改动尚未保存,只有点击“应用”后才会写入文件。',
|
|
422
|
-
'modal.agents.unsaved.detectedHint': '检测到未保存改动:关闭页面或应用前请先保存。',
|
|
423
|
-
'modal.agents.hint.shortcuts': '快捷键:Esc(差异预览时返回编辑,编辑时关闭窗口)。',
|
|
424
|
-
'modal.agents.hint.twoStepSave': '保存需两步:先点击“确认”预览差异,再点击“应用”保存。',
|
|
425
|
-
'diff.tooLargeSkip': '内容过大,已跳过逐行差异预览',
|
|
426
|
-
'diff.viewHint.preview': '当前为预览模式,可点击“应用”保存或“返回编辑”继续修改。',
|
|
427
|
-
'diff.viewHint.truncated': '内容过大,已跳过预览,可点击“应用”保存或“返回编辑”继续修改。',
|
|
428
|
-
|
|
429
|
-
// Skills modal
|
|
430
|
-
'modal.skills.title': 'Skills 管理',
|
|
431
|
-
'modal.skills.subtitle': '管理当前宿主的本地 Skills。',
|
|
432
|
-
'modal.skills.target.aria': '选择 Skills 管理目标',
|
|
433
|
-
'modal.skills.rootDir': 'Skills 目录({label})',
|
|
434
|
-
'modal.skills.summary.target': '安装目标',
|
|
435
|
-
'modal.skills.summary.total': '本地总数',
|
|
436
|
-
'modal.skills.summary.withSkill': '含 SKILL.md',
|
|
437
|
-
'modal.skills.summary.missingSkill': '缺少 SKILL.md',
|
|
438
|
-
'modal.skills.summary.importable': '可导入',
|
|
439
|
-
'modal.skills.panel.aria': 'Skills 管理面板',
|
|
440
|
-
'modal.skills.local.title': '本地 Skills',
|
|
441
|
-
'modal.skills.local.note': '可检索、筛选与批量删除。',
|
|
442
|
-
'modal.skills.filter.keywordAria': '按名称或描述筛选 skill',
|
|
443
|
-
'modal.skills.filter.keywordPlaceholder': '按目录名/显示名/描述检索',
|
|
444
|
-
'modal.skills.filter.statusAria': '按 SKILL.md 状态筛选 skill',
|
|
445
|
-
'modal.skills.filter.status.all': '全部状态',
|
|
446
|
-
'modal.skills.filter.status.withSkill': '仅含 SKILL.md',
|
|
447
|
-
'modal.skills.filter.status.missingSkill': '仅缺少 SKILL.md',
|
|
448
|
-
'modal.skills.selection.stats': '已选 {selected}(筛选命中 {filtered} / {total},筛选内已选 {visibleSelected})',
|
|
449
|
-
'modal.skills.empty.local': '暂无可管理的 skill。',
|
|
450
|
-
'modal.skills.empty.filtered': '当前筛选条件下没有匹配的 skill。',
|
|
451
|
-
'modal.skills.pill.hasSkillFile': '含 SKILL.md',
|
|
452
|
-
'modal.skills.pill.missingSkillFile': '缺少 SKILL.md',
|
|
453
|
-
'modal.skills.pill.symlink': '符号链接',
|
|
454
|
-
'modal.skills.pill.dir': '目录',
|
|
455
|
-
'modal.skills.import.title': '跨应用导入',
|
|
456
|
-
'modal.skills.import.note': '扫描并导入到当前 {label}。',
|
|
457
|
-
'modal.skills.import.scan': '扫描可导入',
|
|
458
|
-
'modal.skills.import.stats': '已选 {selected} / {total},含 SKILL.md {configured},缺失 {missing}',
|
|
459
|
-
'modal.skills.import.emptyHint': '暂无可导入 skill,点击“扫描可导入”。',
|
|
460
|
-
'modal.skills.bulk.title': '批量操作',
|
|
461
|
-
'modal.skills.bulk.note': '右侧为导入操作,左侧为本地选择。',
|
|
462
|
-
'modal.skills.actions.zipImport': '导入 ZIP',
|
|
463
|
-
'modal.skills.actions.zipImporting': 'ZIP 导入中...',
|
|
464
|
-
'modal.skills.actions.exportSelected': '导出选中',
|
|
465
|
-
'modal.skills.actions.exporting': '导出中...',
|
|
466
|
-
'modal.skills.actions.importSelected': '导入选中',
|
|
467
|
-
'modal.skills.actions.importing': '导入中...',
|
|
468
|
-
'modal.skills.actions.deleteSelected': '删除选中',
|
|
469
|
-
'modal.skills.actions.deleting': '删除中...',
|
|
470
|
-
|
|
471
|
-
// OpenClaw config modal (quick)
|
|
472
|
-
'placeholder.openclawConfigNameExample': '例如: 默认配置',
|
|
473
|
-
'modal.openclaw.loadCurrent': '加载当前配置',
|
|
474
|
-
'modal.openclaw.quick.title': '新手快速配置',
|
|
475
|
-
'modal.openclaw.quick.subtitle': '按 3 步完成:填 Provider 和模型,写入编辑器,保存并应用。',
|
|
476
|
-
'modal.openclaw.quick.readFromEditor': '从编辑器读取',
|
|
477
|
-
'modal.openclaw.quick.step1': '填写 Provider 与模型',
|
|
478
|
-
'modal.openclaw.quick.step2': '点击写入编辑器',
|
|
479
|
-
'modal.openclaw.quick.step3': '保存并应用',
|
|
480
|
-
'modal.openclaw.quick.providerHint': '会拼成 provider/model 作为主模型标识。',
|
|
481
|
-
'modal.openclaw.quick.baseUrlHintDefault': '已按 OpenClaw 内建 provider 默认值回填,可直接修改。',
|
|
482
|
-
'modal.openclaw.quick.baseUrlHintReadonly': '检测到外部引用,快速表单中只读显示;如需修改请使用原文编辑。',
|
|
483
|
-
'modal.openclaw.quick.apiKeyHintFromAuth': '当前值来自 OpenClaw 外部认证配置;修改后在“保存并应用”时会回写对应 auth profile。',
|
|
484
|
-
'modal.openclaw.quick.apiKeyHintReadonly': '检测到外部认证或引用,快速表单中只读显示;如需修改请使用原文编辑或对应认证配置。',
|
|
485
|
-
'modal.openclaw.quick.apiKeyHintKeep': '留空表示不覆盖现有 key。',
|
|
486
|
-
'placeholder.apiTypeExample': '例如: openai-responses',
|
|
487
|
-
'modal.openclaw.quick.modelTitle': '模型',
|
|
488
|
-
'placeholder.modelIdExample': '例如: gpt-4.1',
|
|
489
|
-
'placeholder.modelNameOptional': '留空则使用模型 ID',
|
|
490
|
-
'field.contextWindow': '上下文长度',
|
|
491
|
-
'field.maxOutput': '最大输出',
|
|
492
|
-
'hint.emptyNoChange': '留空表示不改动已有配置。',
|
|
493
|
-
'modal.openclaw.quick.optionsTitle': '选项',
|
|
494
|
-
'modal.openclaw.quick.setPrimary': '设为主模型',
|
|
495
|
-
'modal.openclaw.quick.overrideProvider': '覆盖同名 Provider 基础信息',
|
|
496
|
-
'modal.openclaw.quick.overrideModels': '覆盖同名模型列表',
|
|
497
|
-
'modal.openclaw.quick.optionsHint': '关闭覆盖会只补空缺字段。',
|
|
498
|
-
'modal.openclaw.quick.writeToEditor': '写入编辑器',
|
|
499
|
-
|
|
500
|
-
// Docs panel
|
|
501
|
-
'docs.title': 'CLI 安装文档',
|
|
502
|
-
'docs.subtitle': '查看 Claude Code / Gemini CLI / CodeBuddy Code / Codex CLI 命令。',
|
|
503
|
-
'docs.section.commands': '安装命令',
|
|
504
|
-
'docs.section.commandsNote': '命令可直接复制。',
|
|
505
|
-
'docs.section.faq': '常见问题',
|
|
506
|
-
'docs.section.faqNote': '常见问题见下。',
|
|
507
|
-
'docs.command.aria': '{name} 命令',
|
|
508
|
-
'docs.registryHintPrefix': '命令将附加:',
|
|
509
|
-
'docs.registryHintCustom': '请输入完整 URL(含 http/https),将自动附加到命令。',
|
|
510
|
-
'docs.registry.tencent': '腾讯云',
|
|
511
|
-
'docs.meta.bin': 'bin: {bin}',
|
|
512
|
-
'docs.termuxLabel': 'Termux',
|
|
513
|
-
'docs.termuxAria': 'Termux Codex CLI command',
|
|
514
|
-
'docs.rule.1': '命令按当前包管理器、镜像与操作生成。',
|
|
515
|
-
'docs.rule.2': '自定义镜像仅用于安装与升级。',
|
|
516
|
-
'docs.tip.win.1': 'PowerShell 报权限不足(EACCES/EPERM)时,请以管理员身份执行安装命令。',
|
|
517
|
-
'docs.tip.win.2': '安装后若仍提示找不到命令,重开终端并执行:where codex / where claude / where gemini / where codebuddy。',
|
|
518
|
-
'docs.tip.win.3': '公司网络受限时,可先切换镜像源快捷项(npmmirror / 腾讯云 / 自定义)。',
|
|
519
|
-
'docs.tip.unix.1': '出现 EACCES 权限错误时,优先修复 Node 全局目录权限,不建议直接 sudo npm。',
|
|
520
|
-
'docs.tip.unix.2': '安装后若命令未生效,重开终端并执行:which codex / which claude / which gemini / which codebuddy。',
|
|
521
|
-
'docs.tip.unix.3': '公司网络受限时,可先切换镜像源快捷项(npmmirror / 腾讯云 / 自定义)。',
|
|
522
|
-
|
|
523
|
-
// Sessions panel
|
|
524
|
-
'sessions.loading': '加载中...',
|
|
525
|
-
'sessions.sourceTitle': '会话来源',
|
|
526
|
-
'sessions.refresh': '刷新会话',
|
|
527
|
-
'sessions.refreshing': '刷新中...',
|
|
528
|
-
'sessions.allPaths': '全部路径',
|
|
529
|
-
'sessions.source.codex': 'Codex',
|
|
530
|
-
'sessions.source.claudeCode': 'Claude Code',
|
|
531
|
-
'sessions.source.gemini': 'Gemini CLI',
|
|
532
|
-
'sessions.source.codebuddy': 'CodeBuddy Code',
|
|
533
|
-
'sessions.loadingList': '会话加载中...',
|
|
534
|
-
'sessions.empty': '暂无可用会话记录',
|
|
535
|
-
'sessions.unknownTime': '未知时间',
|
|
536
|
-
|
|
537
|
-
'sessions.query.placeholder.enabled': '关键词检索(支持 Codex/Claude/Gemini/CodeBuddy,例:claude code)',
|
|
538
|
-
'sessions.query.placeholder.disabled': '当前来源暂不支持关键词检索',
|
|
539
|
-
'sessions.pin': '置顶',
|
|
540
|
-
'sessions.unpin': '取消置顶',
|
|
541
|
-
'sessions.copyResume': '复制恢复命令',
|
|
542
|
-
'sessions.preview.refresh': '刷新内容',
|
|
543
|
-
'sessions.preview.loading': '加载中...',
|
|
544
|
-
'sessions.preview.deleteHard': '直接删除',
|
|
545
|
-
'sessions.preview.moveToTrash': '移入回收站',
|
|
546
|
-
'sessions.preview.deleting': '删除中...',
|
|
547
|
-
'sessions.preview.moving': '移入中...',
|
|
548
|
-
'sessions.preview.export': '导出记录',
|
|
549
|
-
'sessions.preview.exporting': '导出中...',
|
|
550
|
-
'sessions.preview.convert': '生成派生会话',
|
|
551
|
-
'sessions.preview.converting': '生成中...',
|
|
552
|
-
'sessions.preview.convert.loadedOnly': '仅转换已加载消息',
|
|
553
|
-
'sessions.preview.importNative': '导入原生目录',
|
|
554
|
-
'sessions.preview.importingNative': '导入中...',
|
|
555
|
-
'sessions.preview.importNative.unsupported': '不支持此操作',
|
|
556
|
-
'sessions.preview.importNative.confirmTitle': '覆盖原生会话文件?',
|
|
557
|
-
'sessions.preview.importNative.confirmMessage': '原生会话文件已存在,覆盖后会替换目标工具原生目录中的同名会话。',
|
|
558
|
-
'sessions.preview.importNative.confirmText': '覆盖',
|
|
559
|
-
'sessions.preview.importNative.cancelled': '已取消导入',
|
|
560
|
-
'sessions.preview.importNative.conflict': '原生会话已存在',
|
|
561
|
-
'sessions.preview.importNative.invalidSource': '会话来源无效',
|
|
562
|
-
'sessions.preview.importNative.fileNotFound': '未找到会话文件',
|
|
563
|
-
'sessions.preview.importNative.nativePathUnavailable': '无法解析原生会话路径',
|
|
564
|
-
'sessions.preview.importNative.success': '已导入原生目录',
|
|
565
|
-
'sessions.preview.importNative.failed': '导入失败',
|
|
566
|
-
'sessions.preview.importNative.failedWithReason': '导入原生目录失败:{reason}',
|
|
567
|
-
'sessions.preview.copyLink': '复制链接',
|
|
568
|
-
'sessions.preview.loadingBody': '正在加载会话内容...',
|
|
569
|
-
'sessions.preview.emptyMsgs': '当前会话暂无可展示消息',
|
|
570
|
-
'sessions.preview.rendering': '正在渲染会话内容...',
|
|
571
|
-
'sessions.preview.rerender': '重新渲染',
|
|
572
|
-
'sessions.preview.preparing': '正在准备会话内容...',
|
|
573
|
-
'sessions.preview.clipped': '仅展示最近 {count} 条消息。',
|
|
574
|
-
'sessions.preview.shownCount': '已显示 {shown} / {total} 条',
|
|
575
|
-
'sessions.preview.loadMore': '加载更多(剩余 {remain})',
|
|
576
|
-
'sessions.preview.loadingMore': '正在加载更早消息...',
|
|
577
|
-
'sessions.timeline.aria': '会话时间轴',
|
|
578
|
-
'sessions.selectHint': '请先在左侧选择一个会话',
|
|
579
|
-
'sessions.role.all': '全部角色',
|
|
580
|
-
'sessions.role.user': '仅 User',
|
|
581
|
-
'sessions.role.assistant': '仅 Assistant',
|
|
582
|
-
'sessions.role.system': '仅 System',
|
|
583
|
-
'sessions.time.all': '全部时间',
|
|
584
|
-
'sessions.time.7d': '近 7 天',
|
|
585
|
-
'sessions.time.30d': '近 30 天',
|
|
586
|
-
'sessions.time.90d': '近 90 天',
|
|
587
|
-
'sessions.sort.time': '按时间',
|
|
588
|
-
'sessions.sort.hot': '按热度',
|
|
589
|
-
'sessions.sort.hotBadge': '热',
|
|
590
|
-
'sessions.filters.copyLink': '复制筛选链接',
|
|
591
|
-
'sessions.filters.urlBuildFail': '无法生成链接',
|
|
592
|
-
'sessions.filters.source': '来源',
|
|
593
|
-
'sessions.filters.path': '路径',
|
|
594
|
-
'sessions.filters.keyword': '关键词',
|
|
595
|
-
'sessions.filters.role': '角色',
|
|
596
|
-
'sessions.filters.time': '时间',
|
|
597
|
-
'sessions.roleLabel.user': 'User',
|
|
598
|
-
'sessions.roleLabel.system': 'System',
|
|
599
|
-
'sessions.roleLabel.assistant': 'Assistant',
|
|
600
|
-
|
|
601
|
-
// Usage panel
|
|
602
|
-
'usage.overview': 'Usage 概览',
|
|
603
|
-
'usage.range.aria': 'Usage 时间范围',
|
|
604
|
-
'usage.range.7d': '近 7 天',
|
|
605
|
-
'usage.range.30d': '近 30 天',
|
|
606
|
-
'usage.range.all': '全部',
|
|
607
|
-
'usage.compare.toggle': '对比上周期',
|
|
608
|
-
'usage.compare.prev': '上周期',
|
|
609
|
-
'usage.compare.delta': '变化',
|
|
610
|
-
'usage.refresh': '刷新统计',
|
|
611
|
-
'usage.refreshing': '刷新中...',
|
|
612
|
-
'usage.loading': '正在加载 Usage 统计...',
|
|
613
|
-
'usage.empty': '暂无可用于统计的会话数据',
|
|
614
|
-
'usage.refreshOverlay': '正在刷新…',
|
|
615
|
-
'usage.copyTitle': '点击复制:{value}',
|
|
616
|
-
'usage.copySuccess': '已复制:{label}',
|
|
617
|
-
'usage.copyFail': '复制失败',
|
|
618
|
-
'usage.copyNone': '没有可复制内容',
|
|
619
|
-
'usage.daily.title': '每天消耗',
|
|
620
|
-
'usage.daily.subtitle': '按天汇总 token 与预估费用(费用各自按最大值归一显示)。',
|
|
621
|
-
'usage.daily.note': '说明:预估费用默认不含 Claude;仅在可匹配模型单价且会话记录 input/output token 时计算。',
|
|
622
|
-
'usage.heatmap.title': '活动热力图',
|
|
623
|
-
'usage.heatmap.subtitle': '按每天会话数聚合,支持 hover 查看详细数据。',
|
|
624
|
-
'usage.heatmap.legend.less': '少',
|
|
625
|
-
'usage.heatmap.legend.more': '多',
|
|
626
|
-
'usage.heatmap.tooltip': '{date} · {sessions} 会话 · {messages} 消息 · {tokens} token',
|
|
627
|
-
'usage.heatmap.aria': '{date},{sessions} 会话',
|
|
628
|
-
'usage.hourlyHeatmap.title': '7×24 活跃热力图',
|
|
629
|
-
'usage.hourlyHeatmap.subtitle': '按星期 × 小时聚合会话分布,深色 = 高活跃。',
|
|
630
|
-
'usage.hourlyHeatmap.tooltip': '{weekday} {hour}:00 · {sessions} 会话 · {messages} 消息 · {tokens} token',
|
|
631
|
-
'usage.hourlyHeatmap.legend.less': '少',
|
|
632
|
-
'usage.hourlyHeatmap.legend.more': '多',
|
|
633
|
-
'usage.legend.tokens': 'Token',
|
|
634
|
-
'usage.legend.cost': '预估费用',
|
|
635
|
-
'usage.table.date': '日期',
|
|
636
|
-
'usage.table.sessions': '会话',
|
|
637
|
-
'usage.table.messages': '消息',
|
|
638
|
-
'usage.table.tokens': 'Token',
|
|
639
|
-
'usage.table.cost': '预估费用',
|
|
640
|
-
'usage.trend.sessions': '会话趋势',
|
|
641
|
-
'usage.trend.messages': '消息趋势',
|
|
642
|
-
'usage.trend.activeHours': '活跃时段',
|
|
643
|
-
'usage.trend.sources': '来源洞察',
|
|
644
|
-
'usage.legend.codex': 'Codex',
|
|
645
|
-
'usage.legend.claude': 'Claude',
|
|
646
|
-
'usage.trend.sessions.codexTitle': 'Codex {count}',
|
|
647
|
-
'usage.trend.sessions.claudeTitle': 'Claude {count}',
|
|
648
|
-
'usage.trend.messages.barTitle': '{count} 条消息',
|
|
649
|
-
'usage.hour.title': '{hour}:00 · {count} 次会话',
|
|
650
|
-
'usage.source.row': '{sessions} 会话 · {messages} 消息 · 均值 {avg}',
|
|
651
|
-
'usage.summary.sessions': '总会话数',
|
|
652
|
-
'usage.summary.messages': '总消息数',
|
|
653
|
-
'usage.summary.tokens': '总 Token 数',
|
|
654
|
-
'usage.summary.contextWindow': '总上下文数',
|
|
655
|
-
'usage.summary.estimatedCost': '预估费用 · {range}',
|
|
656
|
-
'usage.estimatedCost.note.excludesClaudePrefix': '暂不含 Claude,',
|
|
657
|
-
'usage.estimatedCost.method.configured': '按已配置单价估算',
|
|
658
|
-
'usage.estimatedCost.method.catalog': '按公开模型目录估算',
|
|
659
|
-
'usage.estimatedCost.method.configuredAndCatalog': '按已配置单价 + 公开模型目录估算',
|
|
660
|
-
'usage.estimatedCost.detail.estimate': '{prefix}{method},估算 {estimate},覆盖 {covered}/{total} 个会话,约 {percent}% token',
|
|
661
|
-
'usage.estimatedCost.detail.missing': '{prefix}缺少可匹配的模型单价或 token 拆分。请先补 models.cost,或确认会话已记录 input/output token。',
|
|
662
|
-
'usage.summary.activeDuration': '活跃时长',
|
|
663
|
-
'usage.summary.activeDuration.title': '累计会话跨度 {value}',
|
|
664
|
-
'usage.summary.totalDuration': '总时长',
|
|
665
|
-
'usage.summary.totalDuration.title': '整体时间跨度 {value}',
|
|
666
|
-
'usage.summary.activeDays': '活跃天数',
|
|
667
|
-
'usage.summary.avgMessagesPerSession': '平均每会话消息',
|
|
668
|
-
'usage.summary.busiestDay': '最忙日',
|
|
669
|
-
'usage.summary.busiestHour': '高峰时段',
|
|
670
|
-
'usage.currentSession.title': '当前会话',
|
|
671
|
-
'usage.currentSession.apiDuration': 'API时长',
|
|
672
|
-
'usage.currentSession.totalDuration': '总时长',
|
|
673
|
-
'usage.currentSession.tokens': 'Token',
|
|
674
|
-
'usage.range.kicker.all': '全部',
|
|
675
|
-
'usage.range.kicker.30d': '近 30 天',
|
|
676
|
-
'usage.range.kicker.7d': '近 7 天',
|
|
677
|
-
'usage.copyTokenDay': '已复制:Token({day})',
|
|
678
|
-
'usage.copyCostDay': '已复制:预估费用({day})',
|
|
679
|
-
'usage.dayDetail.title': '{day} 详情',
|
|
680
|
-
'usage.dayDetail.subtitle': '选择日期可快速查看当天构成。',
|
|
681
|
-
'usage.dayDetail.pick': '选择日期',
|
|
682
|
-
'usage.dayDetail.empty': '请选择一个日期以查看当天构成。',
|
|
683
|
-
'usage.dayDetail.clear': '清除',
|
|
684
|
-
'usage.dayDetail.topSessions': 'Top 会话',
|
|
685
|
-
'usage.dayDetail.topModels': 'Top 模型',
|
|
686
|
-
'usage.models.title': '使用模型',
|
|
687
|
-
'usage.models.subtitle': '只列真实落盘的 model 名。',
|
|
688
|
-
'usage.models.kicker': '已识别 {modeled}/{total}',
|
|
689
|
-
'usage.models.count': '模型数',
|
|
690
|
-
'usage.models.coverage': '会话覆盖率',
|
|
691
|
-
'usage.models.missing': '缺 model',
|
|
692
|
-
'usage.models.noneTitle': '当前范围没读到模型名',
|
|
693
|
-
'usage.models.noneBody': '已扫描 {total} 个会话,但原始记录里没有可识别的 model 字段。',
|
|
694
|
-
'usage.models.providerOnly': '其中 {count} 个旧会话只写了 provider。',
|
|
695
|
-
'usage.models.missingNote.providerOnly': '另有 {count} 个会话没写模型名,未计入列表。',
|
|
696
|
-
'usage.models.missingNote': '另有 {count} 个会话缺少 model,未计入列表。',
|
|
697
|
-
'usage.models.missingListTitle': '仍缺模型名的会话',
|
|
698
|
-
'usage.models.chipTitle': '{model} · {sessions} 会话 · {messages} 消息{tokens}',
|
|
699
|
-
'usage.models.meta': '{sessions} 会话 · {messages} 消息{tokens}',
|
|
700
|
-
'usage.weekday.title': '工作日分布',
|
|
701
|
-
'usage.paths.title': '高频路径',
|
|
702
|
-
'usage.paths.empty': '暂无路径数据',
|
|
703
|
-
'usage.paths.count': '{count} 次',
|
|
704
|
-
'usage.paths.meta': '{messages} 消息{recent}',
|
|
705
|
-
'usage.paths.recent': ' · 最近 {label}',
|
|
706
|
-
'usage.recent.title': '近期活跃会话',
|
|
707
|
-
'usage.sessions.empty': '暂无会话数据',
|
|
708
|
-
'usage.sessions.messages': '{count} 消息',
|
|
709
|
-
'usage.sessions.topDensity': '消息密度最高',
|
|
710
|
-
|
|
711
|
-
// Config panel (Codex)
|
|
712
|
-
'config.addProvider': '新增提供商',
|
|
713
|
-
'config.providerTemplate.title': '预设供应商',
|
|
714
|
-
'config.models': '模型',
|
|
715
|
-
'config.modelLoading': '加载中...',
|
|
716
|
-
'config.models.unlimited': '当前无模型列表,可手填。',
|
|
717
|
-
'config.models.error': '模型列表获取失败,可手填。',
|
|
718
|
-
'config.models.notInList.codex': '当前模型不在列表,可手填或改模板。',
|
|
719
|
-
'config.models.notInList.other': '当前模型不在列表,可手填。',
|
|
720
|
-
'config.template.editFirst': '先改模板,再应用。',
|
|
721
|
-
'config.template.bridgeCodexOnly': '{hint} 模板仅限 Codex 编辑。',
|
|
722
|
-
'config.template.openEditor': '打开模板编辑器',
|
|
723
|
-
'modal.configTemplate.title': 'Config 模板编辑器(手动确认应用)',
|
|
724
|
-
'modal.configTemplate.placeholder': '在这里编辑 config.toml 模板内容',
|
|
725
|
-
'config.serviceTier': '服务档',
|
|
726
|
-
'config.serviceTier.fast': 'fast(默认)',
|
|
727
|
-
'config.serviceTier.standard': 'standard',
|
|
728
|
-
'config.serviceTier.hint': '仅 fast 写入 {field}。',
|
|
729
|
-
'config.reasoningEffort': '推理强度',
|
|
730
|
-
'config.reasoningEffort.medium': 'medium(默认)',
|
|
731
|
-
'config.reasoningEffort.hint': '控制推理深度;high 更深。',
|
|
732
|
-
'config.contextBudget': '压缩阈值',
|
|
733
|
-
'config.reset': '重置',
|
|
734
|
-
'config.example': '例如: {value}',
|
|
735
|
-
'config.contextWindow.hint': '上下文上限,默认 190000。',
|
|
736
|
-
'config.autoCompact.hint': '自动压缩阈值,默认 185000。',
|
|
737
|
-
'config.agents.open': '打开 AGENTS.md',
|
|
738
|
-
'modal.agents.title.default': 'AGENTS.md 编辑器',
|
|
739
|
-
'modal.agents.title.claudeMd': 'CLAUDE.md 编辑器',
|
|
740
|
-
'modal.agents.title.openclaw': 'OpenClaw AGENTS.md 编辑器',
|
|
741
|
-
'modal.agents.hint.default': '保存后会写入目标 AGENTS.md(与 config.toml 同级)。',
|
|
742
|
-
'modal.agents.hint.claudeMd': '保存后会写入 ~/.claude/CLAUDE.md。',
|
|
743
|
-
'modal.agents.contentLabel.claudeMd': 'CLAUDE.md 内容',
|
|
744
|
-
'modal.agents.placeholder.claudeMd': '在这里编辑 CLAUDE.md 内容',
|
|
745
|
-
'modal.agents.hint.openclaw': '保存后会写入 OpenClaw Workspace 下的 AGENTS.md。',
|
|
746
|
-
'modal.agents.title.openclawWorkspaceFile': 'OpenClaw 工作区文件: {fileName}',
|
|
747
|
-
'modal.agents.hint.openclawWorkspaceFile': '保存后会写入 OpenClaw Workspace 下的 {fileName}。',
|
|
748
|
-
'config.url.unset': '未设 URL',
|
|
749
|
-
'config.model.unset': '未设置模型',
|
|
750
|
-
'config.badge.system': '系统',
|
|
751
|
-
'config.availabilityTest': '可用性测试',
|
|
752
|
-
'config.availabilityTestAria': '测试 {name} 可用性',
|
|
753
|
-
'config.health.title': '配置健康检查',
|
|
754
|
-
'config.health.run': '运行检查',
|
|
755
|
-
'config.health.running': '检查中...',
|
|
756
|
-
'config.health.hint': '会批量探测所有提供商可用性,并刷新延迟显示。',
|
|
757
|
-
'config.health.progress': '已完成 {done}/{total} · 失败 {failed}',
|
|
758
|
-
'config.health.ok': '检查通过',
|
|
759
|
-
'config.health.fail': '检查未通过',
|
|
760
|
-
'config.health.issues': '{count} 项问题',
|
|
761
|
-
'config.shareCommand': '分享命令',
|
|
762
|
-
'config.shareDisabled': '不可分享',
|
|
763
|
-
'config.shareCommand.aria': '分享导入命令',
|
|
764
|
-
'config.provider.edit.aria': '编辑提供商:{name}',
|
|
765
|
-
'config.provider.delete.aria': '删除提供商:{name}',
|
|
766
|
-
'config.provider.clone': '克隆',
|
|
767
|
-
'config.provider.clone.aria': '克隆提供商:{name}',
|
|
768
|
-
'app.loadingConfig': '加载配置中...',
|
|
769
|
-
'common.current': '当前 {value}',
|
|
770
|
-
'common.notSelected': '未选择',
|
|
771
|
-
'common.readFromEditor': '从编辑器读取',
|
|
772
|
-
'common.writeToEditor': '写入编辑器',
|
|
773
|
-
'sessions.sourceLabel': '来源:{value}',
|
|
774
|
-
'usage.rangeLabel': '范围:{value}',
|
|
775
|
-
'sessions.source.all': '全部',
|
|
776
|
-
'usage.range.all': '全部',
|
|
777
|
-
'usage.range.7d.short': '近 7 天',
|
|
778
|
-
'usage.range.30d.short': '近 30 天',
|
|
779
|
-
'orchestration.queueStats': '队列 {running} 运行中 · {queued} 等待中',
|
|
780
|
-
'orchestration.hero.kicker': '任务编排',
|
|
781
|
-
'orchestration.hero.title': '把需求拆成可执行步骤',
|
|
782
|
-
'orchestration.hero.subtitle': '先写目标,再预览计划,再执行。',
|
|
783
|
-
'orchestration.draft.reset': '重置草稿',
|
|
784
|
-
'orchestration.summary.aria': '任务编排概览',
|
|
785
|
-
'orchestration.summary.running': '运行中',
|
|
786
|
-
'orchestration.summary.queued': '排队中',
|
|
787
|
-
'orchestration.summary.runs': '运行记录',
|
|
788
|
-
'orchestration.step1.title': '先把结果写清楚',
|
|
789
|
-
'orchestration.step1.subtitle': '只写会影响执行的内容。',
|
|
790
|
-
'orchestration.templates.title': '快捷示例',
|
|
791
|
-
'orchestration.templates.reviewFix.label': '修 review + 回归',
|
|
792
|
-
'orchestration.templates.reviewFix.target': '修复当前 PR review 评论,并补对应回归测试',
|
|
793
|
-
'orchestration.templates.reviewFix.notes': '不要改动无关模块;需要给出验证结果',
|
|
794
|
-
'orchestration.templates.reviewFix.followUps': '继续处理新增 review 评论\n最后更新 PR 摘要',
|
|
795
|
-
'orchestration.templates.planOnly.label': '只做排查规划',
|
|
796
|
-
'orchestration.templates.planOnly.target': '先排查问题根因并给出执行计划,不直接修改代码',
|
|
797
|
-
'orchestration.templates.planOnly.notes': '优先定位根因、影响范围和风险点',
|
|
798
|
-
'orchestration.templates.workflowBatch.label': 'Workflow 批处理',
|
|
799
|
-
'orchestration.templates.workflowBatch.target': '用 Workflow 跑一组固定检查并整理结果',
|
|
800
|
-
'orchestration.templates.workflowBatch.workflowIds': 'diagnose-config\nsafe-provider-switch',
|
|
801
|
-
'orchestration.templates.workflowBatch.notes': '输出统一结论,避免重复描述',
|
|
802
|
-
'orchestration.fields.target': '目标',
|
|
803
|
-
'orchestration.fields.target.placeholder': '例如:修复当前 PR review 评论,并补对应回归测试;不要改无关模块',
|
|
804
|
-
'orchestration.fields.target.hint': '一句话写清结果、边界和验收标准就够了。',
|
|
805
|
-
'orchestration.engine.codex': 'Codex',
|
|
806
|
-
'orchestration.engine.workflow': 'Workflow',
|
|
807
|
-
'orchestration.runMode.write': '写入',
|
|
808
|
-
'orchestration.runMode.readOnly': '只读',
|
|
809
|
-
'orchestration.runMode.dryRun': '仅预演',
|
|
810
|
-
'orchestration.pills.hasTitle': '标题已设',
|
|
811
|
-
'orchestration.pills.workflowCount': 'Workflow {count}',
|
|
812
|
-
'orchestration.pills.planNodes': '计划 {count} 节点',
|
|
813
|
-
'orchestration.step2.title': '选择执行方式',
|
|
814
|
-
'orchestration.step2.subtitle': '常用项默认展开,其余放高级设置。',
|
|
815
|
-
'orchestration.fields.engine': '引擎',
|
|
816
|
-
'orchestration.fields.runMode': '运行模式',
|
|
817
|
-
'orchestration.advanced.title': '高级设置',
|
|
818
|
-
'orchestration.fields.title': '标题',
|
|
819
|
-
'orchestration.fields.title.placeholder': '可选,默认从目标自动提取',
|
|
820
|
-
'orchestration.fields.notes': '说明',
|
|
821
|
-
'orchestration.fields.notes.placeholder': '例如:不要重写现有架构,只做增量实现',
|
|
822
|
-
'orchestration.fields.notes.hint': '补边界、禁区、风格要求或验证要求。',
|
|
823
|
-
'orchestration.fields.followUps': '后续动作(每行一条)',
|
|
824
|
-
'orchestration.fields.followUps.placeholder': '例如:\n继续处理 review 评论\n最后补回归测试',
|
|
825
|
-
'orchestration.fields.concurrency': '并发',
|
|
826
|
-
'orchestration.fields.concurrency.hint': '复杂任务先从 1~2 开始更稳。',
|
|
827
|
-
'orchestration.fields.autoFixRounds': '自动修复',
|
|
828
|
-
'orchestration.fields.autoFixRounds.hint': '失败后自动再试几轮。',
|
|
829
|
-
'orchestration.fields.workflowIds': 'Workflow ID(每行一条)',
|
|
830
|
-
'orchestration.fields.workflowIds.placeholder': '例如:\ndiagnose-config\nsafe-provider-switch',
|
|
831
|
-
'orchestration.fields.workflowIds.hint': '仅 Workflow 模式需要。当前本地可用 {count} 个。',
|
|
832
|
-
'orchestration.workflow.stepCount': '{count} 步',
|
|
833
|
-
'orchestration.step3.title': '先预览,再执行',
|
|
834
|
-
'orchestration.step3.subtitle': '先确认计划,再决定立即执行还是入队。',
|
|
835
|
-
'orchestration.actions.planning': '规划中...',
|
|
836
|
-
'orchestration.actions.previewOnly': '仅预览',
|
|
837
|
-
'orchestration.actions.preparing': '准备中...',
|
|
838
|
-
'orchestration.actions.generatePlan': '生成计划',
|
|
839
|
-
'orchestration.actions.planAndRun': '计划并执行',
|
|
840
|
-
'orchestration.actions.processing': '处理中...',
|
|
841
|
-
'orchestration.actions.queueAndStart': '入队并开始',
|
|
842
|
-
'orchestration.actions.caption': '“计划并执行”会在必要时自动刷新计划;批量任务用“入队并开始”。',
|
|
843
|
-
'orchestration.stage.title': '有内容时再展开工作区',
|
|
844
|
-
'orchestration.stage.subtitle': '先写目标,再预览计划。',
|
|
845
|
-
'orchestration.stage.pill.target': '写目标',
|
|
846
|
-
'orchestration.stage.pill.preview': '预览',
|
|
847
|
-
'orchestration.stage.pill.run': '执行或入队',
|
|
848
|
-
'orchestration.plan.title': '计划预览',
|
|
849
|
-
'orchestration.plan.subtitle': '先确认节点、波次和依赖。',
|
|
850
|
-
'orchestration.plan.summary.nodes': '节点数',
|
|
851
|
-
'orchestration.plan.summary.waves': '波次',
|
|
852
|
-
'orchestration.plan.summary.engine': '引擎',
|
|
853
|
-
'orchestration.plan.node.write': 'write',
|
|
854
|
-
'orchestration.plan.node.readOnly': 'read-only',
|
|
855
|
-
'orchestration.labels.dependencies': '依赖:',
|
|
856
|
-
'orchestration.labels.error': '错误:',
|
|
857
|
-
'orchestration.workbench.title': '执行工作台',
|
|
858
|
-
'orchestration.workbench.subtitle': '有内容时才展开。',
|
|
859
|
-
'orchestration.queue.start': '开始队列',
|
|
860
|
-
'orchestration.queue.starting': '启动中...',
|
|
861
|
-
'orchestration.workbench.tabs.aria': '任务编排工作台视图',
|
|
862
|
-
'orchestration.workbench.tabs.queue': '队列 {count}',
|
|
863
|
-
'orchestration.workbench.tabs.runs': '运行记录 {count}',
|
|
864
|
-
'orchestration.workbench.tabs.detail': '运行详情',
|
|
865
|
-
'orchestration.queue.empty.title': '当前没有排队任务',
|
|
866
|
-
'orchestration.queue.empty.subtitle': '批量任务可先入队,再启动队列。',
|
|
867
|
-
'orchestration.runs.empty.title': '还没有运行记录',
|
|
868
|
-
'orchestration.runs.empty.subtitle': '执行后会显示最近运行记录。',
|
|
869
|
-
'orchestration.detail.refresh': '刷新详情',
|
|
870
|
-
'orchestration.detail.retry': '重试',
|
|
871
|
-
'orchestration.detail.retrying': '重试中...',
|
|
872
|
-
'orchestration.detail.empty.title': '选择一条运行记录查看详情',
|
|
873
|
-
'orchestration.detail.empty.subtitle': '这里会显示节点状态、摘要和日志。',
|
|
874
|
-
'orchestration.detail.summary.status': '状态',
|
|
875
|
-
'orchestration.detail.summary.duration': '耗时',
|
|
876
|
-
'orchestration.detail.summary.nodes': '节点数',
|
|
877
|
-
'orchestration.detail.summary.summary': '摘要',
|
|
878
|
-
'orchestration.detail.node.meta': '{id} · attempts {attempts} · auto-fix {autoFix}',
|
|
879
|
-
'skills.localLabel': '{target} / 本地 Skills',
|
|
880
|
-
'skills.counts': '已装 {installed} · 可导入 {importable}',
|
|
881
|
-
|
|
882
|
-
// Sidebar status labels (compact)
|
|
883
|
-
'status.currentSource': '当前来源',
|
|
884
|
-
'status.sessionCount': '会话数',
|
|
885
|
-
'status.range': '统计范围',
|
|
886
|
-
'status.totalSessions': '总会话数',
|
|
887
|
-
'status.totalMessages': '总消息数',
|
|
888
|
-
'status.engine': '引擎',
|
|
889
|
-
'status.concurrency': '并发度',
|
|
890
|
-
'status.running': '运行中',
|
|
891
|
-
'status.queued': '排队中',
|
|
892
|
-
'status.runs': '历史 Runs',
|
|
893
|
-
'status.currentTarget': '当前目标',
|
|
894
|
-
'status.localSkills': '本地 Skills',
|
|
895
|
-
'status.importable': '可导入',
|
|
896
|
-
'status.importableDirect': '可直接导入',
|
|
897
|
-
'status.pm': '包管理器',
|
|
898
|
-
'status.action': '当前操作',
|
|
899
|
-
'status.registry': '镜像',
|
|
900
|
-
'status.claudeConfig': 'Claude 配置',
|
|
901
|
-
'status.claudeModel': 'Claude 模型',
|
|
902
|
-
'status.openclawConfig': 'OpenClaw 配置',
|
|
903
|
-
'status.workspaceFile': '工作区文件',
|
|
904
|
-
'status.configMode': '配置模式',
|
|
905
|
-
'status.currentProvider': '当前 Provider',
|
|
906
|
-
'status.currentModel': '当前模型',
|
|
907
|
-
'status.quickSwitchProvider': '快速切换提供商',
|
|
908
|
-
'side.usage.meta': '本地统计 / 趋势',
|
|
909
|
-
'side.orchestration.meta': '计划 / 队列 / Runs',
|
|
910
|
-
|
|
911
|
-
// Settings panel
|
|
912
|
-
'settings.tab.general': '通用',
|
|
913
|
-
'settings.tab.data': '数据',
|
|
914
|
-
'settings.tabs.aria': '设置分类',
|
|
915
|
-
'settings.quickSettings.title': '快捷设置',
|
|
916
|
-
'settings.language.sideLabel': '语言:{language}',
|
|
917
|
-
'settings.sharePrefix.title': '分享命令前缀',
|
|
918
|
-
'settings.sharePrefix.meta': '影响 Web UI 里“复制分享命令”的前缀',
|
|
919
|
-
'settings.sharePrefix.label': '前缀',
|
|
920
|
-
'settings.sharePrefix.hint': '默认走项目内 npm start,也可切到全局 codexmate。该设置会缓存到浏览器本地。',
|
|
921
|
-
'settings.backup.title': '数据备份',
|
|
922
|
-
'settings.backup.meta': '导出 / 导入 Claude 与 Codex 配置',
|
|
923
|
-
'settings.claude.title': 'Claude 配置',
|
|
924
|
-
'settings.claude.meta': '备份 / 导入 ~/.claude',
|
|
925
|
-
'settings.codex.title': 'Codex 配置',
|
|
926
|
-
'settings.codex.meta': '备份 / 导入 ~/.codex',
|
|
927
|
-
'settings.backup.progress': '备份中 {percent}%',
|
|
928
|
-
'settings.backup.oneClickClaude': '一键备份 ~/.claude',
|
|
929
|
-
'settings.backup.importClaude': '导入 ~/.claude 备份',
|
|
930
|
-
'settings.backup.oneClickCodex': '一键备份 ~/.codex',
|
|
931
|
-
'settings.backup.importCodex': '导入 ~/.codex 备份',
|
|
932
|
-
'settings.importing': '导入中...',
|
|
933
|
-
|
|
934
|
-
'settings.trashConfig.title': '回收站配置',
|
|
935
|
-
'settings.trashConfig.meta': '回收站开关与自动清理天数',
|
|
936
|
-
'settings.deleteBehavior.title': '会话删除行为',
|
|
937
|
-
'settings.deleteBehavior.meta': '决定“删除”是否先进入回收站',
|
|
938
|
-
'settings.deleteBehavior.toggle': '删除会话时先移入回收站',
|
|
939
|
-
'settings.deleteBehavior.hint': '默认开启。关闭后,会话浏览里的删除会直接永久删除,不再进入回收站。',
|
|
940
|
-
|
|
941
|
-
'settings.trash.title': '回收站',
|
|
942
|
-
'settings.trash.meta': '已删除会话(可恢复/彻底删除)',
|
|
943
|
-
'settings.trash.refresh': '刷新列表',
|
|
944
|
-
'settings.trash.refreshing': '刷新中...',
|
|
945
|
-
'settings.trash.clear': '清空回收站',
|
|
946
|
-
'settings.trash.clearing': '清空中...',
|
|
947
|
-
'settings.trash.loading': '正在加载回收站...',
|
|
948
|
-
'settings.trash.empty': '回收站为空',
|
|
949
|
-
'settings.trash.retry': '回收站列表加载失败,请刷新重试',
|
|
950
|
-
'settings.trash.restore': '恢复',
|
|
951
|
-
'settings.trash.restoring': '恢复中...',
|
|
952
|
-
'settings.trash.purge': '彻底删除',
|
|
953
|
-
'settings.trash.purging': '删除中...',
|
|
954
|
-
'settings.trash.workspace': '工作区',
|
|
955
|
-
'settings.trash.originalFile': '原文件',
|
|
956
|
-
'settings.trash.loadMore': '加载更多(剩余 {count} 项)',
|
|
957
|
-
'settings.trash.retention': '自动清理',
|
|
958
|
-
'settings.trash.retentionMeta': '超过保留天数的回收站记录将自动清除',
|
|
959
|
-
'settings.trash.retentionLabel': '保留天数',
|
|
960
|
-
'settings.trash.retentionHint': '范围 1-365 天,默认 30 天。每次加载回收站时自动清理过期记录。',
|
|
961
|
-
|
|
962
|
-
'settings.templateConfirm.title': '配置模板二次确认',
|
|
963
|
-
'settings.templateConfirm.meta': '降低误写入风险',
|
|
964
|
-
'settings.templateConfirm.toggle': '应用模板前先预览差异(两步:确认 → 应用)',
|
|
965
|
-
'settings.templateConfirm.hint': '开启后:先展示差异预览,再确认写入。',
|
|
966
|
-
|
|
967
|
-
'settings.reset.title': '配置重置',
|
|
968
|
-
'settings.reset.meta': '谨慎操作',
|
|
969
|
-
'settings.reset.hint': '会先备份 config.toml,再写入默认配置。',
|
|
970
|
-
'settings.reset.button': '重装配置',
|
|
971
|
-
'settings.reset.loading': '重装中...',
|
|
972
|
-
|
|
973
|
-
// Market (Skills)
|
|
974
|
-
'market.title': 'Skills 概览',
|
|
975
|
-
'market.subtitle': '切换目标并查看本地 Skills。',
|
|
976
|
-
'market.refresh': '刷新概览',
|
|
977
|
-
'market.refreshing': '刷新中...',
|
|
978
|
-
'market.openManager': '打开 Skills 管理',
|
|
979
|
-
'market.target.aria': '选择 Skills 安装目标',
|
|
980
|
-
'market.summary.target': '安装目标',
|
|
981
|
-
'market.summary.total': '本地总数',
|
|
982
|
-
'market.summary.configured': '含 SKILL.md',
|
|
983
|
-
'market.summary.missing': '缺少 SKILL.md',
|
|
984
|
-
'market.summary.importable': '可导入',
|
|
985
|
-
'market.summary.importableDirect': '可直接导入',
|
|
986
|
-
'market.root.fallback': '默认目录',
|
|
987
|
-
|
|
988
|
-
'market.installed.title': '已安装 Skills',
|
|
989
|
-
'market.installed.note': '仅显示前 6 项。',
|
|
990
|
-
'market.local.refresh': '刷新本地',
|
|
991
|
-
'market.local.refreshing': '刷新中...',
|
|
992
|
-
'market.local.loading': '正在加载本地 Skills...',
|
|
993
|
-
'market.local.empty': '当前暂无已安装 skill。',
|
|
994
|
-
'market.pill.verified': '已验证',
|
|
995
|
-
'market.pill.missingSkill': '待补 SKILL.md',
|
|
996
|
-
|
|
997
|
-
'market.import.title': '可导入来源',
|
|
998
|
-
'market.import.note': '扫描并导入到当前 {target}。',
|
|
999
|
-
'market.import.scan': '扫描来源',
|
|
1000
|
-
'market.import.scanning': '扫描中...',
|
|
1001
|
-
'market.import.loading': '正在扫描可导入 skill...',
|
|
1002
|
-
'market.import.empty': '暂未扫描到可导入 skill。',
|
|
1003
|
-
'market.pill.importableDirect': '可直接导入',
|
|
1004
|
-
'market.pill.importMissing': '缺少 SKILL.md',
|
|
1005
|
-
|
|
1006
|
-
'market.actions.title': '分发入口',
|
|
1007
|
-
'market.actions.note': '操作均作用于当前安装目标。',
|
|
1008
|
-
'market.action.manage.title': '本地 Skills 管理',
|
|
1009
|
-
'market.action.manage.copy': '管理当前 {target} 的已装 skills',
|
|
1010
|
-
'market.action.crossImport.title': '跨应用导入',
|
|
1011
|
-
'market.action.crossImport.copy': '导入到当前 {target}',
|
|
1012
|
-
'market.action.zipImport.title': 'ZIP 导入',
|
|
1013
|
-
'market.action.zipImport.copy': '从 ZIP 导入到当前目标',
|
|
1014
|
-
|
|
1015
|
-
'market.help.title': '操作说明',
|
|
1016
|
-
'market.help.target.title': '目标切换',
|
|
1017
|
-
'market.help.target.copy': '当前操作写入 {target} 目录。',
|
|
1018
|
-
'market.help.crossImport.title': '跨应用导入',
|
|
1019
|
-
'market.help.crossImport.copy': '从其他宿主导入未托管 skill。',
|
|
1020
|
-
'market.help.zipImport.title': 'ZIP 导入',
|
|
1021
|
-
'market.help.zipImport.copy': '从 ZIP 导入本地 skill。',
|
|
1022
|
-
|
|
1023
|
-
// Claude config panel
|
|
1024
|
-
'claude.addProvider': '添加提供商',
|
|
1025
|
-
'claude.applyDefault': '默认应用到 ~/.claude/settings.json。',
|
|
1026
|
-
'claude.presetProviders': '预设供应商',
|
|
1027
|
-
'claude.customConfig': '自定义配置',
|
|
1028
|
-
'claude.model': '模型',
|
|
1029
|
-
'claude.model.placeholder': '例如: claude-3-7-sonnet',
|
|
1030
|
-
'claude.model.hint': '模型修改后会自动保存并应用到当前配置。',
|
|
1031
|
-
'claude.health.title': '配置健康检查',
|
|
1032
|
-
'claude.health.run': '运行检查',
|
|
1033
|
-
'claude.health.running': '检查中...',
|
|
1034
|
-
'claude.health.hint': '会批量探测所有 Claude 配置可用性,并刷新延迟显示。',
|
|
1035
|
-
'claude.health.progress': '已完成 {done}/{total} · 失败 {failed}',
|
|
1036
|
-
'claude.md.title': 'CLAUDE.md',
|
|
1037
|
-
'claude.md.open': '打开 CLAUDE.md',
|
|
1038
|
-
'claude.md.hint': '读写 ~/.claude/CLAUDE.md。',
|
|
1039
|
-
'claude.model.unset': '未设置模型',
|
|
1040
|
-
'claude.configured': '已配置',
|
|
1041
|
-
'claude.notConfigured': '未配置',
|
|
1042
|
-
'claude.action.edit': '编辑',
|
|
1043
|
-
'claude.action.delete': '删除',
|
|
1044
|
-
'claude.action.shareDisabled': '分享导入命令',
|
|
1045
|
-
'claude.action.editAria': '编辑 Claude 配置:{name}',
|
|
1046
|
-
'claude.action.deleteAria': '删除 Claude 配置:{name}',
|
|
1047
|
-
'claude.action.clone': '克隆',
|
|
1048
|
-
'claude.action.cloneAria': '克隆 Claude 配置:{name}',
|
|
1049
|
-
'claude.localBridge.poolTitle': '轮询池',
|
|
1050
|
-
'claude.localBridge.poolHint': '勾选参与负载均衡的提供商',
|
|
1051
|
-
'claude.localBridge.noProviders': '暂无可用提供商,请先添加直连提供商',
|
|
1052
|
-
'claude.localBridge.disabled': '未启用',
|
|
1053
|
-
'claude.localBridge.enabled': '已启用',
|
|
1054
|
-
|
|
1055
|
-
// OpenClaw config panel
|
|
1056
|
-
'openclaw.applyHint': '写入 ~/.openclaw/openclaw.json,支持 JSON5。',
|
|
1057
|
-
'openclaw.workspace.title': 'OpenClaw 工作区',
|
|
1058
|
-
'openclaw.configs.hint': '选择常用配置,或进入编辑器维护完整 JSON5。',
|
|
1059
|
-
'openclaw.agents.hint': '读写 Workspace 的 AGENTS.md,默认路径 ~/.openclaw/workspace/AGENTS.md。',
|
|
1060
|
-
'openclaw.agents.open': '打开 AGENTS.md',
|
|
1061
|
-
'openclaw.workspaceFile': '工作区文件',
|
|
1062
|
-
'openclaw.workspace.placeholder': '例如: SOUL.md',
|
|
1063
|
-
'openclaw.workspace.hint': '仅限 Workspace 内的 .md 文件。',
|
|
1064
|
-
'openclaw.workspace.open': '打开工作区文件',
|
|
1065
|
-
'openclaw.configured': '已配置',
|
|
1066
|
-
'openclaw.notConfigured': '未配置',
|
|
1067
|
-
'openclaw.action.edit': '编辑',
|
|
1068
|
-
'openclaw.action.delete': '删除',
|
|
1069
|
-
'modal.openclaw.quick.subtitle': '按 3 步完成:填 Provider 和模型,写入编辑器,保存并应用。',
|
|
1070
|
-
'modal.openclaw.quick.step2': '点击写入编辑器',
|
|
1071
|
-
'modal.openclaw.structured.writeHint': '写入编辑器会重排 JSON,注释可能丢失。',
|
|
1072
|
-
'openclaw.action.applyAria': '应用 OpenClaw 配置:{name}',
|
|
1073
|
-
'openclaw.action.editAria': '编辑 OpenClaw 配置:{name}',
|
|
1074
|
-
'openclaw.action.deleteAria': '删除 OpenClaw 配置:{name}'
|
|
1075
|
-
},
|
|
1076
|
-
ja: {
|
|
1077
|
-
|
|
1078
|
-
// Global
|
|
1079
|
-
'lang.zh': '中国語',
|
|
1080
|
-
'lang.en': 'English',
|
|
1081
|
-
'lang.label': '言語',
|
|
1082
|
-
'nav.topTabs.aria': 'ナビゲーション',
|
|
1083
|
-
|
|
1084
|
-
// Common
|
|
1085
|
-
'common.all': 'すべて',
|
|
1086
|
-
'common.copy': 'コピー',
|
|
1087
|
-
'common.paste': 'ペースト',
|
|
1088
|
-
'common.edit': '編集',
|
|
1089
|
-
'common.install': 'インストール',
|
|
1090
|
-
'common.update': 'アップグレード',
|
|
1091
|
-
'common.uninstall': 'アンインストール',
|
|
1092
|
-
'common.official': '公式',
|
|
1093
|
-
'common.custom': 'カスタム',
|
|
1094
|
-
'common.rules': 'ルール',
|
|
1095
|
-
'common.troubleshooting': 'トラブルシューティング',
|
|
1096
|
-
'common.command': 'コマンド',
|
|
1097
|
-
'common.mirror': 'ミラー',
|
|
1098
|
-
'common.packageManager': 'パッケージマネージャー',
|
|
1099
|
-
'common.action': '操作',
|
|
1100
|
-
'common.targets': 'ターゲット数',
|
|
1101
|
-
'common.currentPm': '現在のパッケージマネージャー',
|
|
1102
|
-
'common.currentAction': '現在の操作',
|
|
1103
|
-
'common.mirrorActive': 'ミラー有効',
|
|
1104
|
-
'common.defaultOfficial': '公式デフォルト',
|
|
1105
|
-
'common.cancel': 'キャンセル',
|
|
1106
|
-
'common.confirm': '確認',
|
|
1107
|
-
'common.add': '追加',
|
|
1108
|
-
'common.save': '保存',
|
|
1109
|
-
'common.saveApply': '保存して適用',
|
|
1110
|
-
'common.close': '閉じる',
|
|
1111
|
-
'common.delete': '削除',
|
|
1112
|
-
'common.clear': 'クリア',
|
|
1113
|
-
'common.show': '表示',
|
|
1114
|
-
'common.hide': '非表示',
|
|
1115
|
-
'common.detail': '詳細',
|
|
1116
|
-
'common.refresh': '更新',
|
|
1117
|
-
'common.refreshing': '更新中...',
|
|
1118
|
-
'common.loading': '読み込み中...',
|
|
1119
|
-
'common.saving': '保存中...',
|
|
1120
|
-
'common.sending': '送信中...',
|
|
1121
|
-
'common.scanning': 'スキャン中...',
|
|
1122
|
-
'common.export': 'エクスポート',
|
|
1123
|
-
'common.import': 'インポート',
|
|
1124
|
-
'common.apply': '適用',
|
|
1125
|
-
'common.applying': '適用中...',
|
|
1126
|
-
'common.confirming': '確認中...',
|
|
1127
|
-
'common.writeToEditor': 'エディタに書き込み',
|
|
1128
|
-
'common.refreshFromText': 'テキストから更新',
|
|
1129
|
-
'common.backToEdit': '編集に戻る',
|
|
1130
|
-
'common.selectAll': 'すべて選択',
|
|
1131
|
-
'common.unselectAll': '選択解除',
|
|
1132
|
-
'common.resetFilters': 'フィルターをリセット',
|
|
1133
|
-
'common.notEditable': '編集不可',
|
|
1134
|
-
'common.notDeletable': '削除不可',
|
|
1135
|
-
'common.notLoaded': '未読み込み',
|
|
1136
|
-
'common.exists': '存在します',
|
|
1137
|
-
'common.notExistsWillCreateOnApply': '存在しません。適用時に作成されます',
|
|
1138
|
-
'common.notExistsWillCreateOnSave': '存在しません。保存時に作成されます',
|
|
1139
|
-
'common.none': 'なし',
|
|
1140
|
-
'cli.missing.title': '{name} CLI がインストールされていません',
|
|
1141
|
-
'cli.missing.subtitle': '{name} CLI をインストールしてからこのページをご利用ください。',
|
|
1142
|
-
'cli.missing.openDocs': 'インストールガイドを開く',
|
|
1143
|
-
'cli.missing.commandAria': '{name} CLI インストールコマンド',
|
|
1144
|
-
|
|
1145
|
-
// Brand
|
|
1146
|
-
'brand.kicker.workspace': 'ワークスペース',
|
|
1147
|
-
'brand.subtitle.localConfigSessionsWorkspace': 'ローカル設定とセッションワークスペース',
|
|
1148
|
-
|
|
1149
|
-
// Confirm dialog
|
|
1150
|
-
'confirm.aria': '操作確認',
|
|
1151
|
-
'confirm.title.default': '操作を確認してください',
|
|
1152
|
-
'confirm.ok': '確認',
|
|
1153
|
-
'confirm.cancel': 'キャンセル',
|
|
1154
|
-
|
|
1155
|
-
// Shared fields
|
|
1156
|
-
'field.name': '名前',
|
|
1157
|
-
'field.configName': '設定名',
|
|
1158
|
-
'field.apiEndpoint': 'API エンドポイント',
|
|
1159
|
-
'field.apiKey': '認証キー',
|
|
1160
|
-
'field.baseUrl': 'Base URL',
|
|
1161
|
-
'field.provider': 'プロバイダー',
|
|
1162
|
-
'field.providerName': 'プロバイダー名',
|
|
1163
|
-
'field.modelName': 'モデル名',
|
|
1164
|
-
'field.model': 'モデル',
|
|
1165
|
-
'field.message': 'メッセージ',
|
|
1166
|
-
'field.varName': '変数名',
|
|
1167
|
-
'field.targetFile': '対象ファイル',
|
|
1168
|
-
'field.modelId': 'モデル ID',
|
|
1169
|
-
'field.displayName': '表示名',
|
|
1170
|
-
'field.contextAndMaxOutput': 'コンテキストと最大出力',
|
|
1171
|
-
'field.apiType': 'API タイプ',
|
|
1172
|
-
'field.env': '環境変数',
|
|
1173
|
-
'field.allow': '許可',
|
|
1174
|
-
'field.deny': '拒否',
|
|
1175
|
-
|
|
1176
|
-
// Shared placeholders/hints
|
|
1177
|
-
'placeholder.providerNameExample': '例: myapi',
|
|
1178
|
-
'placeholder.apiEndpointExample': 'https://api.example.com/v1',
|
|
1179
|
-
'placeholder.providerName': 'プロバイダー名',
|
|
1180
|
-
'placeholder.keepUnchanged': '空白のままにすると変更されません',
|
|
1181
|
-
'hint.keepKeyUnchanged': '空白のままにするとキーは変更されません',
|
|
1182
|
-
'placeholder.modelExample': '例: gpt-5',
|
|
1183
|
-
'placeholder.configNameExample': '例: 智譜GLM',
|
|
1184
|
-
'placeholder.apiKeyExampleClaude': 'sk-ant-...',
|
|
1185
|
-
'placeholder.baseUrlExampleClaude': 'https://open.bigmodel.cn/api/anthropic',
|
|
1186
|
-
'placeholder.selectProvider': 'プロバイダーを選択してください',
|
|
1187
|
-
|
|
1188
|
-
// Roles / labels
|
|
1189
|
-
'role.you': 'あなた',
|
|
1190
|
-
'role.provider': 'プロバイダー',
|
|
1191
|
-
'label.model': 'モデル:',
|
|
1192
|
-
|
|
1193
|
-
// Top tabs
|
|
1194
|
-
'tab.dashboard': '概要',
|
|
1195
|
-
'tab.docs': 'ドキュメント',
|
|
1196
|
-
'tab.config': '設定',
|
|
1197
|
-
'tab.config.codex': 'Codex',
|
|
1198
|
-
'tab.config.claude': 'Claude',
|
|
1199
|
-
'tab.config.openclaw': 'OpenClaw',
|
|
1200
|
-
'tab.sessions': 'セッション',
|
|
1201
|
-
'tab.usage': '使用量',
|
|
1202
|
-
'tab.orchestration': 'タスク',
|
|
1203
|
-
'tab.market': 'Skills',
|
|
1204
|
-
'tab.plugins': 'プラグイン',
|
|
1205
|
-
'tab.settings': '設定',
|
|
1206
|
-
|
|
1207
|
-
// Side rail section titles
|
|
1208
|
-
'side.overview': '概要',
|
|
1209
|
-
'side.docs': 'ドキュメント',
|
|
1210
|
-
'side.config': '設定',
|
|
1211
|
-
'side.sessions': 'セッション',
|
|
1212
|
-
'side.plugins': 'プラグイン',
|
|
1213
|
-
'side.system': 'システム',
|
|
1214
|
-
'side.orchestration': 'タスク',
|
|
1215
|
-
'side.skills': 'Skills',
|
|
1216
|
-
|
|
1217
|
-
// Side rail items
|
|
1218
|
-
'side.overview.doctor': 'Doctor パネル',
|
|
1219
|
-
'side.overview.doctor.meta': '概要 / 診断 / ジャンプ',
|
|
1220
|
-
'side.docs.cliInstall': 'CLI インストール',
|
|
1221
|
-
'side.docs.cliInstall.meta': 'インストール / 更新 / 削除',
|
|
1222
|
-
'side.config.codex': 'Codex',
|
|
1223
|
-
'side.config.codex.meta': 'Provider / Model',
|
|
1224
|
-
'side.config.claude': 'Claude Code',
|
|
1225
|
-
'side.config.claude.meta': 'Claude Settings',
|
|
1226
|
-
'side.config.openclaw': 'OpenClaw',
|
|
1227
|
-
'side.config.openclaw.meta': 'JSON5 / AGENTS',
|
|
1228
|
-
'side.sessions.browser': 'セッション閲覧',
|
|
1229
|
-
'side.sessions.browser.meta': '閲覧 / エクスポート / クリーンアップ',
|
|
1230
|
-
'side.plugins.tools': 'プロンプトツール',
|
|
1231
|
-
'side.plugins.tools.meta': 'テンプレート / 変数',
|
|
1232
|
-
'side.plugins.templatesCount': '{count} 件のテンプレート',
|
|
1233
|
-
'side.system.settings': '実行設定',
|
|
1234
|
-
'side.system.settings.meta': 'データ / バックアップ',
|
|
1235
|
-
|
|
1236
|
-
// Header titles
|
|
1237
|
-
'kicker.dashboard': 'Doctor',
|
|
1238
|
-
'kicker.config': 'Configuration',
|
|
1239
|
-
'kicker.sessions': 'Sessions',
|
|
1240
|
-
'kicker.usage': 'Usage',
|
|
1241
|
-
'kicker.orchestration': 'Tasks',
|
|
1242
|
-
'kicker.market': 'Skills',
|
|
1243
|
-
'kicker.plugins': 'Plugins',
|
|
1244
|
-
'kicker.docs': 'Docs',
|
|
1245
|
-
'kicker.settings': 'Settings',
|
|
1246
|
-
|
|
1247
|
-
'title.dashboard': 'Dashboard / Doctor',
|
|
1248
|
-
'title.config': 'ローカル設定コンソール',
|
|
1249
|
-
'title.sessions': 'セッションとエクスポート',
|
|
1250
|
-
'title.usage': 'ローカル使用量と推移',
|
|
1251
|
-
'title.orchestration': 'タスクオーケストレーション',
|
|
1252
|
-
'title.market': 'Skills インストールと同期',
|
|
1253
|
-
'title.plugins': 'プラグインとテンプレート',
|
|
1254
|
-
'title.docs': 'CLI インストールとドキュメント',
|
|
1255
|
-
'title.settings': 'システムとデータ設定',
|
|
1256
|
-
|
|
1257
|
-
'subtitle.dashboard': '集約状態と診断エントリ。',
|
|
1258
|
-
'subtitle.config': 'ローカル設定とモデルの管理。',
|
|
1259
|
-
'subtitle.sessions': 'セッションの閲覧とエクスポート。',
|
|
1260
|
-
'subtitle.usage': '過去 7 / 30 日間の使用量を表示。',
|
|
1261
|
-
'subtitle.orchestration': 'ローカルタスクの計画・キュー・実行・振り返り。',
|
|
1262
|
-
'subtitle.market': 'ローカル Skills の管理。',
|
|
1263
|
-
'subtitle.plugins': 'テンプレート化されたプロンプトと再利用可能なプラグインの管理。',
|
|
1264
|
-
'subtitle.docs': 'CLI インストールコマンドとトラブルシューティング。',
|
|
1265
|
-
'subtitle.settings': 'ダウンロード・ディレクトリ・ゴミ箱の管理。',
|
|
1266
|
-
|
|
1267
|
-
'dashboard.doctor.title': 'Doctor',
|
|
1268
|
-
'dashboard.doctor.runChecks': 'チェックを実行',
|
|
1269
|
-
'dashboard.doctor.checking': 'チェック中...',
|
|
1270
|
-
'dashboard.doctor.export': 'レポートをエクスポート',
|
|
1271
|
-
'dashboard.doctor.export.json': 'JSON エクスポート',
|
|
1272
|
-
'dashboard.doctor.export.md': 'Markdown エクスポート',
|
|
1273
|
-
'dashboard.doctor.open': '開く',
|
|
1274
|
-
'doctor.action.openConfig': 'Config を開く',
|
|
1275
|
-
'doctor.action.checkProvider': 'Provider 設定をチェック',
|
|
1276
|
-
'doctor.action.openUsage': 'Usage を開く',
|
|
1277
|
-
'doctor.action.openSessions': 'Sessions を開く',
|
|
1278
|
-
'doctor.action.openTasks': 'Tasks を開く',
|
|
1279
|
-
'doctor.action.viewTaskLogs': 'Tasks / Logs を表示',
|
|
1280
|
-
'doctor.action.openSkills': 'Skills を開く',
|
|
1281
|
-
'doctor.issue.configNotReady.problem': '設定ファイルが準備できていません',
|
|
1282
|
-
'doctor.issue.configNotReady.impact': 'provider/model が読み取れず、モデル一覧とリクエストが利用できなくなる可能性があります。',
|
|
1283
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-unreachable': 'Provider に到達できません',
|
|
1284
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-auth-failed': 'Provider 認証失敗',
|
|
1285
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-not-found': 'Provider が 404 を返しました',
|
|
1286
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-http-error': 'Provider が HTTP エラーを返しました',
|
|
1287
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-error': 'Provider プローブ失敗',
|
|
1288
|
-
'doctor.issue.providerUnreachable.problem.unknown': 'Provider が利用できません',
|
|
1289
|
-
'doctor.issue.providerUnreachable.impactAuth': '認証失敗によりモデル一覧/会話リクエストが 401/403 を返します。',
|
|
1290
|
-
'doctor.issue.providerUnreachable.impactNetwork': 'リモートに到達できないためモデル一覧/会話リクエストが失敗またはタイムアウトします。',
|
|
1291
|
-
'doctor.issue.configHealthFailed.problem': '設定ヘルスチェックが失敗しました',
|
|
1292
|
-
'doctor.issue.configHealthFailed.impact': '一部の機能が利用できなかったり、期待通りの動作をしない可能性があります。',
|
|
1293
|
-
'doctor.issue.usageError.problem': 'Usage 統計異常',
|
|
1294
|
-
'doctor.issue.usageError.impact': 'Usage ページでトレンド/サマリーが表示できず、Doctor の使用量診断も欠落します。',
|
|
1295
|
-
'doctor.issue.usageMissingModel.problem': '一部のセッションにモデル情報がありません',
|
|
1296
|
-
'doctor.issue.usageMissingModel.impact': '使用量の帰属とコスト見積もりが不正確になります。',
|
|
1297
|
-
'doctor.issue.tasksError.problem': 'Tasks 状態の読み取りに失敗しました',
|
|
1298
|
-
'doctor.issue.tasksError.impact': 'オーケストレーションキュー/実行記録が表示できなくなる可能性があります。',
|
|
1299
|
-
'doctor.issue.tasksFailed.problem': '失敗したタスク実行があります',
|
|
1300
|
-
'doctor.issue.tasksFailed.impact': '自動化パイプラインが中断される可能性があります。ログを確認して再試行または入力を修正してください。',
|
|
1301
|
-
'doctor.issue.skillsError.problem': 'Skills 一覧の読み取りに失敗しました',
|
|
1302
|
-
'doctor.issue.skillsError.impact': 'Skills ページが正常に表示またはインストールできなくなります。',
|
|
1303
|
-
'doctor.issue.skillsRootMissing.problem': 'Skills ディレクトリが存在しません',
|
|
1304
|
-
'doctor.issue.skillsRootMissing.impact': 'Skills のインストール/スキャンが空になります。Settings/Docs でガイドに従ってディレクトリを初期化してください。',
|
|
1305
|
-
'doctor.issue.skillsMissingFiles.problem': 'skill.json が欠落しているスキルがあります',
|
|
1306
|
-
'doctor.issue.skillsMissingFiles.impact': '一部のスキルが実行または同期できなくなります。',
|
|
1307
|
-
'dashboard.card.config': '設定',
|
|
1308
|
-
'dashboard.card.sessions': 'セッション',
|
|
1309
|
-
'dashboard.card.usage': '使用量',
|
|
1310
|
-
'dashboard.card.tasks': 'タスク',
|
|
1311
|
-
'dashboard.card.skills': 'Skills',
|
|
1312
|
-
'dashboard.kv.model': 'モデル',
|
|
1313
|
-
'dashboard.kv.issue': '異常',
|
|
1314
|
-
'dashboard.kv.active': '現在',
|
|
1315
|
-
'dashboard.kv.sessions': 'セッション数',
|
|
1316
|
-
'dashboard.kv.missingModel': 'モデル欠落',
|
|
1317
|
-
'dashboard.kv.blockers': 'ブロッカー',
|
|
1318
|
-
'dashboard.kv.runs': '実行',
|
|
1319
|
-
'dashboard.kv.target': 'ターゲット',
|
|
1320
|
-
'dashboard.kv.root': 'ディレクトリ',
|
|
1321
|
-
'dashboard.status.health': '健全',
|
|
1322
|
-
'dashboard.status.busy': 'ビジー',
|
|
1323
|
-
'dashboard.status.models': 'モデル',
|
|
1324
|
-
'dashboard.busy.init': '初期化',
|
|
1325
|
-
'dashboard.busy.sessions': 'セッション読み込み',
|
|
1326
|
-
'dashboard.busy.models': 'モデル読み込み',
|
|
1327
|
-
'dashboard.busy.configApply': '設定適用',
|
|
1328
|
-
'dashboard.busy.agents': 'AGENTS 保存',
|
|
1329
|
-
'dashboard.busy.skills': 'Skills 管理',
|
|
1330
|
-
'dashboard.busy.tasks': 'タスクオーケストレーション',
|
|
1331
|
-
'dashboard.busy.idle': 'アイドル',
|
|
1332
|
-
'dashboard.message.none': 'メッセージなし',
|
|
1333
|
-
'dashboard.sessionSource.codex': 'Codex',
|
|
1334
|
-
'dashboard.sessionSource.claude': 'Claude Code',
|
|
1335
|
-
'dashboard.sessionSource.gemini': 'Gemini CLI',
|
|
1336
|
-
'dashboard.sessionSource.codebuddy': 'CodeBuddy Code',
|
|
1337
|
-
'dashboard.sessionSource.all': 'すべて',
|
|
1338
|
-
'dashboard.sessionPath.all': 'すべてのパス',
|
|
1339
|
-
'dashboard.sessionQuery.unsupported': '現在のソースは非対応',
|
|
1340
|
-
'dashboard.sessionQuery.unset': '未設定',
|
|
1341
|
-
'dashboard.healthStatus.failRead': '読み取り失敗',
|
|
1342
|
-
'dashboard.healthStatus.initializing': '初期化中',
|
|
1343
|
-
'dashboard.healthStatus.ok': '正常',
|
|
1344
|
-
'dashboard.modelStatus.loading': '読み込み中',
|
|
1345
|
-
'dashboard.modelStatus.error': '読み込みエラー',
|
|
1346
|
-
'dashboard.modelStatus.ok': '正常',
|
|
1347
|
-
'dashboard.health.ok': 'チェック通過',
|
|
1348
|
-
'dashboard.health.fail': 'チェック失敗',
|
|
1349
|
-
'dashboard.health.issues': '{count} 件の問題',
|
|
1350
|
-
'dashboard.issues.title': '{count} 件の対応可能な問題が見つかりました',
|
|
1351
|
-
'dashboard.state.loading': '読み込み中',
|
|
1352
|
-
'dashboard.state.ready': '準備完了',
|
|
1353
|
-
'dashboard.state.idle': '未読み込み',
|
|
1354
|
-
'dashboard.none': 'なし',
|
|
1355
|
-
'dashboard.sessions.count': '{count} 件のセッション',
|
|
1356
|
-
'dashboard.usage.range': '範囲 {value}',
|
|
1357
|
-
'dashboard.tasks.queue': '実行 {running} / キュー {queued}',
|
|
1358
|
-
'dashboard.skills.count': 'インストール済 {installed} / インポート可 {importable}',
|
|
1359
|
-
'dashboard.providersHealth.title': 'Provider 健全性',
|
|
1360
|
-
'dashboard.providersHealth.current': '(現在)',
|
|
1361
|
-
'dashboard.providersHealth.checking': 'チェック中...',
|
|
1362
|
-
'dashboard.providersHealth.allOk': 'すべての Provider が正常',
|
|
1363
|
-
'dashboard.providersHealth.hasIssues': '{count} 件の Provider に問題あり',
|
|
1364
|
-
|
|
1365
|
-
// Plugins panel
|
|
1366
|
-
'plugins.sidebar.title': 'Plugins',
|
|
1367
|
-
'plugins.sidebar.note': '再利用可能な標準化ツール。将来のカスタムプラグインも同じ構造に従います。',
|
|
1368
|
-
'plugins.sidebar.ariaList': 'プラグイン一覧',
|
|
1369
|
-
'plugins.main.ariaWorkspace': 'プラグインワークスペース',
|
|
1370
|
-
'plugins.refresh': '更新',
|
|
1371
|
-
'plugins.refreshing': '更新中...',
|
|
1372
|
-
'plugins.promptTemplates.title': 'プロンプトテンプレート',
|
|
1373
|
-
'plugins.promptTemplates.subtitle': '内蔵:コードコメントのブラッシュアップ({{code}})。コピーして入力欄に貼り付けてください。',
|
|
1374
|
-
'plugins.promptTemplates.mode.aria': 'プロンプトテンプレートモード',
|
|
1375
|
-
'plugins.promptTemplates.mode.compose': '生成',
|
|
1376
|
-
'plugins.promptTemplates.mode.manage': '管理',
|
|
1377
|
-
'plugins.promptTemplates.compose.selectTemplate': 'テンプレートを選択',
|
|
1378
|
-
'plugins.promptTemplates.compose.chooseTemplate': 'テンプレートを選択',
|
|
1379
|
-
'plugins.promptTemplates.compose.chooseTemplateHint': 'テンプレートを選択して生成を開始してください。',
|
|
1380
|
-
'plugins.promptTemplates.compose.builtinSuffix': '(内蔵)',
|
|
1381
|
-
'plugins.promptTemplates.compose.empty': '利用可能なテンプレートがありません。',
|
|
1382
|
-
'plugins.promptTemplates.compose.varsHint': '変数の入力と追加は「管理」で行ってください。',
|
|
1383
|
-
'plugins.promptTemplates.compose.missingCount': '{count} 項目未入力',
|
|
1384
|
-
'plugins.promptTemplates.compose.jumpToMissing': '未入力にジャンプ',
|
|
1385
|
-
'plugins.promptTemplates.compose.goManage': '管理で変数を入力',
|
|
1386
|
-
'plugins.promptTemplates.compose.outputTitle': '生成結果',
|
|
1387
|
-
'plugins.promptTemplates.compose.outputHint': '「コピー」をクリックして Codex/Claude の入力欄に貼り付けてください。',
|
|
1388
|
-
'plugins.promptTemplates.compose.outputAria': '生成結果(プロンプト)',
|
|
1389
|
-
'plugins.promptTemplates.compose.copy': 'コピー',
|
|
1390
|
-
'plugins.promptTemplates.manage.searchAria': 'テンプレート検索',
|
|
1391
|
-
'plugins.promptTemplates.manage.searchPlaceholder': 'テンプレート検索',
|
|
1392
|
-
'plugins.promptTemplates.manage.create': '新規作成',
|
|
1393
|
-
'plugins.promptTemplates.manage.export': 'エクスポート',
|
|
1394
|
-
'plugins.promptTemplates.manage.import': 'インポート',
|
|
1395
|
-
'plugins.promptTemplates.manage.loading': 'テンプレート読み込み中...',
|
|
1396
|
-
'plugins.promptTemplates.manage.empty': 'テンプレートがありません。',
|
|
1397
|
-
'plugins.promptTemplates.manage.vars': '{count} vars',
|
|
1398
|
-
'plugins.promptTemplates.manage.builtin': 'built-in',
|
|
1399
|
-
'plugins.promptTemplates.manage.custom': 'custom',
|
|
1400
|
-
'plugins.promptTemplates.manage.newTemplateName': '新しいテンプレート',
|
|
1401
|
-
'plugins.promptTemplates.editor.selectHint': '編集するテンプレートを選択してください。',
|
|
1402
|
-
'plugins.promptTemplates.editor.namePlaceholder': 'テンプレート名',
|
|
1403
|
-
'plugins.promptTemplates.editor.nameAria': 'テンプレート名',
|
|
1404
|
-
'plugins.promptTemplates.editor.duplicate': '複製',
|
|
1405
|
-
'plugins.promptTemplates.editor.delete': '削除',
|
|
1406
|
-
'plugins.promptTemplates.editor.save': '保存',
|
|
1407
|
-
'plugins.promptTemplates.editor.builtinReadOnly': '内蔵テンプレートは読み取り専用です。編集/保存/削除/複製はできません。',
|
|
1408
|
-
'plugins.promptTemplates.editor.descPlaceholder': '説明(任意)',
|
|
1409
|
-
'plugins.promptTemplates.editor.descAria': 'テンプレート説明',
|
|
1410
|
-
'plugins.promptTemplates.editor.templateLabel': 'テンプレート',
|
|
1411
|
-
'plugins.promptTemplates.editor.templateAria': 'テンプレート内容',
|
|
1412
|
-
'plugins.promptTemplates.editor.templatePlaceholder': 'ここにテンプレートを記述します。{{var}} プレースホルダーを使用してください。',
|
|
1413
|
-
'plugins.promptTemplates.vars.title': '変数',
|
|
1414
|
-
'plugins.promptTemplates.vars.hint': 'テンプレートから検出されました。入力後に最終プロンプトをレンダリングできます。',
|
|
1415
|
-
'plugins.promptTemplates.vars.reset': 'リセット',
|
|
1416
|
-
'plugins.promptTemplates.vars.empty': '変数が検出されませんでした。',
|
|
1417
|
-
'plugins.promptTemplates.vars.valuePlaceholder': '変数値:{name}',
|
|
1418
|
-
'plugins.promptTemplates.preview.title': 'プレビュー',
|
|
1419
|
-
'plugins.promptTemplates.preview.hint': 'レンダリング結果(欠落変数は空に置換されます)。',
|
|
1420
|
-
'plugins.promptTemplates.preview.copy': 'コピー',
|
|
1421
|
-
'plugins.promptTemplates.preview.outputAria': 'レンダリング結果(プロンプト)',
|
|
1422
|
-
'plugins.promptTemplates.noPluginSelected': '左側からプラグインを選択してください。',
|
|
1423
|
-
|
|
1424
|
-
'plugins.meta.attribution': '作成者:{createdBy} · メンテナー:{maintainers}',
|
|
1425
|
-
'plugins.meta.createdBy': '作成者:{createdBy}',
|
|
1426
|
-
'plugins.meta.maintainedBy': 'メンテナー:{maintainers}',
|
|
1427
|
-
|
|
1428
|
-
// Built-in prompt templates
|
|
1429
|
-
'plugins.builtin.commentPolish.name': 'コードコメントブラッシュアップ',
|
|
1430
|
-
'plugins.builtin.commentPolish.desc': '以下のコードコメントを軽く整えてください {{code}}',
|
|
1431
|
-
'plugins.builtin.commentPolish.line1': '以下のコードコメントを軽く整えてください',
|
|
1432
|
-
'plugins.builtin.ruleAck.name': 'ルール確認返信',
|
|
1433
|
-
'plugins.builtin.ruleAck.desc': '【{{rule}}】に従って、受信確認を返してください',
|
|
1434
|
-
'plugins.builtin.ruleAck.line1': '【{{rule}}】に従って、受信確認を返してください',
|
|
1435
|
-
|
|
1436
|
-
// Toasts
|
|
1437
|
-
'toast.copy.empty': 'コピーする内容がありません',
|
|
1438
|
-
'toast.copy.ok': 'コピーしました',
|
|
1439
|
-
'toast.copy.fail': 'コピーに失敗しました',
|
|
1440
|
-
'toast.save.ok': '保存しました',
|
|
1441
|
-
'toast.save.fail': '保存に失敗しました',
|
|
1442
|
-
'toast.delete.ok': '削除しました',
|
|
1443
|
-
'toast.delete.fail': '削除に失敗しました',
|
|
1444
|
-
'toast.export.empty': 'エクスポートする内容がありません',
|
|
1445
|
-
'toast.export.ok': 'エクスポートしました',
|
|
1446
|
-
'toast.export.fail': 'エクスポートに失敗しました',
|
|
1447
|
-
'toast.import.ok': 'インポート成功',
|
|
1448
|
-
'toast.import.fail': 'インポート失敗',
|
|
1449
|
-
'toast.import.notAvailable': 'インポートは利用できません',
|
|
1450
|
-
'toast.import.readFileFail': 'ファイル読み取り失敗',
|
|
1451
|
-
'toast.import.invalidJson': '無効な JSON',
|
|
1452
|
-
'toast.import.expectedArray': 'JSON は配列である必要があります',
|
|
1453
|
-
'toast.export.notSupported': '現在エクスポートはサポートされていません',
|
|
1454
|
-
'toast.plugins.loadFail': 'Plugins 読み込み失敗',
|
|
1455
|
-
'toast.templates.builtinNotEditable': '内蔵テンプレートは編集できません',
|
|
1456
|
-
'toast.templates.builtinNotModifiable': '内蔵テンプレートは変更できません。先に複製してから編集してください',
|
|
1457
|
-
'toast.templates.nameRequired': 'テンプレート名は必須です',
|
|
1458
|
-
'toast.templates.builtinNotDuplicable': '内蔵テンプレートは複製できません',
|
|
1459
|
-
'toast.templates.builtinNotDeletable': '内蔵テンプレートは削除できません',
|
|
1460
|
-
'toast.templates.deleteTitle': 'テンプレート削除',
|
|
1461
|
-
'toast.templates.deleteMessage': '「{name}」を削除しますか?この操作は取り消せません。',
|
|
1462
|
-
'toast.templates.deleteConfirm': '削除',
|
|
1463
|
-
'toast.templates.deleteCancel': 'キャンセル',
|
|
1464
|
-
|
|
1465
|
-
// Basic modals
|
|
1466
|
-
'modal.providerAdd.title': 'プロバイダー追加',
|
|
1467
|
-
'modal.providerEdit.title': 'プロバイダー編集',
|
|
1468
|
-
'modal.modelAdd.title': 'モデル追加',
|
|
1469
|
-
'modal.modelManage.title': 'モデル管理',
|
|
1470
|
-
'modal.claudeConfigAdd.title': 'Claude Code 設定追加',
|
|
1471
|
-
'modal.claudeConfigEdit.title': 'Claude Code 設定編集',
|
|
1472
|
-
'field.useBuiltinTransform': '内蔵変換を使用(OpenAI 形式互換)',
|
|
1473
|
-
'hint.useBuiltinTransform': '有効時:書き込まれる base_url は codexmate 内蔵変換サービスを指します。Codex のトークンは codexmate に固定されます。',
|
|
1474
|
-
|
|
1475
|
-
// Config template / agents modals
|
|
1476
|
-
'modal.configTemplate.title': 'Config テンプレートエディタ(手動確認適用)',
|
|
1477
|
-
'modal.configTemplate.label': 'config.toml テンプレート',
|
|
1478
|
-
'modal.configTemplate.placeholder': 'ここに config.toml テンプレート内容を編集してください',
|
|
1479
|
-
'modal.configTemplate.mode.twoStep': '二段階確認:先に差分をプレビューし、その後適用します。',
|
|
1480
|
-
'modal.configTemplate.mode.oneStep': '一段階適用:「適用」をクリックすると直接書き込みます。',
|
|
1481
|
-
'diff.title.configTemplate': '差分プレビュー(config.toml)',
|
|
1482
|
-
'diff.generating': '生成中...',
|
|
1483
|
-
'diff.failed': '生成失敗',
|
|
1484
|
-
'diff.noChanges': '変更が検出されませんでした',
|
|
1485
|
-
'diff.hint.busy': '差分生成中または適用中のため、操作は一時的に利用できません。',
|
|
1486
|
-
'diff.hint.failedBack': '差分プレビューに失敗しました。編集に戻って再試行してください。',
|
|
1487
|
-
'diff.hint.noChangesBack': '変更が検出されませんでした。編集に戻って修正を続けるか、キャンセルして終了してください。',
|
|
1488
|
-
'diff.hint.previewMode': '現在プレビューモードです。「適用」をクリックして書き込むか、「編集に戻る」で修正を続けてください。',
|
|
1489
|
-
|
|
1490
|
-
'modal.agents.export': 'エクスポート',
|
|
1491
|
-
'modal.agents.copy': 'コピー',
|
|
1492
|
-
'modal.agents.title': 'AGENTS.md エディタ',
|
|
1493
|
-
'modal.agents.hint': '保存すると対象の AGENTS.md(config.toml と同階層)に書き込まれます。',
|
|
1494
|
-
'modal.agents.targetFile': '対象ファイル',
|
|
1495
|
-
'modal.agents.contentLabel': 'AGENTS.md 内容',
|
|
1496
|
-
'modal.agents.placeholder': 'ここに AGENTS.md の内容を編集してください',
|
|
1497
|
-
'modal.agents.unsaved.previewModeHint': 'プレビューモード:現在の変更はまだ保存されていません。「適用」をクリックするとファイルに書き込まれます。',
|
|
1498
|
-
'modal.agents.unsaved.detectedHint': '未保存の変更が検出されました:ページを閉じるか適用する前に保存してください。',
|
|
1499
|
-
'modal.agents.hint.shortcuts': 'ショートカット:Esc(差分プレビュー時は編集に戻る、編集時はウィンドウを閉じる)。',
|
|
1500
|
-
'modal.agents.hint.twoStepSave': '保存は2段階:「確認」で差分をプレビューし、「適用」で保存します。',
|
|
1501
|
-
'diff.tooLargeSkip': '内容が大きすぎるため、行単位の差分プレビューをスキップしました',
|
|
1502
|
-
'diff.viewHint.preview': '現在プレビューモードです。「適用」で保存するか、「編集に戻る」で修正を続けてください。',
|
|
1503
|
-
'diff.viewHint.truncated': '内容が大きすぎるためプレビューをスキップしました。「適用」で保存するか、「編集に戻る」で修正を続けてください。',
|
|
1504
|
-
|
|
1505
|
-
// Skills modal
|
|
1506
|
-
'modal.skills.title': 'Skills 管理',
|
|
1507
|
-
'modal.skills.subtitle': '現在のホストのローカル Skills を管理します。',
|
|
1508
|
-
'modal.skills.target.aria': 'Skills 管理ターゲットを選択',
|
|
1509
|
-
'modal.skills.rootDir': 'Skills ディレクトリ({label})',
|
|
1510
|
-
'modal.skills.summary.target': 'インストールターゲット',
|
|
1511
|
-
'modal.skills.summary.total': 'ローカル総数',
|
|
1512
|
-
'modal.skills.summary.withSkill': 'SKILL.md あり',
|
|
1513
|
-
'modal.skills.summary.missingSkill': 'SKILL.md なし',
|
|
1514
|
-
'modal.skills.summary.importable': 'インポート可',
|
|
1515
|
-
'modal.skills.panel.aria': 'Skills 管理パネル',
|
|
1516
|
-
'modal.skills.local.title': 'ローカル Skills',
|
|
1517
|
-
'modal.skills.local.note': '検索・フィルター・一括削除が可能です。',
|
|
1518
|
-
'modal.skills.filter.keywordAria': '名前または説明で skill をフィルター',
|
|
1519
|
-
'modal.skills.filter.keywordPlaceholder': 'ディレクトリ名/表示名/説明で検索',
|
|
1520
|
-
'modal.skills.filter.statusAria': 'SKILL.md 状態で skill をフィルター',
|
|
1521
|
-
'modal.skills.filter.status.all': 'すべての状態',
|
|
1522
|
-
'modal.skills.filter.status.withSkill': 'SKILL.md ありのみ',
|
|
1523
|
-
'modal.skills.filter.status.missingSkill': 'SKILL.md なしのみ',
|
|
1524
|
-
'modal.skills.selection.stats': '選択 {selected}(フィルターヒット {filtered} / {total}、フィルター内選択 {visibleSelected})',
|
|
1525
|
-
'modal.skills.empty.local': '管理可能な skill がありません。',
|
|
1526
|
-
'modal.skills.empty.filtered': '現在のフィルター条件に一致する skill がありません。',
|
|
1527
|
-
'modal.skills.pill.hasSkillFile': 'SKILL.md あり',
|
|
1528
|
-
'modal.skills.pill.missingSkillFile': 'SKILL.md なし',
|
|
1529
|
-
'modal.skills.pill.symlink': 'シンボリックリンク',
|
|
1530
|
-
'modal.skills.pill.dir': 'ディレクトリ',
|
|
1531
|
-
'modal.skills.import.title': 'クロスアプリインポート',
|
|
1532
|
-
'modal.skills.import.note': 'スキャンして現在の {label} にインポートします。',
|
|
1533
|
-
'modal.skills.import.scan': 'インポート可能をスキャン',
|
|
1534
|
-
'modal.skills.import.stats': '選択 {selected} / {total}、SKILL.md あり {configured}、なし {missing}',
|
|
1535
|
-
'modal.skills.import.emptyHint': 'インポート可能な skill がありません。「インポート可能をスキャン」をクリックしてください。',
|
|
1536
|
-
'modal.skills.bulk.title': '一括操作',
|
|
1537
|
-
'modal.skills.bulk.note': '右側はインポート操作、左側はローカル選択です。',
|
|
1538
|
-
'modal.skills.actions.zipImport': 'ZIP インポート',
|
|
1539
|
-
'modal.skills.actions.zipImporting': 'ZIP インポート中...',
|
|
1540
|
-
'modal.skills.actions.exportSelected': '選択をエクスポート',
|
|
1541
|
-
'modal.skills.actions.exporting': 'エクスポート中...',
|
|
1542
|
-
'modal.skills.actions.importSelected': '選択をインポート',
|
|
1543
|
-
'modal.skills.actions.importing': 'インポート中...',
|
|
1544
|
-
'modal.skills.actions.deleteSelected': '選択を削除',
|
|
1545
|
-
'modal.skills.actions.deleting': '削除中...',
|
|
1546
|
-
|
|
1547
|
-
// OpenClaw config modal (quick)
|
|
1548
|
-
'placeholder.openclawConfigNameExample': '例: デフォルト設定',
|
|
1549
|
-
'modal.openclaw.loadCurrent': '現在の設定を読み込む',
|
|
1550
|
-
'modal.openclaw.quick.title': '初心者向けクイック設定',
|
|
1551
|
-
'modal.openclaw.quick.subtitle': '3ステップで完了:Provider とモデルを入力、エディタに書き込み、保存して適用。',
|
|
1552
|
-
'modal.openclaw.quick.readFromEditor': 'エディタから読み取り',
|
|
1553
|
-
'modal.openclaw.quick.step1': 'Provider とモデルを入力',
|
|
1554
|
-
'modal.openclaw.quick.step2': 'エディタに書き込みをクリック',
|
|
1555
|
-
'modal.openclaw.quick.step3': '保存して適用',
|
|
1556
|
-
'modal.openclaw.quick.providerHint': 'provider/model として主モデル識別子に結合されます。',
|
|
1557
|
-
'modal.openclaw.quick.baseUrlHintDefault': 'OpenClaw 内蔵 provider のデフォルト値で補完されています。直接変更可能です。',
|
|
1558
|
-
'modal.openclaw.quick.baseUrlHintReadonly': '外部参照が検出されたため、クイックフォームでは読み取り専用で表示されます。変更するには原文編集を使用してください。',
|
|
1559
|
-
'modal.openclaw.quick.apiKeyHintFromAuth': '現在の値は OpenClaw 外部認証設定から取得されています。変更後「保存して適用」時に対応する auth profile に書き戻されます。',
|
|
1560
|
-
'modal.openclaw.quick.apiKeyHintReadonly': '外部認証または参照が検出されたため、クイックフォームでは読み取り専用で表示されます。変更するには原文編集または対応する認証設定を使用してください。',
|
|
1561
|
-
'modal.openclaw.quick.apiKeyHintKeep': '空白のままにすると既存のキーは上書きされません。',
|
|
1562
|
-
'placeholder.apiTypeExample': '例: openai',
|
|
1563
|
-
'modal.openclaw.quick.modelTitle': 'モデル',
|
|
1564
|
-
'placeholder.modelIdExample': '例: gpt-5',
|
|
1565
|
-
'placeholder.modelNameOptional': 'モデル表示名(任意)',
|
|
1566
|
-
'field.contextWindow': 'コンテキスト長',
|
|
1567
|
-
'field.maxOutput': '最大出力',
|
|
1568
|
-
'hint.emptyNoChange': '空白のままにすると既存の設定は変更されません。',
|
|
1569
|
-
'modal.openclaw.quick.optionsTitle': 'オプション',
|
|
1570
|
-
'modal.openclaw.quick.setPrimary': '主モデルに設定',
|
|
1571
|
-
'modal.openclaw.quick.overrideProvider': '同名 Provider 基本情報を上書き',
|
|
1572
|
-
'modal.openclaw.quick.overrideModels': '同名モデルリストを上書き',
|
|
1573
|
-
'modal.openclaw.quick.optionsHint': '上書きをオフにすると欠落フィールドのみ補完されます。',
|
|
1574
|
-
'modal.openclaw.quick.writeToEditor': 'エディタに書き込み',
|
|
1575
|
-
|
|
1576
|
-
// Docs panel
|
|
1577
|
-
'docs.title': 'CLI インストールドキュメント',
|
|
1578
|
-
'docs.subtitle': 'Claude Code / Gemini CLI / CodeBuddy Code / Codex CLI コマンドを表示。',
|
|
1579
|
-
'docs.section.commands': 'インストールコマンド',
|
|
1580
|
-
'docs.section.commandsNote': 'コマンドは直接コピーできます。',
|
|
1581
|
-
'docs.section.faq': 'よくある質問',
|
|
1582
|
-
'docs.section.faqNote': 'よくある質問は以下をご覧ください。',
|
|
1583
|
-
'docs.command.aria': '{name} コマンド',
|
|
1584
|
-
'docs.registryHintPrefix': 'コマンドに付加:',
|
|
1585
|
-
'docs.registryHintCustom': '完全な URL(http/https 含む)を入力してください。コマンドに自動付加されます。',
|
|
1586
|
-
'docs.registry.tencent': 'Tencent Cloud',
|
|
1587
|
-
'docs.meta.bin': 'bin: {bin}',
|
|
1588
|
-
'docs.termuxLabel': 'Termux',
|
|
1589
|
-
'docs.termuxAria': 'Termux Codex CLI command',
|
|
1590
|
-
'docs.rule.1': 'コマンドは現在のパッケージマネージャー、ミラー、操作に基づいて生成されます。',
|
|
1591
|
-
'docs.rule.2': 'カスタムミラーはインストールとアップグレードにのみ使用されます。',
|
|
1592
|
-
'docs.tip.win.1': 'PowerShell で権限不足(EACCES/EPERM)エラーが発生した場合は、管理者としてインストールコマンドを実行してください。',
|
|
1593
|
-
'docs.tip.win.2': 'インストール後にコマンドが見つからない場合は、ターミナルを再起動して実行:where codex / where claude / where gemini / where codebuddy。',
|
|
1594
|
-
'docs.tip.win.3': '企業ネットワークで制限がある場合は、ミラーソース(npmmirror / Tencent Cloud / カスタム)を切り替えてください。',
|
|
1595
|
-
'docs.tip.unix.1': 'EACCES 権限エラーが発生した場合は、Node グローバルディレクトリの権限を修正してください。sudo npm は推奨しません。',
|
|
1596
|
-
'docs.tip.unix.2': 'インストール後にコマンドが認識されない場合は、ターミナルを再起動して実行:which codex / which claude / which gemini / which codebuddy。',
|
|
1597
|
-
'docs.tip.unix.3': '企業ネットワークで制限がある場合は、ミラーソース(npmmirror / Tencent Cloud / カスタム)を切り替えてください。',
|
|
1598
|
-
|
|
1599
|
-
// Sessions panel
|
|
1600
|
-
'sessions.loading': 'セッション読み込み中...',
|
|
1601
|
-
'sessions.sourceTitle': 'ソース',
|
|
1602
|
-
'sessions.refresh': '更新',
|
|
1603
|
-
'sessions.refreshing': '更新中...',
|
|
1604
|
-
'sessions.allPaths': 'すべてのパス',
|
|
1605
|
-
'sessions.source.codex': 'Codex',
|
|
1606
|
-
'sessions.source.claudeCode': 'Claude Code',
|
|
1607
|
-
'sessions.source.gemini': 'Gemini',
|
|
1608
|
-
'sessions.source.codebuddy': 'CodeBuddy',
|
|
1609
|
-
'sessions.loadingList': 'セッション一覧を読み込み中...',
|
|
1610
|
-
'sessions.empty': 'セッションがありません',
|
|
1611
|
-
'sessions.unknownTime': '不明な時間',
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
'sessions.query.placeholder.enabled': 'セッションを検索...',
|
|
1615
|
-
'sessions.query.placeholder.disabled': '現在のソースでは検索は利用できません',
|
|
1616
|
-
'sessions.pin': 'ピン留め',
|
|
1617
|
-
'sessions.unpin': 'ピン留め解除',
|
|
1618
|
-
'sessions.copyResume': '再開コマンドをコピー',
|
|
1619
|
-
'sessions.preview.refresh': '更新',
|
|
1620
|
-
'sessions.preview.loading': 'プレビュー読み込み中...',
|
|
1621
|
-
'sessions.preview.deleteHard': '直接削除',
|
|
1622
|
-
'sessions.preview.moveToTrash': 'ゴミ箱に移動',
|
|
1623
|
-
'sessions.preview.deleting': '削除中...',
|
|
1624
|
-
'sessions.preview.moving': '移動中...',
|
|
1625
|
-
'sessions.preview.export': 'エクスポート',
|
|
1626
|
-
'sessions.preview.exporting': 'エクスポート中...',
|
|
1627
|
-
'sessions.preview.convert': '派生セッションを生成',
|
|
1628
|
-
'sessions.preview.converting': '変換中...',
|
|
1629
|
-
'sessions.preview.convert.loadedOnly': '読み込み済みのみ変換',
|
|
1630
|
-
'sessions.preview.openStandalone': 'スタンドアロンで開く',
|
|
1631
|
-
'sessions.preview.loadingBody': 'メッセージ読み込み中...',
|
|
1632
|
-
'sessions.preview.emptyMsgs': 'メッセージがありません',
|
|
1633
|
-
'sessions.preview.rendering': 'レンダリング中...',
|
|
1634
|
-
'sessions.preview.rerender': '再レンダリング',
|
|
1635
|
-
'sessions.preview.preparing': '準備中...',
|
|
1636
|
-
'sessions.preview.clipped': 'プレビューは一部のみ表示されています',
|
|
1637
|
-
'sessions.preview.shownCount': '{shown} / {total} 件表示',
|
|
1638
|
-
'sessions.preview.loadMore': 'さらに読み込む',
|
|
1639
|
-
'sessions.preview.loadingMore': 'さらに読み込み中...',
|
|
1640
|
-
'sessions.timeline.aria': 'セッションタイムライン',
|
|
1641
|
-
'sessions.selectHint': '左側からセッションを選択してください',
|
|
1642
|
-
'sessions.role.all': 'すべてのロール',
|
|
1643
|
-
'sessions.role.user': 'ユーザー',
|
|
1644
|
-
'sessions.role.assistant': 'アシスタント',
|
|
1645
|
-
'sessions.role.system': 'システム',
|
|
1646
|
-
'sessions.time.all': 'すべての期間',
|
|
1647
|
-
'sessions.time.7d': '直近 7 日',
|
|
1648
|
-
'sessions.time.30d': '直近 30 日',
|
|
1649
|
-
'sessions.time.90d': '直近 90 日',
|
|
1650
|
-
'sessions.sort.time': '時間順',
|
|
1651
|
-
'sessions.sort.hot': '話題順',
|
|
1652
|
-
'sessions.sort.hotBadge': '話題',
|
|
1653
|
-
'sessions.filters.copyLink': 'リンクをコピー',
|
|
1654
|
-
'sessions.filters.urlBuildFail': 'リンク生成失敗',
|
|
1655
|
-
'sessions.filters.source': 'ソース',
|
|
1656
|
-
'sessions.filters.path': 'パス',
|
|
1657
|
-
'sessions.filters.keyword': 'キーワード',
|
|
1658
|
-
'sessions.filters.role': 'ロール',
|
|
1659
|
-
'sessions.filters.time': '期間',
|
|
1660
|
-
'sessions.roleLabel.user': 'User',
|
|
1661
|
-
'sessions.roleLabel.system': 'System',
|
|
1662
|
-
'sessions.roleLabel.assistant': 'Assistant',
|
|
1663
|
-
|
|
1664
|
-
// Usage panel
|
|
1665
|
-
'usage.overview': 'Usage 概要',
|
|
1666
|
-
'usage.range.aria': 'Usage 時間範囲',
|
|
1667
|
-
'usage.range.7d': '直近 7 日',
|
|
1668
|
-
'usage.range.30d': '直近 30 日',
|
|
1669
|
-
'usage.range.all': 'すべて',
|
|
1670
|
-
'usage.compare.toggle': '前期間と比較',
|
|
1671
|
-
'usage.compare.prev': '前期間',
|
|
1672
|
-
'usage.compare.delta': '変化',
|
|
1673
|
-
'usage.refresh': '統計を更新',
|
|
1674
|
-
'usage.refreshing': '更新中...',
|
|
1675
|
-
'usage.loading': 'Usage 統計を読み込み中...',
|
|
1676
|
-
'usage.empty': '統計に使用できるセッションデータがありません',
|
|
1677
|
-
'usage.refreshOverlay': '更新中…',
|
|
1678
|
-
'usage.copyTitle': 'クリックでコピー:{value}',
|
|
1679
|
-
'usage.copySuccess': 'コピー済:{label}',
|
|
1680
|
-
'usage.copyFail': 'コピー失敗',
|
|
1681
|
-
'usage.copyNone': 'コピーする内容がありません',
|
|
1682
|
-
'usage.daily.title': '日別消費',
|
|
1683
|
-
'usage.daily.subtitle': '日別 token と推定費用のサマリー(費用はそれぞれ最大値で正規化表示)。',
|
|
1684
|
-
'usage.daily.note': '注:推定費用はデフォルトで Claude を含みません。モデル単価が一致し、セッションが input/output token を記録している場合のみ計算されます。',
|
|
1685
|
-
'usage.heatmap.title': 'ヒートマップ',
|
|
1686
|
-
'usage.heatmap.subtitle': '日別セッション数。色が濃いほど多い。',
|
|
1687
|
-
'usage.heatmap.legend.less': '少',
|
|
1688
|
-
'usage.heatmap.legend.more': '多',
|
|
1689
|
-
'usage.heatmap.tooltip': '{date} · {sessions} セッション · {messages} メッセージ · {tokens} token',
|
|
1690
|
-
'usage.heatmap.aria': '{date}、{sessions} セッション',
|
|
1691
|
-
'usage.hourlyHeatmap.title': '7×24 アクティブヒートマップ',
|
|
1692
|
-
'usage.hourlyHeatmap.subtitle': '曜日 × 時間帯でセッション分布を集計、濃色 = 高アクティブ。',
|
|
1693
|
-
'usage.hourlyHeatmap.tooltip': '{weekday} {hour}:00 · {sessions} セッション · {messages} メッセージ · {tokens} token',
|
|
1694
|
-
'usage.hourlyHeatmap.legend.less': '少',
|
|
1695
|
-
'usage.hourlyHeatmap.legend.more': '多',
|
|
1696
|
-
'usage.legend.tokens': 'Token',
|
|
1697
|
-
'usage.legend.cost': '推定費用',
|
|
1698
|
-
'usage.table.date': '日付',
|
|
1699
|
-
'usage.table.sessions': 'セッション',
|
|
1700
|
-
'usage.table.messages': 'メッセージ',
|
|
1701
|
-
'usage.table.tokens': 'Token',
|
|
1702
|
-
'usage.table.cost': '推定費用',
|
|
1703
|
-
'usage.trend.sessions': 'セッション推移',
|
|
1704
|
-
'usage.trend.messages': 'メッセージ推移',
|
|
1705
|
-
'usage.trend.activeHours': 'アクティブ時間帯',
|
|
1706
|
-
'usage.trend.sources': 'ソースインサイト',
|
|
1707
|
-
'usage.legend.codex': 'Codex',
|
|
1708
|
-
'usage.legend.claude': 'Claude',
|
|
1709
|
-
'usage.trend.sessions.codexTitle': 'Codex {count}',
|
|
1710
|
-
'usage.trend.sessions.claudeTitle': 'Claude {count}',
|
|
1711
|
-
'usage.trend.messages.barTitle': '{count} 件のメッセージ',
|
|
1712
|
-
'usage.hour.title': '{hour}:00 · {count} 回のセッション',
|
|
1713
|
-
'usage.source.row': '{sessions} セッション · {messages} メッセージ · 平均 {avg}',
|
|
1714
|
-
'usage.summary.sessions': '総セッション数',
|
|
1715
|
-
'usage.summary.messages': '総メッセージ数',
|
|
1716
|
-
'usage.summary.tokens': '総 Token 数',
|
|
1717
|
-
'usage.summary.contextWindow': '総コンテキスト数',
|
|
1718
|
-
'usage.summary.estimatedCost': '推定費用 · {range}',
|
|
1719
|
-
'usage.estimatedCost.note.excludesClaudePrefix': '現在 Claude を除く、',
|
|
1720
|
-
'usage.estimatedCost.method.configured': '設定済み単価で推定',
|
|
1721
|
-
'usage.estimatedCost.method.catalog': '公開モデルカタログで推定',
|
|
1722
|
-
'usage.estimatedCost.method.configuredAndCatalog': '設定済み単価 + 公開モデルカタログで推定',
|
|
1723
|
-
'usage.estimatedCost.detail.estimate': '{prefix}{method}、推定 {estimate}、カバー {covered}/{total} セッション、約 {percent}% token',
|
|
1724
|
-
'usage.estimatedCost.detail.missing': '{prefix}一致するモデル単価または token 分割がありません。先に models.cost を補完するか、セッションが input/output token を記録しているか確認してください。',
|
|
1725
|
-
'usage.summary.activeDuration': 'アクティブ期間',
|
|
1726
|
-
'usage.summary.activeDuration.title': '累積セッションスパン {value}',
|
|
1727
|
-
'usage.summary.totalDuration': '総期間',
|
|
1728
|
-
'usage.summary.totalDuration.title': '全体の時間スパン {value}',
|
|
1729
|
-
'usage.summary.activeDays': 'アクティブ日数',
|
|
1730
|
-
'usage.summary.avgMessagesPerSession': 'セッションあたり平均メッセージ',
|
|
1731
|
-
'usage.summary.busiestDay': '最も忙しい日',
|
|
1732
|
-
'usage.summary.busiestHour': 'ピーク時間帯',
|
|
1733
|
-
'usage.currentSession.title': '現在のセッション',
|
|
1734
|
-
'usage.currentSession.apiDuration': 'API 時間',
|
|
1735
|
-
'usage.currentSession.totalDuration': '総時間',
|
|
1736
|
-
'usage.currentSession.tokens': 'Token',
|
|
1737
|
-
'usage.range.kicker.all': 'すべて',
|
|
1738
|
-
'usage.range.kicker.30d': '直近 30 日',
|
|
1739
|
-
'usage.range.kicker.7d': '直近 7 日',
|
|
1740
|
-
'usage.copyTokenDay': 'コピー済:Token({day})',
|
|
1741
|
-
'usage.copyCostDay': 'コピー済:推定費用({day})',
|
|
1742
|
-
'usage.dayDetail.title': '{day} 詳細',
|
|
1743
|
-
'usage.dayDetail.subtitle': '日付を選択すると当日の構成をすばやく確認できます。',
|
|
1744
|
-
'usage.dayDetail.pick': '日付を選択',
|
|
1745
|
-
'usage.dayDetail.empty': '日付を選択して当日の構成を確認してください。',
|
|
1746
|
-
'usage.dayDetail.clear': 'クリア',
|
|
1747
|
-
'usage.dayDetail.topSessions': 'トップセッション',
|
|
1748
|
-
'usage.dayDetail.topModels': 'トップモデル',
|
|
1749
|
-
'usage.models.title': '使用モデル',
|
|
1750
|
-
'usage.models.subtitle': '実際に記録されたモデル名のみを表示します。',
|
|
1751
|
-
'usage.models.kicker': '識別済 {modeled}/{total}',
|
|
1752
|
-
'usage.models.count': 'モデル数',
|
|
1753
|
-
'usage.models.coverage': 'セッションカバレッジ',
|
|
1754
|
-
'usage.models.missing': 'モデル欠落',
|
|
1755
|
-
'usage.models.noneTitle': '現在の範囲でモデル名が読み取れません',
|
|
1756
|
-
'usage.models.noneBody': '{total} セッションをスキャンしましたが、元のレコードに識別可能な model フィールドがありません。',
|
|
1757
|
-
'usage.models.providerOnly': 'うち {count} 件の古いセッションは provider のみ記録されています。',
|
|
1758
|
-
'usage.models.missingNote.providerOnly': '別途 {count} 件のセッションにモデル名がなく、一覧に含まれていません。',
|
|
1759
|
-
'usage.models.missingNote': '別途 {count} 件のセッションに model がなく、一覧に含まれていません。',
|
|
1760
|
-
'usage.models.missingListTitle': 'まだモデル名が欠落しているセッション',
|
|
1761
|
-
'usage.models.chipTitle': '{model} · {sessions} セッション · {messages} メッセージ{tokens}',
|
|
1762
|
-
'usage.models.meta': '{sessions} セッション · {messages} メッセージ{tokens}',
|
|
1763
|
-
'usage.weekday.title': '曜日分布',
|
|
1764
|
-
'usage.paths.title': '高頻度パス',
|
|
1765
|
-
'usage.paths.empty': 'パスデータがありません',
|
|
1766
|
-
'usage.paths.count': '{count} 回',
|
|
1767
|
-
'usage.paths.meta': '{messages} メッセージ{recent}',
|
|
1768
|
-
'usage.paths.recent': ' · 最近 {label}',
|
|
1769
|
-
'usage.recent.title': '最近アクティブなセッション',
|
|
1770
|
-
'usage.sessions.empty': 'セッションデータがありません',
|
|
1771
|
-
'usage.sessions.messages': '{count} メッセージ',
|
|
1772
|
-
'usage.sessions.topDensity': 'メッセージ密度最高',
|
|
1773
|
-
|
|
1774
|
-
// Config panel (Codex)
|
|
1775
|
-
'config.addProvider': 'プロバイダー追加',
|
|
1776
|
-
'config.providerTemplate.title': 'プリセットプロバイダー',
|
|
1777
|
-
'config.models': 'モデル',
|
|
1778
|
-
'config.modelLoading': '読み込み中...',
|
|
1779
|
-
'config.models.unlimited': '現在モデル一覧がありません。手動入力可能です。',
|
|
1780
|
-
'config.models.error': 'モデル一覧の取得に失敗しました。手動入力可能です。',
|
|
1781
|
-
'config.models.notInList.codex': '現在のモデルは一覧にありません。手動入力またはテンプレート変更が可能です。',
|
|
1782
|
-
'config.models.notInList.other': '現在のモデルは一覧にありません。手動入力可能です。',
|
|
1783
|
-
'config.template.editFirst': '先にテンプレートを編集してから適用してください。',
|
|
1784
|
-
'config.template.bridgeCodexOnly': '{hint} テンプレートは Codex のみ編集可能です。',
|
|
1785
|
-
'config.template.openEditor': 'テンプレートエディタを開く',
|
|
1786
|
-
'modal.configTemplate.title': 'Config テンプレートエディタ(手動確認適用)',
|
|
1787
|
-
'modal.configTemplate.placeholder': 'ここに config.toml テンプレート内容を編集してください',
|
|
1788
|
-
'config.serviceTier': 'サービスティア',
|
|
1789
|
-
'config.serviceTier.fast': 'fast(デフォルト)',
|
|
1790
|
-
'config.serviceTier.standard': 'standard',
|
|
1791
|
-
'config.serviceTier.hint': 'fast のみ {field} に書き込みます。',
|
|
1792
|
-
'config.reasoningEffort': '推論強度',
|
|
1793
|
-
'config.reasoningEffort.medium': 'medium(デフォルト)',
|
|
1794
|
-
'config.reasoningEffort.hint': '推論の深さを制御します。high はより深く推論します。',
|
|
1795
|
-
'config.contextBudget': '圧縮閾値',
|
|
1796
|
-
'config.reset': 'リセット',
|
|
1797
|
-
'config.example': '例: {value}',
|
|
1798
|
-
'config.contextWindow.hint': 'コンテキスト上限、デフォルト 190000。',
|
|
1799
|
-
'config.autoCompact.hint': '自動圧縮閾値、デフォルト 185000。',
|
|
1800
|
-
'config.agents.open': 'AGENTS.md を開く',
|
|
1801
|
-
'modal.agents.title.default': 'AGENTS.md エディタ',
|
|
1802
|
-
'modal.agents.title.claudeMd': 'CLAUDE.md エディタ',
|
|
1803
|
-
'modal.agents.title.openclaw': 'OpenClaw AGENTS.md エディタ',
|
|
1804
|
-
'modal.agents.hint.default': '保存すると対象の AGENTS.md(config.toml と同階層)に書き込まれます。',
|
|
1805
|
-
'modal.agents.hint.claudeMd': '保存すると ~/.claude/CLAUDE.md に書き込まれます。',
|
|
1806
|
-
'modal.agents.contentLabel.claudeMd': 'CLAUDE.md 内容',
|
|
1807
|
-
'modal.agents.placeholder.claudeMd': 'ここに CLAUDE.md の内容を編集してください',
|
|
1808
|
-
'modal.agents.hint.openclaw': '保存すると OpenClaw Workspace の AGENTS.md に書き込まれます。',
|
|
1809
|
-
'modal.agents.title.openclawWorkspaceFile': 'OpenClaw ワークスペースファイル: {fileName}',
|
|
1810
|
-
'modal.agents.hint.openclawWorkspaceFile': '保存すると OpenClaw Workspace の {fileName} に書き込まれます。',
|
|
1811
|
-
'config.url.unset': 'URL 未設定',
|
|
1812
|
-
'config.model.unset': 'モデル未設定',
|
|
1813
|
-
'config.badge.system': 'システム',
|
|
1814
|
-
'config.availabilityTest': '可用性テスト',
|
|
1815
|
-
'config.availabilityTestAria': '{name} の可用性をテスト',
|
|
1816
|
-
'config.health.title': '設定ヘルスチェック',
|
|
1817
|
-
'config.health.run': 'チェック実行',
|
|
1818
|
-
'config.health.running': 'チェック中...',
|
|
1819
|
-
'config.health.hint': 'すべてのプロバイダーの可用性を一括プローブし、遅延表示を更新します。',
|
|
1820
|
-
'config.health.progress': '完了 {done}/{total} · 失敗 {failed}',
|
|
1821
|
-
'config.health.ok': 'チェック通過',
|
|
1822
|
-
'config.health.fail': 'チェック失敗',
|
|
1823
|
-
'config.health.issues': '{count} 件の問題',
|
|
1824
|
-
'config.shareCommand': 'コマンド共有',
|
|
1825
|
-
'config.shareDisabled': '共有不可',
|
|
1826
|
-
'config.shareCommand.aria': 'インポートコマンドを共有',
|
|
1827
|
-
'config.provider.edit.aria': 'プロバイダーを編集:{name}',
|
|
1828
|
-
'config.provider.delete.aria': 'プロバイダーを削除:{name}',
|
|
1829
|
-
'config.provider.clone': 'クローン',
|
|
1830
|
-
'config.provider.clone.aria': 'プロバイダーをクローン:{name}',
|
|
1831
|
-
'app.loadingConfig': '設定読み込み中...',
|
|
1832
|
-
'common.current': '現在 {value}',
|
|
1833
|
-
'common.notSelected': '未選択',
|
|
1834
|
-
'common.readFromEditor': 'エディタから読み取り',
|
|
1835
|
-
'common.writeToEditor': 'エディタに書き込み',
|
|
1836
|
-
'sessions.sourceLabel': 'ソース:{value}',
|
|
1837
|
-
'usage.rangeLabel': '範囲:{value}',
|
|
1838
|
-
'sessions.source.all': 'すべて',
|
|
1839
|
-
'usage.range.all': 'すべて',
|
|
1840
|
-
'usage.range.7d.short': '直近 7 日',
|
|
1841
|
-
'usage.range.30d.short': '直近 30 日',
|
|
1842
|
-
'orchestration.queueStats': 'キュー {running} 実行中 · {queued} 待機中',
|
|
1843
|
-
'orchestration.hero.kicker': 'タスクオーケストレーション',
|
|
1844
|
-
'orchestration.hero.title': '要件を実行可能なステップに分解',
|
|
1845
|
-
'orchestration.hero.subtitle': '最初に目標を書き、計画をプレビューし、実行します。',
|
|
1846
|
-
'orchestration.draft.reset': '下書きをリセット',
|
|
1847
|
-
'orchestration.summary.aria': 'タスクオーケストレーション概要',
|
|
1848
|
-
'orchestration.summary.running': '実行中',
|
|
1849
|
-
'orchestration.summary.queued': '待機中',
|
|
1850
|
-
'orchestration.summary.runs': '実行記録',
|
|
1851
|
-
'orchestration.step1.title': '最初に結果を明確に書く',
|
|
1852
|
-
'orchestration.step1.subtitle': '実行に影響する内容だけを書いてください。',
|
|
1853
|
-
'orchestration.templates.title': 'クイックサンプル',
|
|
1854
|
-
'orchestration.templates.reviewFix.label': 'レビュー修正 + 回帰',
|
|
1855
|
-
'orchestration.templates.reviewFix.target': '現在の PR レビューを修正',
|
|
1856
|
-
'orchestration.templates.reviewFix.notes': '输出统一结论,避免重复描述',
|
|
1857
|
-
'orchestration.templates.reviewFix.followUps': '继续处理新增 review 评论\n最后更新 PR 摘要',
|
|
1858
|
-
'orchestration.templates.planOnly.label': '計画のみ',
|
|
1859
|
-
'orchestration.templates.planOnly.target': '計画を生成するだけ',
|
|
1860
|
-
'orchestration.templates.planOnly.notes': '出力統一結論,避免重复描述',
|
|
1861
|
-
'orchestration.templates.workflowBatch.label': 'Workflow 批处理',
|
|
1862
|
-
'orchestration.templates.workflowBatch.target': 'Workflow 一括実行',
|
|
1863
|
-
'orchestration.templates.workflowBatch.workflowIds': 'review-fix\nregression-test',
|
|
1864
|
-
'orchestration.templates.workflowBatch.notes': '用 Workflow 跑一组固定检查并整理结果',
|
|
1865
|
-
'orchestration.fields.target': 'ターゲット',
|
|
1866
|
-
'orchestration.fields.target.placeholder': '例: /path/to/project',
|
|
1867
|
-
'orchestration.fields.target.hint': '作業ディレクトリまたはファイルパス。',
|
|
1868
|
-
'orchestration.engine.codex': 'Codex',
|
|
1869
|
-
'orchestration.engine.workflow': 'Workflow',
|
|
1870
|
-
'orchestration.runMode.write': '書き込み',
|
|
1871
|
-
'orchestration.runMode.readOnly': '読み取り専用',
|
|
1872
|
-
'orchestration.runMode.dryRun': 'ドライラン',
|
|
1873
|
-
'orchestration.pills.hasTitle': 'タイトルあり',
|
|
1874
|
-
'orchestration.pills.workflowCount': 'Workflow {count}',
|
|
1875
|
-
'orchestration.pills.planNodes': '計画 {count} ノード',
|
|
1876
|
-
'orchestration.step2.title': '計画をプレビュー',
|
|
1877
|
-
'orchestration.step2.subtitle': 'AI が生成した計画を確認・調整します。',
|
|
1878
|
-
'orchestration.fields.engine': 'エンジン',
|
|
1879
|
-
'orchestration.fields.runMode': '実行モード',
|
|
1880
|
-
'orchestration.advanced.title': '詳細設定',
|
|
1881
|
-
'orchestration.fields.title': 'タイトル',
|
|
1882
|
-
'orchestration.fields.title.placeholder': '例: PR #42 のレビュー指摘を修正',
|
|
1883
|
-
'orchestration.fields.notes': '説明',
|
|
1884
|
-
'orchestration.fields.notes.placeholder': '例:既存アーキテクチャを書き換えず、増分実装のみ行う',
|
|
1885
|
-
'orchestration.fields.notes.hint': '境界条件、禁止事項、スタイル要件、検証要件を補足してください。',
|
|
1886
|
-
'orchestration.fields.followUps': '後続アクション(1行1件)',
|
|
1887
|
-
'orchestration.fields.followUps.placeholder': '例:\nレビューコメントの続きを処理\n最後に回帰テストを実行',
|
|
1888
|
-
'orchestration.fields.concurrency': '並列度',
|
|
1889
|
-
'orchestration.fields.concurrency.hint': '複雑なタスクは 1~2 から始めると安定します。',
|
|
1890
|
-
'orchestration.fields.autoFixRounds': '自動修正',
|
|
1891
|
-
'orchestration.fields.autoFixRounds.hint': '失敗後に自動で再試行する回数。',
|
|
1892
|
-
'orchestration.fields.workflowIds': 'Workflow ID(1行1件)',
|
|
1893
|
-
'orchestration.fields.workflowIds.placeholder': '例:\nreview-fix\nregression-test',
|
|
1894
|
-
'orchestration.fields.workflowIds.hint': 'Workflow エンジン使用時に必須。',
|
|
1895
|
-
'orchestration.workflow.stepCount': '{count} ステップ',
|
|
1896
|
-
'orchestration.step3.title': '実行して確認',
|
|
1897
|
-
'orchestration.step3.subtitle': '計画を実行し、結果を確認します。',
|
|
1898
|
-
'orchestration.actions.planning': '計画中...',
|
|
1899
|
-
'orchestration.actions.previewOnly': 'プレビューのみ',
|
|
1900
|
-
'orchestration.actions.preparing': '準備中...',
|
|
1901
|
-
'orchestration.actions.generatePlan': '計画を生成',
|
|
1902
|
-
'orchestration.actions.planAndRun': '計画して実行',
|
|
1903
|
-
'orchestration.actions.processing': '処理中...',
|
|
1904
|
-
'orchestration.actions.queueAndStart': 'キューに入れて開始',
|
|
1905
|
-
'orchestration.actions.caption': '「計画して実行」は必要に応じて計画を自動更新します。バッチタスクは「キューに入れて開始」を使用してください。',
|
|
1906
|
-
'orchestration.stage.title': 'タスクステージ',
|
|
1907
|
-
'orchestration.stage.subtitle': '3ステップでタスクを完了:計画 → プレビュー → 実行。',
|
|
1908
|
-
'orchestration.stage.pill.target': 'ターゲット',
|
|
1909
|
-
'orchestration.stage.pill.preview': 'プレビュー',
|
|
1910
|
-
'orchestration.stage.pill.run': '実行',
|
|
1911
|
-
'orchestration.plan.title': '計画',
|
|
1912
|
-
'orchestration.plan.subtitle': 'AI が生成した実行計画。各ノードは1つのステップを表します。',
|
|
1913
|
-
'orchestration.plan.summary.nodes': 'ノード数',
|
|
1914
|
-
'orchestration.plan.summary.waves': '波数',
|
|
1915
|
-
'orchestration.plan.summary.engine': 'エンジン',
|
|
1916
|
-
'orchestration.plan.node.write': '書き込み',
|
|
1917
|
-
'orchestration.plan.node.readOnly': '読み取り専用',
|
|
1918
|
-
'orchestration.labels.dependencies': '依存',
|
|
1919
|
-
'orchestration.labels.error': 'エラー',
|
|
1920
|
-
'orchestration.workbench.title': 'タスクワークベンチ',
|
|
1921
|
-
'orchestration.workbench.subtitle': 'タスクの計画・キュー・実行・振り返り。',
|
|
1922
|
-
'orchestration.queue.start': '開始',
|
|
1923
|
-
'orchestration.queue.starting': '開始中...',
|
|
1924
|
-
'orchestration.workbench.tabs.aria': 'タスクタブ',
|
|
1925
|
-
'orchestration.workbench.tabs.queue': 'キュー {count}',
|
|
1926
|
-
'orchestration.workbench.tabs.runs': '実行記録 {count}',
|
|
1927
|
-
'orchestration.workbench.tabs.detail': '詳細',
|
|
1928
|
-
'orchestration.queue.empty.title': 'キューは空です',
|
|
1929
|
-
'orchestration.queue.empty.subtitle': 'キューにタスクがありません。',
|
|
1930
|
-
'orchestration.runs.empty.title': '実行記録なし',
|
|
1931
|
-
'orchestration.runs.empty.subtitle': 'まだ実行記録がありません。',
|
|
1932
|
-
'orchestration.detail.refresh': '詳細を更新',
|
|
1933
|
-
'orchestration.detail.retry': '再試行',
|
|
1934
|
-
'orchestration.detail.retrying': '再試行中...',
|
|
1935
|
-
'orchestration.detail.empty.title': '実行記録を選択して詳細を表示',
|
|
1936
|
-
'orchestration.detail.empty.subtitle': 'ここにノードの状態、サマリー、ログが表示されます。',
|
|
1937
|
-
'orchestration.detail.summary.status': '状態',
|
|
1938
|
-
'orchestration.detail.summary.duration': '所要時間',
|
|
1939
|
-
'orchestration.detail.summary.nodes': 'ノード数',
|
|
1940
|
-
'orchestration.detail.summary.summary': 'サマリー',
|
|
1941
|
-
'orchestration.detail.node.meta': '{id} · 試行 {attempts} · 自動修正 {autoFix}',
|
|
1942
|
-
'skills.localLabel': '{target} / ローカル Skills',
|
|
1943
|
-
'skills.counts': 'インストール済 {installed} · インポート可 {importable}',
|
|
1944
|
-
|
|
1945
|
-
// Sidebar status labels (compact)
|
|
1946
|
-
'status.currentSource': '現在のソース',
|
|
1947
|
-
'status.sessionCount': 'セッション数',
|
|
1948
|
-
'status.range': '統計範囲',
|
|
1949
|
-
'status.totalSessions': '総セッション数',
|
|
1950
|
-
'status.totalMessages': '総メッセージ数',
|
|
1951
|
-
'status.engine': 'エンジン',
|
|
1952
|
-
'status.concurrency': '並列度',
|
|
1953
|
-
'status.running': '実行中',
|
|
1954
|
-
'status.queued': '待機中',
|
|
1955
|
-
'status.runs': '履歴実行',
|
|
1956
|
-
'status.currentTarget': '現在のターゲット',
|
|
1957
|
-
'status.localSkills': 'ローカル Skills',
|
|
1958
|
-
'status.importable': 'インポート可',
|
|
1959
|
-
'status.importableDirect': '直接インポート可',
|
|
1960
|
-
'status.pm': 'パッケージマネージャー',
|
|
1961
|
-
'status.action': '現在の操作',
|
|
1962
|
-
'status.registry': 'ミラー',
|
|
1963
|
-
'status.claudeConfig': 'Claude 設定',
|
|
1964
|
-
'status.claudeModel': 'Claude モデル',
|
|
1965
|
-
'status.openclawConfig': 'OpenClaw 設定',
|
|
1966
|
-
'status.workspaceFile': 'ワークスペースファイル',
|
|
1967
|
-
'status.configMode': '設定モード',
|
|
1968
|
-
'status.currentProvider': '現在の Provider',
|
|
1969
|
-
'status.currentModel': '現在のモデル',
|
|
1970
|
-
'status.quickSwitchProvider': 'プロバイダーをクイック切替',
|
|
1971
|
-
'side.usage.meta': 'ローカル統計 / トレンド',
|
|
1972
|
-
'side.orchestration.meta': '計画 / キュー / 実行',
|
|
1973
|
-
|
|
1974
|
-
// Settings panel
|
|
1975
|
-
'settings.tab.general': '一般',
|
|
1976
|
-
'settings.tab.data': 'データ',
|
|
1977
|
-
'settings.tabs.aria': '設定カテゴリ',
|
|
1978
|
-
'settings.quickSettings.title': 'クイック設定',
|
|
1979
|
-
'settings.language.sideLabel': '言語:{language}',
|
|
1980
|
-
'settings.sharePrefix.title': '共有コマンドプレフィックス',
|
|
1981
|
-
'settings.sharePrefix.meta': 'Web UI の「共有コマンドをコピー」のプレフィックスに影響',
|
|
1982
|
-
'settings.sharePrefix.label': 'プレフィックス',
|
|
1983
|
-
'settings.sharePrefix.hint': 'デフォルトはプロジェクト内の npm start を使用します。グローバル codexmate に切り替えることもできます。この設定はブラウザローカルにキャッシュされます。',
|
|
1984
|
-
'settings.backup.title': 'データバックアップ',
|
|
1985
|
-
'settings.backup.meta': 'Claude と Codex 設定のエクスポート / インポート',
|
|
1986
|
-
'settings.claude.title': 'Claude 設定',
|
|
1987
|
-
'settings.claude.meta': '~/.claude のバックアップ / インポート',
|
|
1988
|
-
'settings.codex.title': 'Codex 設定',
|
|
1989
|
-
'settings.codex.meta': '~/.codex のバックアップ / インポート',
|
|
1990
|
-
'settings.backup.progress': 'バックアップ中 {percent}%',
|
|
1991
|
-
'settings.backup.oneClickClaude': '~/.claude をワンクリックバックアップ',
|
|
1992
|
-
'settings.backup.importClaude': '~/.claude バックアップをインポート',
|
|
1993
|
-
'settings.backup.oneClickCodex': '~/.codex をワンクリックバックアップ',
|
|
1994
|
-
'settings.backup.importCodex': '~/.codex バックアップをインポート',
|
|
1995
|
-
'settings.importing': 'インポート中...',
|
|
1996
|
-
|
|
1997
|
-
'settings.trashConfig.title': 'ゴミ箱設定',
|
|
1998
|
-
'settings.trashConfig.meta': 'ゴミ箱の有効/無効と自動クリーンアップ日数',
|
|
1999
|
-
'settings.deleteBehavior.title': 'セッション削除動作',
|
|
2000
|
-
'settings.deleteBehavior.meta': '「削除」を先にゴミ箱に入れるかどうかを決定',
|
|
2001
|
-
'settings.deleteBehavior.toggle': 'セッション削除時に先にゴミ箱に移動',
|
|
2002
|
-
'settings.deleteBehavior.hint': 'デフォルトで有効。オフにすると、セッション閲覧での削除は直接完全削除され、ゴミ箱に入りません。',
|
|
2003
|
-
|
|
2004
|
-
'settings.trash.title': 'ゴミ箱',
|
|
2005
|
-
'settings.trash.meta': '削除済みセッション(復元/完全削除可能)',
|
|
2006
|
-
'settings.trash.refresh': 'リストを更新',
|
|
2007
|
-
'settings.trash.refreshing': '更新中...',
|
|
2008
|
-
'settings.trash.clear': 'ゴミ箱を空にする',
|
|
2009
|
-
'settings.trash.clearing': 'クリア中...',
|
|
2010
|
-
'settings.trash.loading': 'ゴミ箱を読み込み中...',
|
|
2011
|
-
'settings.trash.empty': 'ゴミ箱は空です',
|
|
2012
|
-
'settings.trash.retry': 'ゴミ箱リストの読み込みに失敗しました。更新して再試行してください',
|
|
2013
|
-
'settings.trash.restore': '復元',
|
|
2014
|
-
'settings.trash.restoring': '復元中...',
|
|
2015
|
-
'settings.trash.purge': '完全に削除',
|
|
2016
|
-
'settings.trash.purging': '削除中...',
|
|
2017
|
-
'settings.trash.workspace': 'ワークスペース',
|
|
2018
|
-
'settings.trash.originalFile': '元ファイル',
|
|
2019
|
-
'settings.trash.loadMore': 'さらに読み込む(残り {count} 件)',
|
|
2020
|
-
'settings.trash.retention': '自動クリーンアップ',
|
|
2021
|
-
'settings.trash.retentionMeta': '保持日数を超えたゴミ箱レコードは自動的に削除されます',
|
|
2022
|
-
'settings.trash.retentionLabel': '保持日数',
|
|
2023
|
-
'settings.trash.retentionHint': '範囲 1-365 日、デフォルト 30 日。ゴミ箱読み込み時に期限切れレコードを自動クリーンアップします。',
|
|
2024
|
-
|
|
2025
|
-
'settings.templateConfirm.title': '設定テンプレートの二次確認',
|
|
2026
|
-
'settings.templateConfirm.meta': '誤書き込みリスクを低減',
|
|
2027
|
-
'settings.templateConfirm.toggle': 'テンプレート適用前に差分をプレビュー(2段階:確認 → 適用)',
|
|
2028
|
-
'settings.templateConfirm.hint': '有効時:先に差分プレビューを表示し、確認後に書き込みます。',
|
|
2029
|
-
|
|
2030
|
-
'settings.reset.title': '設定リセット',
|
|
2031
|
-
'settings.reset.meta': '注意して操作してください',
|
|
2032
|
-
'settings.reset.hint': '先に config.toml をバックアップし、デフォルト設定を書き込みます。',
|
|
2033
|
-
'settings.reset.button': '設定を再インストール',
|
|
2034
|
-
'settings.reset.loading': '再インストール中...',
|
|
2035
|
-
|
|
2036
|
-
// Market (Skills)
|
|
2037
|
-
'market.title': 'Skills 概要',
|
|
2038
|
-
'market.subtitle': 'ターゲットを切り替えてローカル Skills を表示。',
|
|
2039
|
-
'market.refresh': '概要を更新',
|
|
2040
|
-
'market.refreshing': '更新中...',
|
|
2041
|
-
'market.openManager': 'Skills 管理を開く',
|
|
2042
|
-
'market.target.aria': 'Skills インストールターゲットを選択',
|
|
2043
|
-
'market.summary.target': 'インストールターゲット',
|
|
2044
|
-
'market.summary.total': 'ローカル総数',
|
|
2045
|
-
'market.summary.configured': 'SKILL.md あり',
|
|
2046
|
-
'market.summary.missing': 'SKILL.md なし',
|
|
2047
|
-
'market.summary.importable': 'インポート可',
|
|
2048
|
-
'market.summary.importableDirect': '直接インポート可',
|
|
2049
|
-
'market.root.fallback': 'デフォルトディレクトリ',
|
|
2050
|
-
|
|
2051
|
-
'market.installed.title': 'インストール済 Skills',
|
|
2052
|
-
'market.installed.note': '上位 6 項目のみ表示。',
|
|
2053
|
-
'market.local.refresh': 'ローカルを更新',
|
|
2054
|
-
'market.local.refreshing': '更新中...',
|
|
2055
|
-
'market.local.loading': 'ローカル Skills 読み込み中...',
|
|
2056
|
-
'market.local.empty': '現在インストール済の skill はありません。',
|
|
2057
|
-
'market.pill.verified': '検証済',
|
|
2058
|
-
'market.pill.missingSkill': 'SKILL.md 要追加',
|
|
2059
|
-
|
|
2060
|
-
'market.import.title': 'インポート可能ソース',
|
|
2061
|
-
'market.import.note': 'スキャンして現在の {target} にインポートします。',
|
|
2062
|
-
'market.import.scan': 'ソースをスキャン',
|
|
2063
|
-
'market.import.scanning': 'スキャン中...',
|
|
2064
|
-
'market.import.loading': 'インポート可能 skill をスキャン中...',
|
|
2065
|
-
'market.import.empty': 'インポート可能な skill がスキャンされませんでした。',
|
|
2066
|
-
'market.pill.importableDirect': '直接インポート可',
|
|
2067
|
-
'market.pill.importMissing': 'SKILL.md なし',
|
|
2068
|
-
|
|
2069
|
-
'market.actions.title': '配布エントリ',
|
|
2070
|
-
'market.actions.note': '操作はすべて現在のインストールターゲットに適用されます。',
|
|
2071
|
-
'market.action.manage.title': 'ローカル Skills 管理',
|
|
2072
|
-
'market.action.manage.copy': '現在の {target} のインストール済 skills を管理',
|
|
2073
|
-
'market.action.crossImport.title': 'クロスアプリインポート',
|
|
2074
|
-
'market.action.crossImport.copy': '現在の {target} にインポート',
|
|
2075
|
-
'market.action.zipImport.title': 'ZIP インポート',
|
|
2076
|
-
'market.action.zipImport.copy': 'ZIP から現在のターゲットにインポート',
|
|
2077
|
-
|
|
2078
|
-
'market.help.title': '操作説明',
|
|
2079
|
-
'market.help.target.title': 'ターゲット切替',
|
|
2080
|
-
'market.help.target.copy': '現在の操作は {target} ディレクトリに書き込まれます。',
|
|
2081
|
-
'market.help.crossImport.title': 'クロスアプリインポート',
|
|
2082
|
-
'market.help.crossImport.copy': '他のホストから未管理の skill をインポートします。',
|
|
2083
|
-
'market.help.zipImport.title': 'ZIP インポート',
|
|
2084
|
-
'market.help.zipImport.copy': 'ZIP からローカル skill をインポートします。',
|
|
2085
|
-
|
|
2086
|
-
// Claude config panel
|
|
2087
|
-
'claude.addProvider': 'プロバイダー追加',
|
|
2088
|
-
'claude.applyDefault': 'デフォルトで ~/.claude/settings.json に適用されます。',
|
|
2089
|
-
'claude.presetProviders': 'プリセットプロバイダー',
|
|
2090
|
-
'claude.customConfig': 'カスタム設定',
|
|
2091
|
-
'claude.model': 'モデル',
|
|
2092
|
-
'claude.model.placeholder': '例: claude-3-7-sonnet',
|
|
2093
|
-
'claude.model.hint': 'モデル変更後は自動保存され、現在の設定に適用されます。',
|
|
2094
|
-
'claude.health.title': '設定ヘルスチェック',
|
|
2095
|
-
'claude.health.run': 'チェック実行',
|
|
2096
|
-
'claude.health.running': 'チェック中...',
|
|
2097
|
-
'claude.health.hint': 'すべての Claude 設定の可用性を一括プローブし、遅延表示を更新します。',
|
|
2098
|
-
'claude.health.progress': '完了 {done}/{total} · 失敗 {failed}',
|
|
2099
|
-
'claude.md.title': 'CLAUDE.md',
|
|
2100
|
-
'claude.md.open': 'CLAUDE.md を開く',
|
|
2101
|
-
'claude.md.hint': '~/.claude/CLAUDE.md の読み書き。',
|
|
2102
|
-
'claude.model.unset': 'モデル未設定',
|
|
2103
|
-
'claude.configured': '設定済み',
|
|
2104
|
-
'claude.notConfigured': '未設定',
|
|
2105
|
-
'claude.action.edit': '編集',
|
|
2106
|
-
'claude.action.delete': '削除',
|
|
2107
|
-
'claude.action.shareDisabled': 'インポートコマンド共有',
|
|
2108
|
-
'claude.action.editAria': 'Claude 設定を編集:{name}',
|
|
2109
|
-
'claude.action.deleteAria': 'Claude 設定を削除:{name}',
|
|
2110
|
-
'claude.action.clone': 'クローン',
|
|
2111
|
-
'claude.action.cloneAria': 'Claude 設定をクローン:{name}',
|
|
2112
|
-
'claude.localBridge.poolTitle': 'ラウンドロビンプール',
|
|
2113
|
-
'claude.localBridge.poolHint': '負荷分散に参加するプロバイダを選択',
|
|
2114
|
-
'claude.localBridge.noProviders': '利用可能なプロバイダがありません。まずプロバイダを追加してください。',
|
|
2115
|
-
'claude.localBridge.disabled': '無効',
|
|
2116
|
-
'claude.localBridge.enabled': '有効',
|
|
2117
|
-
|
|
2118
|
-
// OpenClaw config panel
|
|
2119
|
-
'openclaw.applyHint': '~/.openclaw/openclaw.json に書き込みます。JSON5 対応。',
|
|
2120
|
-
'openclaw.agents.hint': 'Workspace の AGENTS.md を読み書きします。デフォルトパス ~/.openclaw/workspace/AGENTS.md。',
|
|
2121
|
-
'openclaw.agents.open': 'AGENTS.md を開く',
|
|
2122
|
-
'openclaw.workspaceFile': 'ワークスペースファイル',
|
|
2123
|
-
'openclaw.workspace.placeholder': '例: SOUL.md',
|
|
2124
|
-
'openclaw.workspace.hint': 'Workspace 内の .md ファイルのみ。',
|
|
2125
|
-
'openclaw.workspace.open': 'ワークスペースファイルを開く',
|
|
2126
|
-
'openclaw.configured': '設定済み',
|
|
2127
|
-
'openclaw.notConfigured': '未設定',
|
|
2128
|
-
'openclaw.action.edit': '編集',
|
|
2129
|
-
'openclaw.action.delete': '削除',
|
|
2130
|
-
'modal.openclaw.quick.subtitle': '3ステップで完了:Provider とモデルを入力、エディタに書き込み、保存して適用。',
|
|
2131
|
-
'modal.openclaw.quick.step2': 'エディタに書き込みをクリック',
|
|
2132
|
-
'modal.openclaw.structured.writeHint': 'エディタに書き込むと JSON が再配置され、コメントが失われる可能性があります。',
|
|
2133
|
-
'openclaw.action.applyAria': 'OpenClaw 設定を適用:{name}',
|
|
2134
|
-
'openclaw.action.editAria': 'OpenClaw 設定を編集:{name}',
|
|
2135
|
-
'openclaw.action.deleteAria': 'OpenClaw 設定を削除:{name}',
|
|
2136
|
-
|
|
2137
|
-
},
|
|
2138
|
-
|
|
2139
|
-
en: {
|
|
2140
|
-
// Global
|
|
2141
|
-
'lang.zh': '中文',
|
|
2142
|
-
'lang.en': 'English',
|
|
2143
|
-
'lang.label': 'Language',
|
|
2144
|
-
'nav.topTabs.aria': 'Navigation',
|
|
2145
|
-
|
|
2146
|
-
// Common
|
|
2147
|
-
'common.all': 'All',
|
|
2148
|
-
'common.copy': 'Copy',
|
|
2149
|
-
'common.paste': 'Paste',
|
|
2150
|
-
'common.edit': 'Edit',
|
|
2151
|
-
'common.install': 'Install',
|
|
2152
|
-
'common.update': 'Update',
|
|
2153
|
-
'common.uninstall': 'Uninstall',
|
|
2154
|
-
'common.official': 'Official',
|
|
2155
|
-
'common.custom': 'Custom',
|
|
2156
|
-
'common.rules': 'Rules',
|
|
2157
|
-
'common.troubleshooting': 'Troubleshooting',
|
|
2158
|
-
'common.command': 'Command',
|
|
2159
|
-
'common.mirror': 'Registry',
|
|
2160
|
-
'common.packageManager': 'Package manager',
|
|
2161
|
-
'common.action': 'Action',
|
|
2162
|
-
'common.targets': 'Targets',
|
|
2163
|
-
'common.currentPm': 'Package manager',
|
|
2164
|
-
'common.currentAction': 'Action',
|
|
2165
|
-
'common.mirrorActive': 'Registry',
|
|
2166
|
-
'common.defaultOfficial': 'Default',
|
|
2167
|
-
'common.cancel': 'Cancel',
|
|
2168
|
-
'common.confirm': 'Confirm',
|
|
2169
|
-
'common.add': 'Add',
|
|
2170
|
-
'common.save': 'Save',
|
|
2171
|
-
'common.saveApply': 'Save & apply',
|
|
2172
|
-
'common.close': 'Close',
|
|
2173
|
-
'common.delete': 'Delete',
|
|
2174
|
-
'common.clear': 'Clear',
|
|
2175
|
-
'common.show': 'Show',
|
|
2176
|
-
'common.hide': 'Hide',
|
|
2177
|
-
'common.detail': 'Details',
|
|
2178
|
-
'common.refresh': 'Refresh',
|
|
2179
|
-
'common.refreshing': 'Refreshing...',
|
|
2180
|
-
'common.loading': 'Loading...',
|
|
2181
|
-
'common.saving': 'Saving...',
|
|
2182
|
-
'common.sending': 'Sending...',
|
|
2183
|
-
'common.scanning': 'Scanning...',
|
|
2184
|
-
'common.export': 'Export',
|
|
2185
|
-
'common.import': 'Import',
|
|
2186
|
-
'common.apply': 'Apply',
|
|
2187
|
-
'common.applying': 'Applying...',
|
|
2188
|
-
'common.confirming': 'Confirming...',
|
|
2189
|
-
'common.writeToEditor': 'Write to editor',
|
|
2190
|
-
'common.refreshFromText': 'Refresh from text',
|
|
2191
|
-
'common.backToEdit': 'Back to edit',
|
|
2192
|
-
'common.selectAll': 'Select all',
|
|
2193
|
-
'common.unselectAll': 'Unselect all',
|
|
2194
|
-
'common.resetFilters': 'Reset filters',
|
|
2195
|
-
'common.notEditable': 'Not editable',
|
|
2196
|
-
'common.notDeletable': 'Not deletable',
|
|
2197
|
-
'common.notLoaded': 'Not loaded',
|
|
2198
|
-
'common.exists': 'Exists',
|
|
2199
|
-
'common.notExistsWillCreateOnApply': 'Not found. Will be created on apply.',
|
|
2200
|
-
'common.notExistsWillCreateOnSave': 'Not found. Will be created on save.',
|
|
2201
|
-
'common.none': 'None',
|
|
2202
|
-
'cli.missing.title': '{name} CLI not installed',
|
|
2203
|
-
'cli.missing.subtitle': 'Install {name} CLI before using this page.',
|
|
2204
|
-
'cli.missing.openDocs': 'Open install guide',
|
|
2205
|
-
'cli.missing.commandAria': '{name} CLI install command',
|
|
2206
|
-
|
|
2207
|
-
// Brand
|
|
2208
|
-
'brand.kicker.workspace': 'Workspace',
|
|
2209
|
-
'brand.subtitle.localConfigSessionsWorkspace': 'Local config & sessions workspace',
|
|
2210
|
-
|
|
2211
|
-
// Confirm dialog
|
|
2212
|
-
'confirm.aria': 'Confirm action',
|
|
2213
|
-
'confirm.title.default': 'Please confirm',
|
|
2214
|
-
'confirm.ok': 'Confirm',
|
|
2215
|
-
'confirm.cancel': 'Cancel',
|
|
2216
|
-
|
|
2217
|
-
// Shared fields
|
|
2218
|
-
'field.name': 'Name',
|
|
2219
|
-
'field.configName': 'Config name',
|
|
2220
|
-
'field.apiEndpoint': 'API endpoint',
|
|
2221
|
-
'field.apiKey': 'API key',
|
|
2222
|
-
'field.baseUrl': 'Base URL',
|
|
2223
|
-
'field.provider': 'Provider',
|
|
2224
|
-
'field.providerName': 'Provider name',
|
|
2225
|
-
'field.modelName': 'Model name',
|
|
2226
|
-
'field.model': 'Model',
|
|
2227
|
-
'field.message': 'Message',
|
|
2228
|
-
'field.varName': 'Variable name',
|
|
2229
|
-
'field.targetFile': 'Target file',
|
|
2230
|
-
'field.modelId': 'Model ID',
|
|
2231
|
-
'field.displayName': 'Display name',
|
|
2232
|
-
'field.contextAndMaxOutput': 'Context and max output',
|
|
2233
|
-
'field.apiType': 'API type',
|
|
2234
|
-
'field.env': 'Environment variables',
|
|
2235
|
-
'field.allow': 'Allow',
|
|
2236
|
-
'field.deny': 'Deny',
|
|
2237
|
-
|
|
2238
|
-
// Shared placeholders/hints
|
|
2239
|
-
'placeholder.providerNameExample': 'e.g. myapi',
|
|
2240
|
-
'placeholder.apiEndpointExample': 'https://api.example.com/v1',
|
|
2241
|
-
'placeholder.providerName': 'Provider name',
|
|
2242
|
-
'placeholder.keepUnchanged': 'Leave blank to keep unchanged',
|
|
2243
|
-
'hint.keepKeyUnchanged': 'Leave blank to keep current key',
|
|
2244
|
-
'placeholder.modelExample': 'e.g. gpt-5',
|
|
2245
|
-
'placeholder.configNameExample': 'e.g. My Claude Setup',
|
|
2246
|
-
'placeholder.apiKeyExampleClaude': 'sk-ant-...',
|
|
2247
|
-
'placeholder.baseUrlExampleClaude': 'https://open.bigmodel.cn/api/anthropic',
|
|
2248
|
-
'placeholder.selectProvider': 'Select a provider',
|
|
2249
|
-
|
|
2250
|
-
// Roles / labels
|
|
2251
|
-
'role.you': 'You',
|
|
2252
|
-
'role.provider': 'Provider',
|
|
2253
|
-
'label.model': 'Model:',
|
|
2254
|
-
|
|
2255
|
-
// Top tabs
|
|
2256
|
-
'tab.dashboard': 'Dashboard',
|
|
2257
|
-
'tab.docs': 'Docs',
|
|
2258
|
-
'tab.config': 'Config',
|
|
2259
|
-
'tab.config.codex': 'Codex',
|
|
2260
|
-
'tab.config.claude': 'Claude',
|
|
2261
|
-
'tab.config.openclaw': 'OpenClaw',
|
|
2262
|
-
'tab.sessions': 'Sessions',
|
|
2263
|
-
'tab.usage': 'Usage',
|
|
2264
|
-
'tab.orchestration': 'Tasks',
|
|
2265
|
-
'tab.market': 'Skills',
|
|
2266
|
-
'tab.plugins': 'Plugins',
|
|
2267
|
-
'tab.settings': 'Settings',
|
|
2268
|
-
|
|
2269
|
-
// Side rail section titles
|
|
2270
|
-
'side.overview': 'Overview',
|
|
2271
|
-
'side.docs': 'Docs',
|
|
2272
|
-
'side.config': 'Config',
|
|
2273
|
-
'side.sessions': 'Sessions',
|
|
2274
|
-
'side.plugins': 'Plugins',
|
|
2275
|
-
'side.system': 'System',
|
|
2276
|
-
'side.orchestration': 'Tasks',
|
|
2277
|
-
'side.skills': 'Skills',
|
|
2278
|
-
|
|
2279
|
-
// Side rail items
|
|
2280
|
-
'side.overview.doctor': 'Doctor',
|
|
2281
|
-
'side.overview.doctor.meta': 'Overview / Diagnostics',
|
|
2282
|
-
'side.docs.cliInstall': 'CLI Install',
|
|
2283
|
-
'side.docs.cliInstall.meta': 'Install / Update / Uninstall',
|
|
2284
|
-
'side.config.codex': 'Codex',
|
|
2285
|
-
'side.config.codex.meta': 'Provider / Model',
|
|
2286
|
-
'side.config.claude': 'Claude Code',
|
|
2287
|
-
'side.config.claude.meta': 'Claude Settings',
|
|
2288
|
-
'side.config.openclaw': 'OpenClaw',
|
|
2289
|
-
'side.config.openclaw.meta': 'JSON5 / AGENTS',
|
|
2290
|
-
'side.sessions.browser': 'Session Browser',
|
|
2291
|
-
'side.sessions.browser.meta': 'Browse / Export / Cleanup',
|
|
2292
|
-
'side.plugins.tools': 'Prompt Tools',
|
|
2293
|
-
'side.plugins.tools.meta': 'Templates / Variables',
|
|
2294
|
-
'side.plugins.templatesCount': '{count} templates',
|
|
2295
|
-
'side.system.settings': 'Runtime Settings',
|
|
2296
|
-
'side.system.settings.meta': 'Data / Backup',
|
|
2297
|
-
|
|
2298
|
-
// Header titles
|
|
2299
|
-
'kicker.dashboard': 'Doctor',
|
|
2300
|
-
'kicker.config': 'Configuration',
|
|
2301
|
-
'kicker.sessions': 'Sessions',
|
|
2302
|
-
'kicker.usage': 'Usage',
|
|
2303
|
-
'kicker.orchestration': 'Tasks',
|
|
2304
|
-
'kicker.market': 'Skills',
|
|
2305
|
-
'kicker.plugins': 'Plugins',
|
|
2306
|
-
'kicker.docs': 'Docs',
|
|
2307
|
-
'kicker.settings': 'Settings',
|
|
2308
|
-
|
|
2309
|
-
'title.dashboard': 'Dashboard / Doctor',
|
|
2310
|
-
'title.config': 'Local Configuration Console',
|
|
2311
|
-
'title.sessions': 'Sessions & Export',
|
|
2312
|
-
'title.usage': 'Local Usage & Trends',
|
|
2313
|
-
'title.orchestration': 'Task Orchestration',
|
|
2314
|
-
'title.market': 'Skills Install & Sync',
|
|
2315
|
-
'title.plugins': 'Plugins & Templates',
|
|
2316
|
-
'title.docs': 'CLI Install & Docs',
|
|
2317
|
-
'title.settings': 'System & Data Settings',
|
|
2318
|
-
|
|
2319
|
-
'subtitle.dashboard': 'Aggregate status and diagnostics.',
|
|
2320
|
-
'subtitle.config': 'Manage local configs and models.',
|
|
2321
|
-
'subtitle.sessions': 'Browse and export sessions.',
|
|
2322
|
-
'subtitle.usage': 'View usage for the last 7/30 days.',
|
|
2323
|
-
'subtitle.orchestration': 'Plan, queue, run, and review local tasks.',
|
|
2324
|
-
'subtitle.market': 'Manage local skills.',
|
|
2325
|
-
'subtitle.plugins': 'Manage reusable prompt templates and plugins.',
|
|
2326
|
-
'subtitle.docs': 'CLI install commands and troubleshooting.',
|
|
2327
|
-
'subtitle.settings': 'Manage downloads, directories, and trash.',
|
|
2328
|
-
'dashboard.doctor.title': 'Doctor',
|
|
2329
|
-
'dashboard.doctor.runChecks': 'Run checks',
|
|
2330
|
-
'dashboard.doctor.checking': 'Checking...',
|
|
2331
|
-
'dashboard.doctor.export': 'Export report',
|
|
2332
|
-
'dashboard.doctor.export.json': 'Export JSON',
|
|
2333
|
-
'dashboard.doctor.export.md': 'Export Markdown',
|
|
2334
|
-
'dashboard.doctor.open': 'Open',
|
|
2335
|
-
'doctor.action.openConfig': 'Open Config',
|
|
2336
|
-
'doctor.action.checkProvider': 'Check provider config',
|
|
2337
|
-
'doctor.action.openUsage': 'Open Usage',
|
|
2338
|
-
'doctor.action.openSessions': 'Open Sessions',
|
|
2339
|
-
'doctor.action.openTasks': 'Open Tasks',
|
|
2340
|
-
'doctor.action.viewTaskLogs': 'View Tasks / Logs',
|
|
2341
|
-
'doctor.action.openSkills': 'Open Skills',
|
|
2342
|
-
'doctor.issue.configNotReady.problem': 'Config is not ready',
|
|
2343
|
-
'doctor.issue.configNotReady.impact': 'Provider/model cannot be read; model listing and requests may fail.',
|
|
2344
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-unreachable': 'Provider unreachable',
|
|
2345
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-auth-failed': 'Provider auth failed',
|
|
2346
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-not-found': 'Provider endpoint returned 404',
|
|
2347
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-http-error': 'Provider returned HTTP error',
|
|
2348
|
-
'doctor.issue.providerUnreachable.problem.remote-model-probe-error': 'Provider probe failed',
|
|
2349
|
-
'doctor.issue.providerUnreachable.problem.unknown': 'Provider unreachable',
|
|
2350
|
-
'doctor.issue.providerUnreachable.impactAuth': 'Auth failure will cause model listing and chat requests to return 401/403.',
|
|
2351
|
-
'doctor.issue.providerUnreachable.impactNetwork': 'Unreachable provider will cause model listing and chat requests to fail or timeout.',
|
|
2352
|
-
'doctor.issue.configHealthFailed.problem': 'Config health check failed',
|
|
2353
|
-
'doctor.issue.configHealthFailed.impact': 'Some features may be unavailable or behave unexpectedly.',
|
|
2354
|
-
'doctor.issue.usageError.problem': 'Usage aggregation failed',
|
|
2355
|
-
'doctor.issue.usageError.impact': 'Usage charts and summaries may be unavailable; Doctor usage diagnostics will be incomplete.',
|
|
2356
|
-
'doctor.issue.usageMissingModel.problem': 'Some sessions miss model metadata',
|
|
2357
|
-
'doctor.issue.usageMissingModel.impact': 'Usage attribution and cost estimates may be inaccurate.',
|
|
2358
|
-
'doctor.issue.tasksError.problem': 'Task overview failed',
|
|
2359
|
-
'doctor.issue.tasksError.impact': 'Task queue and run history may be unavailable.',
|
|
2360
|
-
'doctor.issue.tasksFailed.problem': 'Failed task runs detected',
|
|
2361
|
-
'doctor.issue.tasksFailed.impact': 'Automation pipelines may be blocked; inspect logs and retry after fixing inputs.',
|
|
2362
|
-
'doctor.issue.skillsError.problem': 'Skills listing failed',
|
|
2363
|
-
'doctor.issue.skillsError.impact': 'Skills marketplace may be unavailable.',
|
|
2364
|
-
'doctor.issue.skillsRootMissing.problem': 'Skills directory is missing',
|
|
2365
|
-
'doctor.issue.skillsRootMissing.impact': 'Skills install/scan will be empty; create the directory via Settings/Docs.',
|
|
2366
|
-
'doctor.issue.skillsMissingFiles.problem': 'Some skills are missing skill.json',
|
|
2367
|
-
'doctor.issue.skillsMissingFiles.impact': 'Those skills may not run or sync properly.',
|
|
2368
|
-
'dashboard.card.config': 'Config',
|
|
2369
|
-
'dashboard.card.sessions': 'Sessions',
|
|
2370
|
-
'dashboard.card.usage': 'Usage',
|
|
2371
|
-
'dashboard.card.tasks': 'Tasks',
|
|
2372
|
-
'dashboard.card.skills': 'Skills',
|
|
2373
|
-
'dashboard.kv.model': 'Model',
|
|
2374
|
-
'dashboard.kv.issue': 'Issue',
|
|
2375
|
-
'dashboard.kv.active': 'Active',
|
|
2376
|
-
'dashboard.kv.sessions': 'Sessions',
|
|
2377
|
-
'dashboard.kv.missingModel': 'Missing model',
|
|
2378
|
-
'dashboard.kv.blockers': 'Blockers',
|
|
2379
|
-
'dashboard.kv.runs': 'Runs',
|
|
2380
|
-
'dashboard.kv.target': 'Target',
|
|
2381
|
-
'dashboard.kv.root': 'Root',
|
|
2382
|
-
'dashboard.status.health': 'Health',
|
|
2383
|
-
'dashboard.status.busy': 'Busy',
|
|
2384
|
-
'dashboard.status.models': 'Models',
|
|
2385
|
-
'dashboard.busy.init': 'Init',
|
|
2386
|
-
'dashboard.busy.sessions': 'Sessions',
|
|
2387
|
-
'dashboard.busy.models': 'Models',
|
|
2388
|
-
'dashboard.busy.configApply': 'Apply config',
|
|
2389
|
-
'dashboard.busy.agents': 'Saving agents',
|
|
2390
|
-
'dashboard.busy.skills': 'Skills',
|
|
2391
|
-
'dashboard.busy.tasks': 'Tasks',
|
|
2392
|
-
'dashboard.busy.idle': 'Idle',
|
|
2393
|
-
'dashboard.message.none': 'No messages',
|
|
2394
|
-
'dashboard.sessionSource.codex': 'Codex',
|
|
2395
|
-
'dashboard.sessionSource.claude': 'Claude Code',
|
|
2396
|
-
'dashboard.sessionSource.gemini': 'Gemini CLI',
|
|
2397
|
-
'dashboard.sessionSource.codebuddy': 'CodeBuddy Code',
|
|
2398
|
-
'dashboard.sessionSource.all': 'All',
|
|
2399
|
-
'dashboard.sessionPath.all': 'All paths',
|
|
2400
|
-
'dashboard.sessionQuery.unsupported': 'Unsupported source',
|
|
2401
|
-
'dashboard.sessionQuery.unset': 'Not set',
|
|
2402
|
-
'dashboard.healthStatus.failRead': 'Failed',
|
|
2403
|
-
'dashboard.healthStatus.initializing': 'Initializing',
|
|
2404
|
-
'dashboard.healthStatus.ok': 'OK',
|
|
2405
|
-
'dashboard.modelStatus.loading': 'Loading',
|
|
2406
|
-
'dashboard.modelStatus.error': 'Error',
|
|
2407
|
-
'dashboard.modelStatus.ok': 'OK',
|
|
2408
|
-
'dashboard.health.ok': 'Checks passed',
|
|
2409
|
-
'dashboard.health.fail': 'Checks failed',
|
|
2410
|
-
'dashboard.health.issues': '{count} issues',
|
|
2411
|
-
'dashboard.issues.title': '{count} actionable issues',
|
|
2412
|
-
'dashboard.state.loading': 'Loading',
|
|
2413
|
-
'dashboard.state.ready': 'Ready',
|
|
2414
|
-
'dashboard.state.idle': 'Idle',
|
|
2415
|
-
'dashboard.none': 'None',
|
|
2416
|
-
'dashboard.sessions.count': '{count} sessions',
|
|
2417
|
-
'dashboard.usage.range': 'Range {value}',
|
|
2418
|
-
'dashboard.tasks.queue': 'run {running} / queue {queued}',
|
|
2419
|
-
'dashboard.skills.count': 'installed {installed} / import {importable}',
|
|
2420
|
-
'dashboard.providersHealth.title': 'Provider Health',
|
|
2421
|
-
'dashboard.providersHealth.current': '(current)',
|
|
2422
|
-
'dashboard.providersHealth.checking': 'Checking...',
|
|
2423
|
-
'dashboard.providersHealth.allOk': 'All providers OK',
|
|
2424
|
-
'dashboard.providersHealth.hasIssues': '{count} provider(s) have issues',
|
|
2425
|
-
|
|
2426
|
-
// Plugins panel
|
|
2427
|
-
'plugins.sidebar.title': 'Plugins',
|
|
2428
|
-
'plugins.sidebar.note': 'Reusable, standardized utilities. Future custom plugins should follow the same structure.',
|
|
2429
|
-
'plugins.sidebar.ariaList': 'Plugin list',
|
|
2430
|
-
'plugins.main.ariaWorkspace': 'Plugin workspace',
|
|
2431
|
-
'plugins.refresh': 'Refresh',
|
|
2432
|
-
'plugins.refreshing': 'Refreshing...',
|
|
2433
|
-
'plugins.promptTemplates.title': 'Prompt templates',
|
|
2434
|
-
'plugins.promptTemplates.subtitle': 'Built-in: comment polish ({{code}}). Copy and paste into Codex/Claude.',
|
|
2435
|
-
'plugins.promptTemplates.mode.aria': 'Prompt templates mode',
|
|
2436
|
-
'plugins.promptTemplates.mode.compose': 'Compose',
|
|
2437
|
-
'plugins.promptTemplates.mode.manage': 'Manage',
|
|
2438
|
-
'plugins.promptTemplates.compose.selectTemplate': 'Select template',
|
|
2439
|
-
'plugins.promptTemplates.compose.chooseTemplate': 'Choose a template',
|
|
2440
|
-
'plugins.promptTemplates.compose.chooseTemplateHint': 'Select a template to start composing.',
|
|
2441
|
-
'plugins.promptTemplates.compose.builtinSuffix': ' (built-in)',
|
|
2442
|
-
'plugins.promptTemplates.compose.empty': 'No templates available.',
|
|
2443
|
-
'plugins.promptTemplates.compose.varsHint': 'Fill and add variables in “Manage”.',
|
|
2444
|
-
'plugins.promptTemplates.compose.missingCount': '{count} missing',
|
|
2445
|
-
'plugins.promptTemplates.compose.jumpToMissing': 'Jump to missing',
|
|
2446
|
-
'plugins.promptTemplates.compose.goManage': 'Manage variables',
|
|
2447
|
-
'plugins.promptTemplates.compose.outputTitle': 'Output',
|
|
2448
|
-
'plugins.promptTemplates.compose.outputHint': 'Click “Copy” and paste into Codex/Claude.',
|
|
2449
|
-
'plugins.promptTemplates.compose.outputAria': 'Rendered prompt',
|
|
2450
|
-
'plugins.promptTemplates.compose.copy': 'Copy',
|
|
2451
|
-
'plugins.promptTemplates.manage.searchAria': 'Search templates',
|
|
2452
|
-
'plugins.promptTemplates.manage.searchPlaceholder': 'Search templates',
|
|
2453
|
-
'plugins.promptTemplates.manage.create': 'New',
|
|
2454
|
-
'plugins.promptTemplates.manage.export': 'Export',
|
|
2455
|
-
'plugins.promptTemplates.manage.import': 'Import',
|
|
2456
|
-
'plugins.promptTemplates.manage.loading': 'Loading templates...',
|
|
2457
|
-
'plugins.promptTemplates.manage.empty': 'No templates.',
|
|
2458
|
-
'plugins.promptTemplates.manage.vars': '{count} vars',
|
|
2459
|
-
'plugins.promptTemplates.manage.builtin': 'built-in',
|
|
2460
|
-
'plugins.promptTemplates.manage.custom': 'custom',
|
|
2461
|
-
'plugins.promptTemplates.manage.newTemplateName': 'New template',
|
|
2462
|
-
'plugins.promptTemplates.editor.selectHint': 'Select a template to edit.',
|
|
2463
|
-
'plugins.promptTemplates.editor.namePlaceholder': 'Template name',
|
|
2464
|
-
'plugins.promptTemplates.editor.nameAria': 'Template name',
|
|
2465
|
-
'plugins.promptTemplates.editor.duplicate': 'Duplicate',
|
|
2466
|
-
'plugins.promptTemplates.editor.delete': 'Delete',
|
|
2467
|
-
'plugins.promptTemplates.editor.save': 'Save',
|
|
2468
|
-
'plugins.promptTemplates.editor.builtinReadOnly': 'Built-in templates are read-only (no edit/save/delete/duplicate).',
|
|
2469
|
-
'plugins.promptTemplates.editor.descPlaceholder': 'Description (optional)',
|
|
2470
|
-
'plugins.promptTemplates.editor.descAria': 'Template description',
|
|
2471
|
-
'plugins.promptTemplates.editor.templateLabel': 'Template',
|
|
2472
|
-
'plugins.promptTemplates.editor.templateAria': 'Template body',
|
|
2473
|
-
'plugins.promptTemplates.editor.templatePlaceholder': 'Write your template here. Use {{var}} placeholders.',
|
|
2474
|
-
'plugins.promptTemplates.vars.title': 'Variables',
|
|
2475
|
-
'plugins.promptTemplates.vars.hint': 'Detected from the template. Fill them to render the final prompt.',
|
|
2476
|
-
'plugins.promptTemplates.vars.reset': 'Reset',
|
|
2477
|
-
'plugins.promptTemplates.vars.empty': 'No variables detected.',
|
|
2478
|
-
'plugins.promptTemplates.vars.valuePlaceholder': 'Value for {name}',
|
|
2479
|
-
'plugins.promptTemplates.preview.title': 'Preview',
|
|
2480
|
-
'plugins.promptTemplates.preview.hint': 'Rendered output (missing vars become empty).',
|
|
2481
|
-
'plugins.promptTemplates.preview.copy': 'Copy',
|
|
2482
|
-
'plugins.promptTemplates.preview.outputAria': 'Rendered prompt',
|
|
2483
|
-
'plugins.promptTemplates.noPluginSelected': 'Select a plugin from the left panel first.',
|
|
2484
|
-
|
|
2485
|
-
'plugins.meta.attribution': 'Created by {createdBy} · Maintained by {maintainers}',
|
|
2486
|
-
'plugins.meta.createdBy': 'Created by {createdBy}',
|
|
2487
|
-
'plugins.meta.maintainedBy': 'Maintained by {maintainers}',
|
|
2488
|
-
|
|
2489
|
-
// Built-in prompt templates
|
|
2490
|
-
'plugins.builtin.commentPolish.name': 'Comment polish',
|
|
2491
|
-
'plugins.builtin.commentPolish.desc': 'Polish the following code comments {{code}}',
|
|
2492
|
-
'plugins.builtin.commentPolish.line1': 'Polish the following code comments',
|
|
2493
|
-
'plugins.builtin.ruleAck.name': 'Rule acknowledgement',
|
|
2494
|
-
'plugins.builtin.ruleAck.desc': 'Please follow 【{{rule}}】, reply when received',
|
|
2495
|
-
'plugins.builtin.ruleAck.line1': 'Please follow 【{{rule}}】, reply when received',
|
|
2496
|
-
|
|
2497
|
-
// Toasts
|
|
2498
|
-
'toast.copy.empty': 'Nothing to copy',
|
|
2499
|
-
'toast.copy.ok': 'Copied',
|
|
2500
|
-
'toast.copy.fail': 'Copy failed',
|
|
2501
|
-
'toast.save.ok': 'Saved',
|
|
2502
|
-
'toast.save.fail': 'Save failed',
|
|
2503
|
-
'toast.delete.ok': 'Deleted',
|
|
2504
|
-
'toast.delete.fail': 'Delete failed',
|
|
2505
|
-
'toast.export.empty': 'Nothing to export',
|
|
2506
|
-
'toast.export.ok': 'Exported',
|
|
2507
|
-
'toast.export.fail': 'Export failed',
|
|
2508
|
-
'toast.import.ok': 'Imported',
|
|
2509
|
-
'toast.import.fail': 'Import failed',
|
|
2510
|
-
'toast.import.notAvailable': 'Import is not available',
|
|
2511
|
-
'toast.import.readFileFail': 'Failed to read file',
|
|
2512
|
-
'toast.import.invalidJson': 'Invalid JSON',
|
|
2513
|
-
'toast.import.expectedArray': 'Expected an array',
|
|
2514
|
-
'toast.export.notSupported': 'Export not supported',
|
|
2515
|
-
'toast.plugins.loadFail': 'Failed to load plugins',
|
|
2516
|
-
'toast.templates.builtinNotEditable': 'Built-in templates are not editable',
|
|
2517
|
-
'toast.templates.builtinNotModifiable': 'Built-in templates are read-only. Duplicate first.',
|
|
2518
|
-
'toast.templates.nameRequired': 'Template name is required',
|
|
2519
|
-
'toast.templates.builtinNotDuplicable': 'Built-in templates cannot be duplicated',
|
|
2520
|
-
'toast.templates.builtinNotDeletable': 'Built-in templates cannot be deleted',
|
|
2521
|
-
'toast.templates.deleteTitle': 'Delete template',
|
|
2522
|
-
'toast.templates.deleteMessage': 'Delete “{name}”? This action cannot be undone.',
|
|
2523
|
-
'toast.templates.deleteConfirm': 'Delete',
|
|
2524
|
-
'toast.templates.deleteCancel': 'Cancel',
|
|
2525
|
-
|
|
2526
|
-
// Basic modals
|
|
2527
|
-
'modal.providerAdd.title': 'Add provider',
|
|
2528
|
-
'modal.providerEdit.title': 'Edit provider',
|
|
2529
|
-
'modal.modelAdd.title': 'Add model',
|
|
2530
|
-
'modal.modelManage.title': 'Manage models',
|
|
2531
|
-
'modal.claudeConfigAdd.title': 'Add Claude Code config',
|
|
2532
|
-
'modal.claudeConfigEdit.title': 'Edit Claude Code config',
|
|
2533
|
-
'field.useBuiltinTransform': 'Use built-in transform (OpenAI compatible)',
|
|
2534
|
-
'hint.useBuiltinTransform': 'When enabled, base_url points to codexmate built-in transform service; Codex token is fixed to codexmate.',
|
|
2535
|
-
|
|
2536
|
-
// Config template / agents modals
|
|
2537
|
-
'modal.configTemplate.title': 'Config template editor (manual confirm)',
|
|
2538
|
-
'modal.configTemplate.label': 'config.toml template',
|
|
2539
|
-
'modal.configTemplate.placeholder': 'Edit config.toml template here',
|
|
2540
|
-
'modal.configTemplate.mode.twoStep': 'Two-step confirm: preview diff, then apply.',
|
|
2541
|
-
'modal.configTemplate.mode.oneStep': 'One-step apply: write immediately.',
|
|
2542
|
-
'diff.title.configTemplate': 'Diff preview (config.toml)',
|
|
2543
|
-
'diff.generating': 'Generating...',
|
|
2544
|
-
'diff.failed': 'Failed',
|
|
2545
|
-
'diff.noChanges': 'No changes detected',
|
|
2546
|
-
'diff.hint.busy': 'Generating diff or applying. Actions are temporarily disabled.',
|
|
2547
|
-
'diff.hint.failedBack': 'Diff preview failed. Go back to edit and retry.',
|
|
2548
|
-
'diff.hint.noChangesBack': 'No changes detected. Go back to edit or cancel.',
|
|
2549
|
-
'diff.hint.previewMode': 'Preview mode. Click “Apply” to write or “Back to edit” to continue.',
|
|
2550
|
-
|
|
2551
|
-
'modal.agents.export': 'Export',
|
|
2552
|
-
'modal.agents.copy': 'Copy',
|
|
2553
|
-
'modal.agents.title': 'AGENTS.md editor',
|
|
2554
|
-
'modal.agents.hint': 'Saved content will be written to the target AGENTS.md (next to config.toml).',
|
|
2555
|
-
'modal.agents.targetFile': 'Target file',
|
|
2556
|
-
'modal.agents.contentLabel': 'AGENTS.md content',
|
|
2557
|
-
'modal.agents.placeholder': 'Edit AGENTS.md here',
|
|
2558
|
-
'modal.agents.unsaved.previewModeHint': 'Preview mode: changes are not saved until you click “Apply”.',
|
|
2559
|
-
'modal.agents.unsaved.detectedHint': 'Unsaved changes detected: save before closing or applying.',
|
|
2560
|
-
'modal.agents.hint.shortcuts': 'Shortcut: Esc (back to edit in preview, close in edit).',
|
|
2561
|
-
'modal.agents.hint.twoStepSave': 'Two-step save: “Confirm” to preview diff, then “Apply” to save.',
|
|
2562
|
-
'diff.tooLargeSkip': 'Content too large. Line diff preview skipped.',
|
|
2563
|
-
'diff.viewHint.preview': 'Preview mode. Click “Apply” to save or “Back to edit” to continue.',
|
|
2564
|
-
'diff.viewHint.truncated': 'Preview skipped due to size. Click “Apply” to save or “Back to edit” to continue.',
|
|
2565
|
-
|
|
2566
|
-
// Skills modal
|
|
2567
|
-
'modal.skills.title': 'Skills manager',
|
|
2568
|
-
'modal.skills.subtitle': 'Manage local skills for the current host.',
|
|
2569
|
-
'modal.skills.target.aria': 'Select skills target',
|
|
2570
|
-
'modal.skills.rootDir': 'Skills directory ({label})',
|
|
2571
|
-
'modal.skills.summary.target': 'Target',
|
|
2572
|
-
'modal.skills.summary.total': 'Total',
|
|
2573
|
-
'modal.skills.summary.withSkill': 'With SKILL.md',
|
|
2574
|
-
'modal.skills.summary.missingSkill': 'Missing SKILL.md',
|
|
2575
|
-
'modal.skills.summary.importable': 'Importable',
|
|
2576
|
-
'modal.skills.panel.aria': 'Skills manager',
|
|
2577
|
-
'modal.skills.local.title': 'Local skills',
|
|
2578
|
-
'modal.skills.local.note': 'Search, filter, and bulk delete.',
|
|
2579
|
-
'modal.skills.filter.keywordAria': 'Filter by name or description',
|
|
2580
|
-
'modal.skills.filter.keywordPlaceholder': 'Search by dir name / display name / description',
|
|
2581
|
-
'modal.skills.filter.statusAria': 'Filter by SKILL.md status',
|
|
2582
|
-
'modal.skills.filter.status.all': 'All',
|
|
2583
|
-
'modal.skills.filter.status.withSkill': 'With SKILL.md',
|
|
2584
|
-
'modal.skills.filter.status.missingSkill': 'Missing SKILL.md',
|
|
2585
|
-
'modal.skills.selection.stats': '{selected} selected (filtered {filtered} / {total}, selected in filtered {visibleSelected})',
|
|
2586
|
-
'modal.skills.empty.local': 'No skills to manage.',
|
|
2587
|
-
'modal.skills.empty.filtered': 'No skills match the current filters.',
|
|
2588
|
-
'modal.skills.pill.hasSkillFile': 'Has SKILL.md',
|
|
2589
|
-
'modal.skills.pill.missingSkillFile': 'Missing SKILL.md',
|
|
2590
|
-
'modal.skills.pill.symlink': 'Symlink',
|
|
2591
|
-
'modal.skills.pill.dir': 'Directory',
|
|
2592
|
-
'modal.skills.import.title': 'Cross-app import',
|
|
2593
|
-
'modal.skills.import.note': 'Scan and import into {label}.',
|
|
2594
|
-
'modal.skills.import.scan': 'Scan importable',
|
|
2595
|
-
'modal.skills.import.stats': '{selected} selected / {total}. With SKILL.md {configured}, missing {missing}.',
|
|
2596
|
-
'modal.skills.import.emptyHint': 'No importable skills. Click “Scan importable”.',
|
|
2597
|
-
'modal.skills.bulk.title': 'Bulk actions',
|
|
2598
|
-
'modal.skills.bulk.note': 'Right side is import selection; left side is local selection.',
|
|
2599
|
-
'modal.skills.actions.zipImport': 'Import ZIP',
|
|
2600
|
-
'modal.skills.actions.zipImporting': 'Importing ZIP...',
|
|
2601
|
-
'modal.skills.actions.exportSelected': 'Export selected',
|
|
2602
|
-
'modal.skills.actions.exporting': 'Exporting...',
|
|
2603
|
-
'modal.skills.actions.importSelected': 'Import selected',
|
|
2604
|
-
'modal.skills.actions.importing': 'Importing...',
|
|
2605
|
-
'modal.skills.actions.deleteSelected': 'Delete selected',
|
|
2606
|
-
'modal.skills.actions.deleting': 'Deleting...',
|
|
2607
|
-
|
|
2608
|
-
// OpenClaw config modal (quick)
|
|
2609
|
-
'placeholder.openclawConfigNameExample': 'e.g. Default',
|
|
2610
|
-
'modal.openclaw.loadCurrent': 'Load current config',
|
|
2611
|
-
'modal.openclaw.quick.title': 'Quick setup',
|
|
2612
|
-
'modal.openclaw.quick.subtitle': '3 steps: fill provider/model, write to editor, save & apply.',
|
|
2613
|
-
'modal.openclaw.quick.readFromEditor': 'Read from editor',
|
|
2614
|
-
'modal.openclaw.quick.step1': 'Fill provider and model',
|
|
2615
|
-
'modal.openclaw.quick.step2': 'Write to editor',
|
|
2616
|
-
'modal.openclaw.quick.step3': 'Save & apply',
|
|
2617
|
-
'modal.openclaw.quick.providerHint': 'Will be combined as provider/model for the primary model identifier.',
|
|
2618
|
-
'modal.openclaw.quick.baseUrlHintDefault': 'Pre-filled from OpenClaw built-in provider defaults. You can edit it directly.',
|
|
2619
|
-
'modal.openclaw.quick.baseUrlHintReadonly': 'Detected an external reference. Read-only in quick form; edit in raw editor.',
|
|
2620
|
-
'modal.openclaw.quick.apiKeyHintFromAuth': 'Value comes from external auth profile; changes will be written back on save & apply.',
|
|
2621
|
-
'modal.openclaw.quick.apiKeyHintReadonly': 'Detected external auth/reference. Read-only in quick form; edit in raw editor or auth config.',
|
|
2622
|
-
'modal.openclaw.quick.apiKeyHintKeep': 'Leave blank to keep existing key.',
|
|
2623
|
-
'placeholder.apiTypeExample': 'e.g. openai-responses',
|
|
2624
|
-
'modal.openclaw.quick.modelTitle': 'Model',
|
|
2625
|
-
'placeholder.modelIdExample': 'e.g. gpt-4.1',
|
|
2626
|
-
'placeholder.modelNameOptional': 'Leave blank to use model ID',
|
|
2627
|
-
'field.contextWindow': 'Context window',
|
|
2628
|
-
'field.maxOutput': 'Max output',
|
|
2629
|
-
'hint.emptyNoChange': 'Leave blank to keep existing values.',
|
|
2630
|
-
'modal.openclaw.quick.optionsTitle': 'Options',
|
|
2631
|
-
'modal.openclaw.quick.setPrimary': 'Set as primary model',
|
|
2632
|
-
'modal.openclaw.quick.overrideProvider': 'Override provider base settings',
|
|
2633
|
-
'modal.openclaw.quick.overrideModels': 'Override model list',
|
|
2634
|
-
'modal.openclaw.quick.optionsHint': 'When override is off, only missing fields will be filled.',
|
|
2635
|
-
'modal.openclaw.quick.writeToEditor': 'Write to editor',
|
|
2636
|
-
|
|
2637
|
-
// Docs panel
|
|
2638
|
-
'docs.title': 'CLI Install',
|
|
2639
|
-
'docs.subtitle': 'Install commands for Claude Code / Gemini CLI / CodeBuddy Code / Codex CLI.',
|
|
2640
|
-
'docs.section.commands': 'Commands',
|
|
2641
|
-
'docs.section.commandsNote': 'Copy and run directly.',
|
|
2642
|
-
'docs.section.faq': 'FAQ',
|
|
2643
|
-
'docs.section.faqNote': 'Common issues and tips.',
|
|
2644
|
-
'docs.command.aria': '{name} command',
|
|
2645
|
-
'docs.registryHintPrefix': 'Command will append:',
|
|
2646
|
-
'docs.registryHintCustom': 'Enter a full URL (http/https) to append as registry.',
|
|
2647
|
-
'docs.registry.tencent': 'Tencent Cloud',
|
|
2648
|
-
'docs.meta.bin': 'bin: {bin}',
|
|
2649
|
-
'docs.termuxLabel': 'Termux',
|
|
2650
|
-
'docs.termuxAria': 'Termux Codex CLI command',
|
|
2651
|
-
'docs.rule.1': 'Commands depend on package manager, registry and action.',
|
|
2652
|
-
'docs.rule.2': 'Custom registry is used for install/update only.',
|
|
2653
|
-
'docs.tip.win.1': 'If PowerShell reports permission errors (EACCES/EPERM), run the install command as Administrator.',
|
|
2654
|
-
'docs.tip.win.2': 'If the command is still not found after install, reopen the terminal and run: where codex / where claude / where gemini / where codebuddy.',
|
|
2655
|
-
'docs.tip.win.3': 'If your network blocks npm, try switching registry presets (npmmirror / Tencent / Custom).',
|
|
2656
|
-
'docs.tip.unix.1': 'If you hit EACCES, fix your global Node directory permissions instead of using sudo npm.',
|
|
2657
|
-
'docs.tip.unix.2': 'If the command is not available after install, reopen the terminal and run: which codex / which claude / which gemini / which codebuddy.',
|
|
2658
|
-
'docs.tip.unix.3': 'If your network blocks npm, try switching registry presets (npmmirror / Tencent / Custom).',
|
|
2659
|
-
|
|
2660
|
-
// Sessions panel
|
|
2661
|
-
'sessions.loading': 'Loading...',
|
|
2662
|
-
'sessions.sourceTitle': 'Session Source',
|
|
2663
|
-
'sessions.refresh': 'Refresh',
|
|
2664
|
-
'sessions.refreshing': 'Refreshing...',
|
|
2665
|
-
'sessions.allPaths': 'All paths',
|
|
2666
|
-
'sessions.source.codex': 'Codex',
|
|
2667
|
-
'sessions.source.claudeCode': 'Claude Code',
|
|
2668
|
-
'sessions.source.gemini': 'Gemini CLI',
|
|
2669
|
-
'sessions.source.codebuddy': 'CodeBuddy Code',
|
|
2670
|
-
'sessions.loadingList': 'Loading sessions...',
|
|
2671
|
-
'sessions.empty': 'No sessions found',
|
|
2672
|
-
'sessions.unknownTime': 'unknown time',
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
'sessions.query.placeholder.enabled': 'Search keywords (Codex/Claude/Gemini/CodeBuddy, e.g. claude code)',
|
|
2676
|
-
'sessions.query.placeholder.disabled': 'Keyword search is not available for this source',
|
|
2677
|
-
'sessions.pin': 'Pin',
|
|
2678
|
-
'sessions.unpin': 'Unpin',
|
|
2679
|
-
'sessions.copyResume': 'Copy resume command',
|
|
2680
|
-
'sessions.preview.refresh': 'Refresh content',
|
|
2681
|
-
'sessions.preview.loading': 'Loading...',
|
|
2682
|
-
'sessions.preview.deleteHard': 'Delete permanently',
|
|
2683
|
-
'sessions.preview.moveToTrash': 'Move to trash',
|
|
2684
|
-
'sessions.preview.deleting': 'Deleting...',
|
|
2685
|
-
'sessions.preview.moving': 'Moving...',
|
|
2686
|
-
'sessions.preview.export': 'Export',
|
|
2687
|
-
'sessions.preview.exporting': 'Exporting...',
|
|
2688
|
-
'sessions.preview.convert': 'Create derived',
|
|
2689
|
-
'sessions.preview.converting': 'Creating...',
|
|
2690
|
-
'sessions.preview.convert.loadedOnly': 'Converted loaded messages only',
|
|
2691
|
-
'sessions.preview.importNative': 'Import to Native',
|
|
2692
|
-
'sessions.preview.importingNative': 'Importing...',
|
|
2693
|
-
'sessions.preview.importNative.unsupported': 'This operation is not supported',
|
|
2694
|
-
'sessions.preview.importNative.confirmTitle': 'Overwrite native session file?',
|
|
2695
|
-
'sessions.preview.importNative.confirmMessage': 'A native session file already exists. Overwriting will replace the matching session in the target tool native directory.',
|
|
2696
|
-
'sessions.preview.importNative.confirmText': 'Overwrite',
|
|
2697
|
-
'sessions.preview.importNative.cancelled': 'Import cancelled',
|
|
2698
|
-
'sessions.preview.importNative.conflict': 'Native session already exists',
|
|
2699
|
-
'sessions.preview.importNative.invalidSource': 'Invalid session source',
|
|
2700
|
-
'sessions.preview.importNative.fileNotFound': 'Session file not found',
|
|
2701
|
-
'sessions.preview.importNative.nativePathUnavailable': 'Native session path unavailable',
|
|
2702
|
-
'sessions.preview.importNative.success': 'Imported to native directory',
|
|
2703
|
-
'sessions.preview.importNative.failed': 'Import failed',
|
|
2704
|
-
'sessions.preview.importNative.failedWithReason': 'Import to native failed: {reason}',
|
|
2705
|
-
'sessions.preview.copyLink': 'Copy link',
|
|
2706
|
-
'sessions.preview.loadingBody': 'Loading session content...',
|
|
2707
|
-
'sessions.preview.emptyMsgs': 'No messages to display',
|
|
2708
|
-
'sessions.preview.rendering': 'Rendering session content...',
|
|
2709
|
-
'sessions.preview.rerender': 'Re-render',
|
|
2710
|
-
'sessions.preview.preparing': 'Preparing session content...',
|
|
2711
|
-
'sessions.preview.clipped': 'Showing the latest {count} messages only.',
|
|
2712
|
-
'sessions.preview.shownCount': 'Shown {shown} / {total}',
|
|
2713
|
-
'sessions.preview.loadMore': 'Load more (remaining {remain})',
|
|
2714
|
-
'sessions.preview.loadingMore': 'Loading older messages...',
|
|
2715
|
-
'sessions.timeline.aria': 'Session timeline',
|
|
2716
|
-
'sessions.selectHint': 'Select a session on the left first',
|
|
2717
|
-
'sessions.role.all': 'All roles',
|
|
2718
|
-
'sessions.role.user': 'User only',
|
|
2719
|
-
'sessions.role.assistant': 'Assistant only',
|
|
2720
|
-
'sessions.role.system': 'System only',
|
|
2721
|
-
'sessions.time.all': 'All time',
|
|
2722
|
-
'sessions.time.7d': 'Last 7 days',
|
|
2723
|
-
'sessions.time.30d': 'Last 30 days',
|
|
2724
|
-
'sessions.time.90d': 'Last 90 days',
|
|
2725
|
-
'sessions.sort.time': 'Sort: time',
|
|
2726
|
-
'sessions.sort.hot': 'Sort: hot',
|
|
2727
|
-
'sessions.sort.hotBadge': 'Hot',
|
|
2728
|
-
'sessions.filters.copyLink': 'Copy filter link',
|
|
2729
|
-
'sessions.filters.urlBuildFail': 'Failed to build link',
|
|
2730
|
-
'sessions.filters.source': 'Source',
|
|
2731
|
-
'sessions.filters.path': 'Path',
|
|
2732
|
-
'sessions.filters.keyword': 'Keyword',
|
|
2733
|
-
'sessions.filters.role': 'Role',
|
|
2734
|
-
'sessions.filters.time': 'Time',
|
|
2735
|
-
'sessions.roleLabel.user': 'User',
|
|
2736
|
-
'sessions.roleLabel.system': 'System',
|
|
2737
|
-
'sessions.roleLabel.assistant': 'Assistant',
|
|
2738
|
-
|
|
2739
|
-
// Usage panel
|
|
2740
|
-
'usage.overview': 'Usage Overview',
|
|
2741
|
-
'usage.range.aria': 'Usage time range',
|
|
2742
|
-
'usage.range.7d': 'Last 7 days',
|
|
2743
|
-
'usage.range.30d': 'Last 30 days',
|
|
2744
|
-
'usage.range.all': 'All',
|
|
2745
|
-
'usage.compare.toggle': 'Compare previous',
|
|
2746
|
-
'usage.compare.prev': 'Prev',
|
|
2747
|
-
'usage.compare.delta': 'Delta',
|
|
2748
|
-
'usage.refresh': 'Refresh stats',
|
|
2749
|
-
'usage.refreshing': 'Refreshing...',
|
|
2750
|
-
'usage.loading': 'Loading usage stats...',
|
|
2751
|
-
'usage.empty': 'No session data available for usage stats',
|
|
2752
|
-
'usage.refreshOverlay': 'Refreshing…',
|
|
2753
|
-
'usage.copyTitle': 'Click to copy: {value}',
|
|
2754
|
-
'usage.copySuccess': 'Copied: {label}',
|
|
2755
|
-
'usage.copyFail': 'Copy failed',
|
|
2756
|
-
'usage.copyNone': 'Nothing to copy',
|
|
2757
|
-
'usage.daily.title': 'Daily usage',
|
|
2758
|
-
'usage.daily.subtitle': 'Daily aggregated tokens and estimated cost (normalized by max values).',
|
|
2759
|
-
'usage.daily.note': 'Note: Estimated cost excludes Claude by default; only computed when model pricing and input/output tokens are available.',
|
|
2760
|
-
'usage.heatmap.title': 'Activity heatmap',
|
|
2761
|
-
'usage.heatmap.subtitle': 'Aggregated by sessions per day; hover to see details.',
|
|
2762
|
-
'usage.heatmap.legend.less': 'Less',
|
|
2763
|
-
'usage.heatmap.legend.more': 'More',
|
|
2764
|
-
'usage.heatmap.tooltip': '{date} · {sessions} sessions · {messages} messages · {tokens} tokens',
|
|
2765
|
-
'usage.heatmap.aria': '{date}, {sessions} sessions',
|
|
2766
|
-
'usage.hourlyHeatmap.title': '7×24 Activity Heatmap',
|
|
2767
|
-
'usage.hourlyHeatmap.subtitle': 'Session distribution by weekday × hour; darker = more active.',
|
|
2768
|
-
'usage.hourlyHeatmap.tooltip': '{weekday} {hour}:00 · {sessions} sessions · {messages} messages · {tokens} tokens',
|
|
2769
|
-
'usage.hourlyHeatmap.legend.less': 'Less',
|
|
2770
|
-
'usage.hourlyHeatmap.legend.more': 'More',
|
|
2771
|
-
'usage.legend.tokens': 'Tokens',
|
|
2772
|
-
'usage.legend.cost': 'Estimated cost',
|
|
2773
|
-
'usage.table.date': 'Date',
|
|
2774
|
-
'usage.table.sessions': 'Sessions',
|
|
2775
|
-
'usage.table.messages': 'Messages',
|
|
2776
|
-
'usage.table.tokens': 'Tokens',
|
|
2777
|
-
'usage.table.cost': 'Estimated cost',
|
|
2778
|
-
'usage.trend.sessions': 'Session trend',
|
|
2779
|
-
'usage.trend.messages': 'Message trend',
|
|
2780
|
-
'usage.trend.activeHours': 'Active hours',
|
|
2781
|
-
'usage.trend.sources': 'Source insights',
|
|
2782
|
-
'usage.legend.codex': 'Codex',
|
|
2783
|
-
'usage.legend.claude': 'Claude',
|
|
2784
|
-
'usage.trend.sessions.codexTitle': 'Codex {count}',
|
|
2785
|
-
'usage.trend.sessions.claudeTitle': 'Claude {count}',
|
|
2786
|
-
'usage.trend.messages.barTitle': '{count} messages',
|
|
2787
|
-
'usage.hour.title': '{hour}:00 · {count} sessions',
|
|
2788
|
-
'usage.source.row': '{sessions} sessions · {messages} messages · avg {avg}',
|
|
2789
|
-
'usage.summary.sessions': 'Total sessions',
|
|
2790
|
-
'usage.summary.messages': 'Total messages',
|
|
2791
|
-
'usage.summary.tokens': 'Total tokens',
|
|
2792
|
-
'usage.summary.contextWindow': 'Total context',
|
|
2793
|
-
'usage.summary.estimatedCost': 'Estimated cost · {range}',
|
|
2794
|
-
'usage.estimatedCost.note.excludesClaudePrefix': 'Excludes Claude. ',
|
|
2795
|
-
'usage.estimatedCost.method.configured': 'Estimated using configured pricing',
|
|
2796
|
-
'usage.estimatedCost.method.catalog': 'Estimated using public catalog pricing',
|
|
2797
|
-
'usage.estimatedCost.method.configuredAndCatalog': 'Estimated using configured + public catalog pricing',
|
|
2798
|
-
'usage.estimatedCost.detail.estimate': '{prefix}{method}. Estimate {estimate}. Coverage {covered}/{total} sessions (~{percent}% tokens).',
|
|
2799
|
-
'usage.estimatedCost.detail.missing': '{prefix}Missing matching model pricing or token breakdown. Add models.cost or ensure sessions record input/output tokens.',
|
|
2800
|
-
'usage.summary.activeDuration': 'Active duration',
|
|
2801
|
-
'usage.summary.activeDuration.title': 'Active span {value}',
|
|
2802
|
-
'usage.summary.totalDuration': 'Total duration',
|
|
2803
|
-
'usage.summary.totalDuration.title': 'Overall span {value}',
|
|
2804
|
-
'usage.summary.activeDays': 'Active days',
|
|
2805
|
-
'usage.summary.avgMessagesPerSession': 'Avg messages/session',
|
|
2806
|
-
'usage.summary.busiestDay': 'Busiest day',
|
|
2807
|
-
'usage.summary.busiestHour': 'Peak hour',
|
|
2808
|
-
'usage.currentSession.title': 'Current session',
|
|
2809
|
-
'usage.currentSession.apiDuration': 'API duration',
|
|
2810
|
-
'usage.currentSession.totalDuration': 'Total duration',
|
|
2811
|
-
'usage.currentSession.tokens': 'Tokens',
|
|
2812
|
-
'usage.range.kicker.all': 'All',
|
|
2813
|
-
'usage.range.kicker.30d': 'Last 30 days',
|
|
2814
|
-
'usage.range.kicker.7d': 'Last 7 days',
|
|
2815
|
-
'usage.copyTokenDay': 'Copied: Tokens ({day})',
|
|
2816
|
-
'usage.copyCostDay': 'Copied: Estimated cost ({day})',
|
|
2817
|
-
'usage.dayDetail.title': '{day} detail',
|
|
2818
|
-
'usage.dayDetail.subtitle': 'Pick a day to inspect its breakdown.',
|
|
2819
|
-
'usage.dayDetail.pick': 'Pick a day',
|
|
2820
|
-
'usage.dayDetail.empty': 'Pick a day to inspect its breakdown.',
|
|
2821
|
-
'usage.dayDetail.clear': 'Clear',
|
|
2822
|
-
'usage.dayDetail.topSessions': 'Top sessions',
|
|
2823
|
-
'usage.dayDetail.topModels': 'Top models',
|
|
2824
|
-
'usage.models.title': 'Models used',
|
|
2825
|
-
'usage.models.subtitle': 'Only includes model names present in saved records.',
|
|
2826
|
-
'usage.models.kicker': 'Identified {modeled}/{total}',
|
|
2827
|
-
'usage.models.count': 'Models',
|
|
2828
|
-
'usage.models.coverage': 'Coverage',
|
|
2829
|
-
'usage.models.missing': 'Missing model',
|
|
2830
|
-
'usage.models.noneTitle': 'No model names found in this range',
|
|
2831
|
-
'usage.models.noneBody': 'Scanned {total} sessions, but no recognizable model field was found in raw records.',
|
|
2832
|
-
'usage.models.providerOnly': '{count} older sessions only recorded provider.',
|
|
2833
|
-
'usage.models.missingNote.providerOnly': '{count} sessions did not record model names and are excluded.',
|
|
2834
|
-
'usage.models.missingNote': '{count} sessions are missing model and are excluded.',
|
|
2835
|
-
'usage.models.missingListTitle': 'Sessions still missing model',
|
|
2836
|
-
'usage.models.chipTitle': '{model} · {sessions} sessions · {messages} messages{tokens}',
|
|
2837
|
-
'usage.models.meta': '{sessions} sessions · {messages} messages{tokens}',
|
|
2838
|
-
'usage.weekday.title': 'Weekday distribution',
|
|
2839
|
-
'usage.paths.title': 'Top paths',
|
|
2840
|
-
'usage.paths.empty': 'No path data',
|
|
2841
|
-
'usage.paths.count': '{count} hits',
|
|
2842
|
-
'usage.paths.meta': '{messages} messages{recent}',
|
|
2843
|
-
'usage.paths.recent': ' · last {label}',
|
|
2844
|
-
'usage.recent.title': 'Recently active sessions',
|
|
2845
|
-
'usage.sessions.empty': 'No session data',
|
|
2846
|
-
'usage.sessions.messages': '{count} messages',
|
|
2847
|
-
'usage.sessions.topDensity': 'Most messages',
|
|
2848
|
-
|
|
2849
|
-
// Config panel (Codex)
|
|
2850
|
-
'config.addProvider': 'Add provider',
|
|
2851
|
-
'config.providerTemplate.title': 'Provider presets',
|
|
2852
|
-
'config.models': 'Model',
|
|
2853
|
-
'config.modelLoading': 'Loading...',
|
|
2854
|
-
'config.models.unlimited': 'No model list available. Enter manually.',
|
|
2855
|
-
'config.models.error': 'Failed to fetch model list. Enter manually.',
|
|
2856
|
-
'config.models.notInList.codex': 'Current model is not in the list. Enter manually or edit the template.',
|
|
2857
|
-
'config.models.notInList.other': 'Current model is not in the list. Enter manually.',
|
|
2858
|
-
'config.template.editFirst': 'Edit template first, then apply.',
|
|
2859
|
-
'config.template.bridgeCodexOnly': '{hint} template is editable in Codex mode only.',
|
|
2860
|
-
'config.template.openEditor': 'Open template editor',
|
|
2861
|
-
'modal.configTemplate.title': 'Config template editor (manual confirm)',
|
|
2862
|
-
'modal.configTemplate.placeholder': 'Edit config.toml template here',
|
|
2863
|
-
'config.serviceTier': 'Service tier',
|
|
2864
|
-
'config.serviceTier.fast': 'fast (default)',
|
|
2865
|
-
'config.serviceTier.standard': 'standard',
|
|
2866
|
-
'config.serviceTier.hint': 'Only fast writes {field}.',
|
|
2867
|
-
'config.reasoningEffort': 'Reasoning effort',
|
|
2868
|
-
'config.reasoningEffort.medium': 'medium (default)',
|
|
2869
|
-
'config.reasoningEffort.hint': 'Controls reasoning depth; high is deeper.',
|
|
2870
|
-
'config.contextBudget': 'Compaction thresholds',
|
|
2871
|
-
'config.reset': 'Reset',
|
|
2872
|
-
'config.example': 'e.g. {value}',
|
|
2873
|
-
'config.contextWindow.hint': 'Context window limit (default 190000).',
|
|
2874
|
-
'config.autoCompact.hint': 'Auto-compaction threshold (default 185000).',
|
|
2875
|
-
'config.agents.open': 'Open AGENTS.md',
|
|
2876
|
-
'modal.agents.title.default': 'AGENTS.md editor',
|
|
2877
|
-
'modal.agents.title.claudeMd': 'CLAUDE.md editor',
|
|
2878
|
-
'modal.agents.title.openclaw': 'OpenClaw AGENTS.md editor',
|
|
2879
|
-
'modal.agents.hint.default': 'Saved content will be written to AGENTS.md (next to config.toml).',
|
|
2880
|
-
'modal.agents.hint.claudeMd': 'Saved content will be written to ~/.claude/CLAUDE.md.',
|
|
2881
|
-
'modal.agents.contentLabel.claudeMd': 'CLAUDE.md content',
|
|
2882
|
-
'modal.agents.placeholder.claudeMd': 'Edit CLAUDE.md here',
|
|
2883
|
-
'modal.agents.hint.openclaw': 'Saved content will be written to OpenClaw workspace AGENTS.md.',
|
|
2884
|
-
'modal.agents.title.openclawWorkspaceFile': 'OpenClaw workspace file: {fileName}',
|
|
2885
|
-
'modal.agents.hint.openclawWorkspaceFile': 'Saved content will be written to OpenClaw workspace {fileName}.',
|
|
2886
|
-
'config.url.unset': 'URL not set',
|
|
2887
|
-
'config.model.unset': 'Model not set',
|
|
2888
|
-
'config.badge.system': 'System',
|
|
2889
|
-
'config.availabilityTest': 'Availability test',
|
|
2890
|
-
'config.availabilityTestAria': 'Test availability for {name}',
|
|
2891
|
-
'config.health.title': 'Config health check',
|
|
2892
|
-
'config.health.run': 'Run check',
|
|
2893
|
-
'config.health.running': 'Checking...',
|
|
2894
|
-
'config.health.hint': 'Runs availability probes across all providers and refreshes latency badges.',
|
|
2895
|
-
'config.health.progress': '{done}/{total} done · {failed} failed',
|
|
2896
|
-
'config.health.ok': 'Passed',
|
|
2897
|
-
'config.health.fail': 'Failed',
|
|
2898
|
-
'config.health.issues': '{count} issues',
|
|
2899
|
-
'config.shareCommand': 'Share command',
|
|
2900
|
-
'config.shareDisabled': 'Not shareable',
|
|
2901
|
-
'config.shareCommand.aria': 'Share import command',
|
|
2902
|
-
'config.provider.edit.aria': 'Edit provider: {name}',
|
|
2903
|
-
'config.provider.delete.aria': 'Delete provider: {name}',
|
|
2904
|
-
'config.provider.clone': 'Clone',
|
|
2905
|
-
'config.provider.clone.aria': 'Clone provider: {name}',
|
|
2906
|
-
'app.loadingConfig': 'Loading configuration...',
|
|
2907
|
-
'common.current': 'Current {value}',
|
|
2908
|
-
'common.notSelected': 'Not selected',
|
|
2909
|
-
'common.readFromEditor': 'Read from editor',
|
|
2910
|
-
'common.writeToEditor': 'Write to editor',
|
|
2911
|
-
'sessions.sourceLabel': 'Source: {value}',
|
|
2912
|
-
'usage.rangeLabel': 'Range: {value}',
|
|
2913
|
-
'sessions.source.all': 'All',
|
|
2914
|
-
'usage.range.all': 'All',
|
|
2915
|
-
'usage.range.7d.short': 'Last 7 days',
|
|
2916
|
-
'usage.range.30d.short': 'Last 30 days',
|
|
2917
|
-
'orchestration.queueStats': 'Queue: {running} running · {queued} queued',
|
|
2918
|
-
'orchestration.hero.kicker': 'Task orchestration',
|
|
2919
|
-
'orchestration.hero.title': 'Turn goals into executable steps',
|
|
2920
|
-
'orchestration.hero.subtitle': 'Write a target, preview a plan, then run.',
|
|
2921
|
-
'orchestration.draft.reset': 'Reset draft',
|
|
2922
|
-
'orchestration.summary.aria': 'Task orchestration summary',
|
|
2923
|
-
'orchestration.summary.running': 'Running',
|
|
2924
|
-
'orchestration.summary.queued': 'Queued',
|
|
2925
|
-
'orchestration.summary.runs': 'Runs',
|
|
2926
|
-
'orchestration.step1.title': 'Start with the outcome',
|
|
2927
|
-
'orchestration.step1.subtitle': 'Only include what affects execution.',
|
|
2928
|
-
'orchestration.templates.title': 'Quick examples',
|
|
2929
|
-
'orchestration.templates.reviewFix.label': 'Review fixes + regression',
|
|
2930
|
-
'orchestration.templates.reviewFix.target': 'Address current PR review comments and add regression tests',
|
|
2931
|
-
'orchestration.templates.reviewFix.notes': 'Avoid unrelated refactors; provide verification results',
|
|
2932
|
-
'orchestration.templates.reviewFix.followUps': 'Handle newly added review comments\nUpdate the PR summary',
|
|
2933
|
-
'orchestration.templates.planOnly.label': 'Plan only',
|
|
2934
|
-
'orchestration.templates.planOnly.target': 'Investigate root cause and propose an execution plan without changing code',
|
|
2935
|
-
'orchestration.templates.planOnly.notes': 'Focus on root cause, blast radius, and risk areas',
|
|
2936
|
-
'orchestration.templates.workflowBatch.label': 'Workflow batch',
|
|
2937
|
-
'orchestration.templates.workflowBatch.target': 'Run a fixed set of checks using workflows and summarize results',
|
|
2938
|
-
'orchestration.templates.workflowBatch.workflowIds': 'diagnose-config\nsafe-provider-switch',
|
|
2939
|
-
'orchestration.templates.workflowBatch.notes': 'Produce a unified conclusion; avoid repetitive narration',
|
|
2940
|
-
'orchestration.fields.target': 'Target',
|
|
2941
|
-
'orchestration.fields.target.placeholder': 'e.g. Address PR review comments and add regression tests; avoid unrelated modules',
|
|
2942
|
-
'orchestration.fields.target.hint': 'One sentence is enough: outcome, constraints, and acceptance criteria.',
|
|
2943
|
-
'orchestration.engine.codex': 'Codex',
|
|
2944
|
-
'orchestration.engine.workflow': 'Workflow',
|
|
2945
|
-
'orchestration.runMode.write': 'Write',
|
|
2946
|
-
'orchestration.runMode.readOnly': 'Read-only',
|
|
2947
|
-
'orchestration.runMode.dryRun': 'Dry run',
|
|
2948
|
-
'orchestration.pills.hasTitle': 'Title set',
|
|
2949
|
-
'orchestration.pills.workflowCount': 'Workflows {count}',
|
|
2950
|
-
'orchestration.pills.planNodes': 'Plan {count} nodes',
|
|
2951
|
-
'orchestration.step2.title': 'Choose how to run',
|
|
2952
|
-
'orchestration.step2.subtitle': 'Common options are visible; the rest lives under Advanced.',
|
|
2953
|
-
'orchestration.fields.engine': 'Engine',
|
|
2954
|
-
'orchestration.fields.runMode': 'Run mode',
|
|
2955
|
-
'orchestration.advanced.title': 'Advanced',
|
|
2956
|
-
'orchestration.fields.title': 'Title',
|
|
2957
|
-
'orchestration.fields.title.placeholder': 'Optional. Defaults to an inferred title from target.',
|
|
2958
|
-
'orchestration.fields.notes': 'Notes',
|
|
2959
|
-
'orchestration.fields.notes.placeholder': 'e.g. Do incremental changes only; do not rewrite architecture',
|
|
2960
|
-
'orchestration.fields.notes.hint': 'Add boundaries, constraints, style rules, or verification requirements.',
|
|
2961
|
-
'orchestration.fields.followUps': 'Follow-ups (one per line)',
|
|
2962
|
-
'orchestration.fields.followUps.placeholder': 'e.g.\nAddress new review comments\nAdd regression tests',
|
|
2963
|
-
'orchestration.fields.concurrency': 'Concurrency',
|
|
2964
|
-
'orchestration.fields.concurrency.hint': 'Start with 1–2 for complex tasks.',
|
|
2965
|
-
'orchestration.fields.autoFixRounds': 'Auto-fix',
|
|
2966
|
-
'orchestration.fields.autoFixRounds.hint': 'Retry a few rounds after failures.',
|
|
2967
|
-
'orchestration.fields.workflowIds': 'Workflow IDs (one per line)',
|
|
2968
|
-
'orchestration.fields.workflowIds.placeholder': 'e.g.\ndiagnose-config\nsafe-provider-switch',
|
|
2969
|
-
'orchestration.fields.workflowIds.hint': 'Required in Workflow mode. {count} available locally.',
|
|
2970
|
-
'orchestration.workflow.stepCount': '{count} steps',
|
|
2971
|
-
'orchestration.step3.title': 'Preview, then execute',
|
|
2972
|
-
'orchestration.step3.subtitle': 'Confirm the plan, then decide to run now or queue.',
|
|
2973
|
-
'orchestration.actions.planning': 'Planning...',
|
|
2974
|
-
'orchestration.actions.previewOnly': 'Preview only',
|
|
2975
|
-
'orchestration.actions.preparing': 'Preparing...',
|
|
2976
|
-
'orchestration.actions.generatePlan': 'Generate plan',
|
|
2977
|
-
'orchestration.actions.planAndRun': 'Plan & run',
|
|
2978
|
-
'orchestration.actions.processing': 'Working...',
|
|
2979
|
-
'orchestration.actions.queueAndStart': 'Queue & start',
|
|
2980
|
-
'orchestration.actions.caption': '“Plan & run” refreshes the plan when needed; use “Queue & start” for batch runs.',
|
|
2981
|
-
'orchestration.stage.title': 'Workspace opens when there is data',
|
|
2982
|
-
'orchestration.stage.subtitle': 'Write the target first, then preview the plan.',
|
|
2983
|
-
'orchestration.stage.pill.target': 'Write target',
|
|
2984
|
-
'orchestration.stage.pill.preview': 'Preview',
|
|
2985
|
-
'orchestration.stage.pill.run': 'Run or queue',
|
|
2986
|
-
'orchestration.plan.title': 'Plan preview',
|
|
2987
|
-
'orchestration.plan.subtitle': 'Confirm nodes, waves, and dependencies.',
|
|
2988
|
-
'orchestration.plan.summary.nodes': 'Nodes',
|
|
2989
|
-
'orchestration.plan.summary.waves': 'Waves',
|
|
2990
|
-
'orchestration.plan.summary.engine': 'Engine',
|
|
2991
|
-
'orchestration.plan.node.write': 'write',
|
|
2992
|
-
'orchestration.plan.node.readOnly': 'read-only',
|
|
2993
|
-
'orchestration.labels.dependencies': 'Dependencies: ',
|
|
2994
|
-
'orchestration.labels.error': 'Error: ',
|
|
2995
|
-
'orchestration.workbench.title': 'Workbench',
|
|
2996
|
-
'orchestration.workbench.subtitle': 'Only expands when there is data.',
|
|
2997
|
-
'orchestration.queue.start': 'Start queue',
|
|
2998
|
-
'orchestration.queue.starting': 'Starting...',
|
|
2999
|
-
'orchestration.workbench.tabs.aria': 'Workbench views',
|
|
3000
|
-
'orchestration.workbench.tabs.queue': 'Queue {count}',
|
|
3001
|
-
'orchestration.workbench.tabs.runs': 'Runs {count}',
|
|
3002
|
-
'orchestration.workbench.tabs.detail': 'Run detail',
|
|
3003
|
-
'orchestration.queue.empty.title': 'No queued tasks',
|
|
3004
|
-
'orchestration.queue.empty.subtitle': 'Queue batch tasks first, then start the runner.',
|
|
3005
|
-
'orchestration.runs.empty.title': 'No runs yet',
|
|
3006
|
-
'orchestration.runs.empty.subtitle': 'Recent runs will appear after execution.',
|
|
3007
|
-
'orchestration.detail.refresh': 'Refresh detail',
|
|
3008
|
-
'orchestration.detail.retry': 'Retry',
|
|
3009
|
-
'orchestration.detail.retrying': 'Retrying...',
|
|
3010
|
-
'orchestration.detail.empty.title': 'Select a run to view details',
|
|
3011
|
-
'orchestration.detail.empty.subtitle': 'This view shows node statuses, summaries, and logs.',
|
|
3012
|
-
'orchestration.detail.summary.status': 'Status',
|
|
3013
|
-
'orchestration.detail.summary.duration': 'Duration',
|
|
3014
|
-
'orchestration.detail.summary.nodes': 'Nodes',
|
|
3015
|
-
'orchestration.detail.summary.summary': 'Summary',
|
|
3016
|
-
'orchestration.detail.node.meta': '{id} · attempts {attempts} · auto-fix {autoFix}',
|
|
3017
|
-
'skills.localLabel': '{target} / Local skills',
|
|
3018
|
-
'skills.counts': '{installed} installed · {importable} importable',
|
|
3019
|
-
|
|
3020
|
-
// Sidebar status labels (compact)
|
|
3021
|
-
'status.currentSource': 'Current source',
|
|
3022
|
-
'status.sessionCount': 'Sessions',
|
|
3023
|
-
'status.range': 'Range',
|
|
3024
|
-
'status.totalSessions': 'Total sessions',
|
|
3025
|
-
'status.totalMessages': 'Total messages',
|
|
3026
|
-
'status.engine': 'Engine',
|
|
3027
|
-
'status.concurrency': 'Concurrency',
|
|
3028
|
-
'status.running': 'Running',
|
|
3029
|
-
'status.queued': 'Queued',
|
|
3030
|
-
'status.runs': 'Runs',
|
|
3031
|
-
'status.currentTarget': 'Current target',
|
|
3032
|
-
'status.localSkills': 'Local skills',
|
|
3033
|
-
'status.importable': 'Importable',
|
|
3034
|
-
'status.importableDirect': 'Direct importable',
|
|
3035
|
-
'status.pm': 'Package manager',
|
|
3036
|
-
'status.action': 'Action',
|
|
3037
|
-
'status.registry': 'Registry',
|
|
3038
|
-
'status.claudeConfig': 'Claude config',
|
|
3039
|
-
'status.claudeModel': 'Claude model',
|
|
3040
|
-
'status.openclawConfig': 'OpenClaw config',
|
|
3041
|
-
'status.workspaceFile': 'Workspace file',
|
|
3042
|
-
'status.configMode': 'Config mode',
|
|
3043
|
-
'status.currentProvider': 'Current provider',
|
|
3044
|
-
'status.currentModel': 'Current model',
|
|
3045
|
-
'status.quickSwitchProvider': 'Quick switch provider',
|
|
3046
|
-
'side.usage.meta': 'Local stats / Trends',
|
|
3047
|
-
'side.orchestration.meta': 'Plan / Queue / Runs',
|
|
3048
|
-
|
|
3049
|
-
// Settings panel
|
|
3050
|
-
'settings.tab.general': 'General',
|
|
3051
|
-
'settings.tab.data': 'Data',
|
|
3052
|
-
'settings.tabs.aria': 'Settings categories',
|
|
3053
|
-
'settings.quickSettings.title': 'Quick Settings',
|
|
3054
|
-
'settings.language.sideLabel': 'Language: {language}',
|
|
3055
|
-
'settings.sharePrefix.title': 'Share command prefix',
|
|
3056
|
-
'settings.sharePrefix.meta': 'Used as the prefix for “Copy share command” in the Web UI',
|
|
3057
|
-
'settings.sharePrefix.label': 'Prefix',
|
|
3058
|
-
'settings.sharePrefix.hint': 'Defaults to npm start (project-local). You can switch to global codexmate. This setting is stored in the browser.',
|
|
3059
|
-
'settings.claude.title': 'Claude config',
|
|
3060
|
-
'settings.claude.meta': 'Backup / import ~/.claude',
|
|
3061
|
-
'settings.codex.title': 'Codex config',
|
|
3062
|
-
'settings.codex.meta': 'Backup / import ~/.codex',
|
|
3063
|
-
'settings.backup.progress': 'Backing up {percent}%',
|
|
3064
|
-
'settings.backup.oneClickClaude': 'Backup ~/.claude',
|
|
3065
|
-
'settings.backup.importClaude': 'Import ~/.claude backup',
|
|
3066
|
-
'settings.backup.oneClickCodex': 'Backup ~/.codex',
|
|
3067
|
-
'settings.backup.importCodex': 'Import ~/.codex backup',
|
|
3068
|
-
'settings.importing': 'Importing...',
|
|
3069
|
-
|
|
3070
|
-
'settings.deleteBehavior.title': 'Session deletion behavior',
|
|
3071
|
-
'settings.deleteBehavior.meta': 'Whether “Delete” moves to trash first',
|
|
3072
|
-
'settings.deleteBehavior.toggle': 'Move deleted sessions to trash first',
|
|
3073
|
-
'settings.deleteBehavior.hint': 'Enabled by default. If disabled, deleting a session will permanently delete it.',
|
|
3074
|
-
|
|
3075
|
-
'settings.trash.title': 'Trash',
|
|
3076
|
-
'settings.trash.meta': 'Deleted sessions (restore / purge)',
|
|
3077
|
-
'settings.trash.refresh': 'Refresh',
|
|
3078
|
-
'settings.trash.refreshing': 'Refreshing...',
|
|
3079
|
-
'settings.trash.clear': 'Empty trash',
|
|
3080
|
-
'settings.trash.clearing': 'Clearing...',
|
|
3081
|
-
'settings.trash.loading': 'Loading trash...',
|
|
3082
|
-
'settings.trash.empty': 'Trash is empty',
|
|
3083
|
-
'settings.trash.retry': 'Failed to load trash. Refresh to retry.',
|
|
3084
|
-
'settings.trash.restore': 'Restore',
|
|
3085
|
-
'settings.trash.restoring': 'Restoring...',
|
|
3086
|
-
'settings.trash.purge': 'Purge',
|
|
3087
|
-
'settings.trash.purging': 'Deleting...',
|
|
3088
|
-
'settings.trash.workspace': 'Workspace',
|
|
3089
|
-
'settings.trash.originalFile': 'Original file',
|
|
3090
|
-
'settings.trash.loadMore': 'Load more (remaining {count})',
|
|
3091
|
-
'settings.trash.retention': 'Auto-purge',
|
|
3092
|
-
'settings.trash.retentionMeta': 'Trash entries older than retention days are auto-purged',
|
|
3093
|
-
'settings.trash.retentionLabel': 'Retention days',
|
|
3094
|
-
'settings.trash.retentionHint': 'Range 1-365 days, default 30. Expired entries are purged on each trash load.',
|
|
3095
|
-
|
|
3096
|
-
'settings.templateConfirm.title': 'Template apply confirmation',
|
|
3097
|
-
'settings.templateConfirm.meta': 'Reduce accidental writes',
|
|
3098
|
-
'settings.templateConfirm.toggle': 'Preview diffs before apply (Confirm → Apply)',
|
|
3099
|
-
'settings.templateConfirm.hint': 'When enabled: show a diff preview first, then confirm writing.',
|
|
3100
|
-
|
|
3101
|
-
'settings.reset.title': 'Config reset',
|
|
3102
|
-
'settings.reset.meta': 'Proceed with caution',
|
|
3103
|
-
'settings.reset.hint': 'Backs up config.toml, then writes default config.',
|
|
3104
|
-
'settings.reset.button': 'Reset config',
|
|
3105
|
-
'settings.reset.loading': 'Resetting...',
|
|
3106
|
-
|
|
3107
|
-
// Market (Skills)
|
|
3108
|
-
'market.title': 'Skills Overview',
|
|
3109
|
-
'market.subtitle': 'Switch target and inspect local skills.',
|
|
3110
|
-
'market.refresh': 'Refresh overview',
|
|
3111
|
-
'market.refreshing': 'Refreshing...',
|
|
3112
|
-
'market.openManager': 'Open Skills manager',
|
|
3113
|
-
'market.target.aria': 'Select skills target',
|
|
3114
|
-
'market.summary.target': 'Target',
|
|
3115
|
-
'market.summary.total': 'Local total',
|
|
3116
|
-
'market.summary.configured': 'With SKILL.md',
|
|
3117
|
-
'market.summary.missing': 'Missing SKILL.md',
|
|
3118
|
-
'market.summary.importable': 'Importable',
|
|
3119
|
-
'market.summary.importableDirect': 'Direct importable',
|
|
3120
|
-
'market.root.fallback': 'Default path',
|
|
3121
|
-
|
|
3122
|
-
'market.installed.title': 'Installed skills',
|
|
3123
|
-
'market.installed.note': 'Showing top 6 only.',
|
|
3124
|
-
'market.local.refresh': 'Refresh local',
|
|
3125
|
-
'market.local.refreshing': 'Refreshing...',
|
|
3126
|
-
'market.local.loading': 'Loading local skills...',
|
|
3127
|
-
'market.local.empty': 'No installed skills found.',
|
|
3128
|
-
'market.pill.verified': 'Verified',
|
|
3129
|
-
'market.pill.missingSkill': 'Missing SKILL.md',
|
|
3130
|
-
|
|
3131
|
-
'market.import.title': 'Import sources',
|
|
3132
|
-
'market.import.note': 'Scan and import into {target}.',
|
|
3133
|
-
'market.import.scan': 'Scan sources',
|
|
3134
|
-
'market.import.scanning': 'Scanning...',
|
|
3135
|
-
'market.import.loading': 'Scanning importable skills...',
|
|
3136
|
-
'market.import.empty': 'No importable skills found yet.',
|
|
3137
|
-
'market.pill.importableDirect': 'Direct import',
|
|
3138
|
-
'market.pill.importMissing': 'Missing SKILL.md',
|
|
3139
|
-
|
|
3140
|
-
'market.actions.title': 'Distribution',
|
|
3141
|
-
'market.actions.note': 'Actions apply to the current target.',
|
|
3142
|
-
'market.action.manage.title': 'Manage local skills',
|
|
3143
|
-
'market.action.manage.copy': 'Manage installed skills for {target}',
|
|
3144
|
-
'market.action.crossImport.title': 'Cross-app import',
|
|
3145
|
-
'market.action.crossImport.copy': 'Import into {target}',
|
|
3146
|
-
'market.action.zipImport.title': 'ZIP import',
|
|
3147
|
-
'market.action.zipImport.copy': 'Import from ZIP into target',
|
|
3148
|
-
|
|
3149
|
-
'market.help.title': 'How it works',
|
|
3150
|
-
'market.help.target.title': 'Target switch',
|
|
3151
|
-
'market.help.target.copy': 'Actions write into the {target} directory.',
|
|
3152
|
-
'market.help.crossImport.title': 'Cross-app import',
|
|
3153
|
-
'market.help.crossImport.copy': 'Import unmanaged skills from other hosts.',
|
|
3154
|
-
'market.help.zipImport.title': 'ZIP import',
|
|
3155
|
-
'market.help.zipImport.copy': 'Import local skills from a ZIP file.',
|
|
3156
|
-
|
|
3157
|
-
// Claude config panel
|
|
3158
|
-
'claude.addProvider': 'Add provider',
|
|
3159
|
-
'claude.applyDefault': 'Applies to ~/.claude/settings.json by default.',
|
|
3160
|
-
'claude.presetProviders': 'Provider presets',
|
|
3161
|
-
'claude.customConfig': 'Custom config',
|
|
3162
|
-
'claude.model': 'Model',
|
|
3163
|
-
'claude.model.placeholder': 'e.g. claude-3-7-sonnet',
|
|
3164
|
-
'claude.model.hint': 'Model changes are saved and applied to the current config automatically.',
|
|
3165
|
-
'claude.health.title': 'Config health check',
|
|
3166
|
-
'claude.health.run': 'Run check',
|
|
3167
|
-
'claude.health.running': 'Checking...',
|
|
3168
|
-
'claude.health.hint': 'Runs availability probes for all Claude configs and refreshes the latency badges.',
|
|
3169
|
-
'claude.health.progress': '{done}/{total} done · {failed} failed',
|
|
3170
|
-
'claude.md.title': 'CLAUDE.md',
|
|
3171
|
-
'claude.md.open': 'Open CLAUDE.md',
|
|
3172
|
-
'claude.md.hint': 'Read/write ~/.claude/CLAUDE.md.',
|
|
3173
|
-
'claude.model.unset': 'Model not set',
|
|
3174
|
-
'claude.configured': 'Configured',
|
|
3175
|
-
'claude.notConfigured': 'Not configured',
|
|
3176
|
-
'claude.action.edit': 'Edit',
|
|
3177
|
-
'claude.action.delete': 'Delete',
|
|
3178
|
-
'claude.action.shareDisabled': 'Share import command',
|
|
3179
|
-
'claude.action.editAria': 'Edit Claude config: {name}',
|
|
3180
|
-
'claude.action.deleteAria': 'Delete Claude config: {name}',
|
|
3181
|
-
'claude.action.clone': 'Clone',
|
|
3182
|
-
'claude.action.cloneAria': 'Clone Claude config: {name}',
|
|
3183
|
-
'claude.localBridge.poolTitle': 'Round-robin pool',
|
|
3184
|
-
'claude.localBridge.poolHint': 'Select providers for load balancing',
|
|
3185
|
-
'claude.localBridge.noProviders': 'No providers available. Add a provider first.',
|
|
3186
|
-
'claude.localBridge.disabled': 'Disabled',
|
|
3187
|
-
'claude.localBridge.enabled': 'Enabled',
|
|
3188
|
-
|
|
3189
|
-
// OpenClaw config panel
|
|
3190
|
-
'openclaw.applyHint': 'Writes to ~/.openclaw/openclaw.json (JSON5 supported).',
|
|
3191
|
-
'openclaw.workspace.title': 'OpenClaw workspace',
|
|
3192
|
-
'openclaw.configs.hint': 'Select a saved config, or open the editor to maintain full JSON5.',
|
|
3193
|
-
'openclaw.agents.hint': 'Read/write Workspace AGENTS.md. Default: ~/.openclaw/workspace/AGENTS.md.',
|
|
3194
|
-
'openclaw.agents.open': 'Open AGENTS.md',
|
|
3195
|
-
'openclaw.workspaceFile': 'Workspace file',
|
|
3196
|
-
'openclaw.workspace.placeholder': 'e.g. SOUL.md',
|
|
3197
|
-
'openclaw.workspace.hint': 'Only .md files inside the Workspace are supported.',
|
|
3198
|
-
'openclaw.workspace.open': 'Open workspace file',
|
|
3199
|
-
'openclaw.configured': 'Configured',
|
|
3200
|
-
'openclaw.notConfigured': 'Not configured',
|
|
3201
|
-
'openclaw.action.edit': 'Edit',
|
|
3202
|
-
'openclaw.action.delete': 'Delete',
|
|
3203
|
-
'modal.openclaw.quick.subtitle': '3 steps: fill provider/model, write to editor, save & apply.',
|
|
3204
|
-
'modal.openclaw.quick.step2': 'Write to editor',
|
|
3205
|
-
'modal.openclaw.structured.writeHint': 'Writing to editor may reformat JSON and drop comments.',
|
|
3206
|
-
'openclaw.action.applyAria': 'Apply OpenClaw config: {name}',
|
|
3207
|
-
'openclaw.action.editAria': 'Edit OpenClaw config: {name}',
|
|
3208
|
-
'openclaw.action.deleteAria': 'Delete OpenClaw config: {name}'
|
|
3209
|
-
}
|
|
3210
|
-
});
|
|
3211
|
-
|
|
3212
|
-
export { DICT };
|
|
3213
|
-
export default DICT;
|
|
1
|
+
import { zh } from './i18n/locales/zh.mjs';
|
|
2
|
+
import { en } from './i18n/locales/en.mjs';
|
|
3
|
+
import { ja } from './i18n/locales/ja.mjs';
|
|
4
|
+
import { vi } from './i18n/locales/vi.mjs';
|
|
5
|
+
|
|
6
|
+
const DICT = Object.freeze({
|
|
7
|
+
zh,
|
|
8
|
+
en,
|
|
9
|
+
ja,
|
|
10
|
+
vi
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
export { DICT };
|
|
14
|
+
export default DICT;
|