@clawpump/claw-agent 0.1.8 → 0.1.9
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/agent/.mailmap +4 -0
- package/agent/apps/desktop/README.md +3 -3
- package/agent/apps/desktop/assets/icon.icns +0 -0
- package/agent/apps/desktop/assets/icon.ico +0 -0
- package/agent/apps/desktop/assets/icon.png +0 -0
- package/agent/apps/desktop/electron/backend-ready.cjs +2 -2
- package/agent/apps/desktop/electron/dashboard-token.cjs +3 -3
- package/agent/apps/desktop/electron/hardening.cjs +1 -1
- package/agent/apps/desktop/electron/main.cjs +65 -65
- package/agent/apps/desktop/index.html +1 -1
- package/agent/apps/desktop/package.json +11 -11
- package/agent/apps/desktop/public/apple-touch-icon.png +0 -0
- package/agent/apps/desktop/public/claw-mark.png +0 -0
- package/agent/apps/desktop/scripts/set-exe-identity.cjs +2 -2
- package/agent/apps/desktop/src/app/chat/composer/controls.tsx +2 -0
- package/agent/apps/desktop/src/app/chat/composer/index.tsx +10 -0
- package/agent/apps/desktop/src/app/chat/composer/pod-credits.tsx +49 -0
- package/agent/apps/desktop/src/app/chat/index.tsx +1 -1
- package/agent/apps/desktop/src/app/chat/sidebar/index.tsx +4 -2
- package/agent/apps/desktop/src/app/desktop-controller.tsx +18 -0
- package/agent/apps/desktop/src/app/gateway/hooks/use-gateway-request.ts +1 -1
- package/agent/apps/desktop/src/app/messaging/index.tsx +5 -5
- package/agent/apps/desktop/src/app/routes.ts +9 -1
- package/agent/apps/desktop/src/app/session/hooks/use-message-stream.ts +3 -3
- package/agent/apps/desktop/src/app/settings/constants.ts +5 -5
- package/agent/apps/desktop/src/app/settings/model-settings.tsx +1 -1
- package/agent/apps/desktop/src/app/settings/providers-settings.tsx +46 -1
- package/agent/apps/desktop/src/app/settings/uninstall-section.tsx +5 -5
- package/agent/apps/desktop/src/app/types.ts +9 -1
- package/agent/apps/desktop/src/app/wallet/index.tsx +244 -0
- package/agent/apps/desktop/src/app/x402/index.tsx +162 -0
- package/agent/apps/desktop/src/components/assistant-ui/thread.tsx +1 -1
- package/agent/apps/desktop/src/components/brand-mark.tsx +2 -2
- package/agent/apps/desktop/src/components/chat/intro-copy.jsonl +6 -6
- package/agent/apps/desktop/src/components/chat/intro.tsx +4 -4
- package/agent/apps/desktop/src/components/model-picker.tsx +64 -4
- package/agent/apps/desktop/src/components/pod-setup-dialog.tsx +227 -0
- package/agent/apps/desktop/src/hermes.ts +109 -3
- package/agent/apps/desktop/src/i18n/en.ts +80 -78
- package/agent/apps/desktop/src/i18n/ja.ts +82 -82
- package/agent/apps/desktop/src/i18n/runtime.test.ts +2 -2
- package/agent/apps/desktop/src/i18n/zh-hant.ts +82 -82
- package/agent/apps/desktop/src/i18n/zh.ts +87 -87
- package/agent/apps/desktop/src/lib/desktop-fs.ts +1 -1
- package/agent/apps/desktop/src/lib/desktop-slash-commands.ts +4 -4
- package/agent/apps/desktop/src/store/composer.ts +7 -0
- package/agent/apps/desktop/src/store/onboarding.ts +5 -5
- package/agent/apps/desktop/src/themes/presets.ts +54 -54
- package/agent/cli.py +184 -10
- package/agent/hermes_cli/distribution.py +188 -8
- package/agent/hermes_cli/providers.py +29 -0
- package/agent/hermes_cli/web_server.py +180 -2
- package/agent/plugins/model-providers/usepod/__init__.py +7 -1
- package/agent/scripts/release.py +1 -0
- package/agent/web/src/components/ChatSidebar.tsx +5 -0
- package/agent/web/src/components/ModelPickerDialog.tsx +28 -1
- package/agent/web/src/components/PodCredits.tsx +57 -0
- package/agent/web/src/components/PodSetupDialog.tsx +240 -0
- package/agent/web/src/lib/api.ts +23 -0
- package/package.json +1 -1
|
@@ -43,25 +43,25 @@ export const zhHant = defineLocale({
|
|
|
43
43
|
},
|
|
44
44
|
|
|
45
45
|
boot: {
|
|
46
|
-
ready: '
|
|
46
|
+
ready: 'Claw Agent Desktop 已就緒',
|
|
47
47
|
desktopBootFailedWithMessage: message => `桌面啟動失敗:${message}`,
|
|
48
48
|
steps: {
|
|
49
49
|
connectingGateway: '正在連線桌面閘道',
|
|
50
|
-
loadingSettings: '正在載入
|
|
50
|
+
loadingSettings: '正在載入 Claw Agent 設定',
|
|
51
51
|
loadingSessions: '正在載入最近工作階段',
|
|
52
52
|
startingDesktopConnection: '正在啟動桌面連線',
|
|
53
|
-
startingHermesDesktop: '正在啟動
|
|
53
|
+
startingHermesDesktop: '正在啟動 Claw Agent Desktop…'
|
|
54
54
|
},
|
|
55
55
|
errors: {
|
|
56
|
-
backgroundExited: '
|
|
57
|
-
backgroundExitedDuringStartup: '
|
|
56
|
+
backgroundExited: 'Claw Agent 背景程序已結束。',
|
|
57
|
+
backgroundExitedDuringStartup: 'Claw Agent 背景程序在啟動期間結束。',
|
|
58
58
|
backendStopped: '後端已停止',
|
|
59
59
|
desktopBootFailed: '桌面啟動失敗',
|
|
60
60
|
gatewaySignInRequired: '需要閘道登入',
|
|
61
61
|
ipcBridgeUnavailable: '桌面 IPC 橋接器不可用。'
|
|
62
62
|
},
|
|
63
63
|
failure: {
|
|
64
|
-
title: '
|
|
64
|
+
title: 'Claw Agent 無法啟動',
|
|
65
65
|
description: '背景閘道未啟動。請嘗試下面的復原步驟。這裡的操作不會刪除您的聊天或設定。',
|
|
66
66
|
remoteTitle: '需要重新登入遠端閘道',
|
|
67
67
|
remoteDescription: '您的遠端閘道工作階段已過期。請重新登入以重新連線。這裡的操作不會刪除您的聊天或設定。',
|
|
@@ -95,15 +95,15 @@ export const zhHant = defineLocale({
|
|
|
95
95
|
copyDetail: '複製詳情',
|
|
96
96
|
copyDetailFailed: '無法複製通知詳情',
|
|
97
97
|
backendOutOfDateTitle: '後端版本過舊',
|
|
98
|
-
backendOutOfDateMessage: '您的
|
|
99
|
-
updateHermes: '更新
|
|
98
|
+
backendOutOfDateMessage: '您的 Claw Agent 後端早於目前的桌面版本,可能無法正常運作。請更新以保持一致。',
|
|
99
|
+
updateHermes: '更新 Claw Agent',
|
|
100
100
|
updateReadyTitle: '有可用更新',
|
|
101
101
|
updateReadyMessage: count => `有 ${count} 項新變更可用。`,
|
|
102
102
|
seeWhatsNew: '查看新增內容',
|
|
103
103
|
errors: {
|
|
104
104
|
elevenLabsNeedsKey: 'ElevenLabs STT 需要 ELEVENLABS_API_KEY。',
|
|
105
105
|
elevenLabsRejectedKey: 'ElevenLabs 拒絕了該 API 金鑰 (401)。',
|
|
106
|
-
methodNotAllowed: '桌面後端拒絕了該請求 (405 Method Not Allowed)。請嘗試重新啟動
|
|
106
|
+
methodNotAllowed: '桌面後端拒絕了該請求 (405 Method Not Allowed)。請嘗試重新啟動 Claw Agent Desktop。',
|
|
107
107
|
microphonePermission: '麥克風權限已被拒絕。',
|
|
108
108
|
openaiRejectedApiKey: 'OpenAI 拒絕了該 API 金鑰。',
|
|
109
109
|
openaiRejectedApiKeyWithStatus: status => `OpenAI 拒絕了該 API 金鑰 (${status} invalid_api_key)。`,
|
|
@@ -133,8 +133,8 @@ export const zhHant = defineLocale({
|
|
|
133
133
|
approveAction: '核准',
|
|
134
134
|
rejectAction: '拒絕',
|
|
135
135
|
inputTitle: '需要輸入',
|
|
136
|
-
inputBody: '
|
|
137
|
-
turnDoneTitle: '
|
|
136
|
+
inputBody: 'Claw Agent 正在等待你的回應。',
|
|
137
|
+
turnDoneTitle: 'Claw Agent 已完成',
|
|
138
138
|
turnDoneBody: '回覆已就緒。',
|
|
139
139
|
turnErrorTitle: '本輪失敗',
|
|
140
140
|
backgroundDoneTitle: '背景工作已完成',
|
|
@@ -171,7 +171,7 @@ export const zhHant = defineLocale({
|
|
|
171
171
|
exportConfig: '匯出設定',
|
|
172
172
|
importConfig: '匯入設定',
|
|
173
173
|
resetToDefaults: '恢復預設值',
|
|
174
|
-
resetConfirm: '要將所有設定恢復為
|
|
174
|
+
resetConfirm: '要將所有設定恢復為 Claw Agent 預設值嗎?',
|
|
175
175
|
exportFailed: '匯出失敗',
|
|
176
176
|
resetFailed: '重設失敗',
|
|
177
177
|
nav: {
|
|
@@ -192,7 +192,7 @@ export const zhHant = defineLocale({
|
|
|
192
192
|
intro: '原生桌面通知,與應用程式內提示不同。設定會依裝置保存,每台電腦各自獨立。',
|
|
193
193
|
enableAll: '啟用通知',
|
|
194
194
|
enableAllDesc: '總開關。關閉後會靜音下方所有通知。',
|
|
195
|
-
focusedHint: '完成提醒僅在
|
|
195
|
+
focusedHint: '完成提醒僅在 Claw Agent 位於背景時觸發。',
|
|
196
196
|
kinds: {
|
|
197
197
|
approval: {
|
|
198
198
|
label: '需要核准',
|
|
@@ -200,11 +200,11 @@ export const zhHant = defineLocale({
|
|
|
200
200
|
},
|
|
201
201
|
input: {
|
|
202
202
|
label: '需要輸入',
|
|
203
|
-
description: '
|
|
203
|
+
description: 'Claw Agent 提出了問題,或需要密碼或密鑰。'
|
|
204
204
|
},
|
|
205
205
|
turnDone: {
|
|
206
206
|
label: '回覆就緒',
|
|
207
|
-
description: '
|
|
207
|
+
description: 'Claw Agent 在背景時完成了一輪對話。'
|
|
208
208
|
},
|
|
209
209
|
turnError: {
|
|
210
210
|
label: '本輪失敗',
|
|
@@ -216,7 +216,7 @@ export const zhHant = defineLocale({
|
|
|
216
216
|
}
|
|
217
217
|
},
|
|
218
218
|
test: '傳送測試通知',
|
|
219
|
-
testTitle: '
|
|
219
|
+
testTitle: 'Claw Agent',
|
|
220
220
|
testBody: '通知運作正常。',
|
|
221
221
|
testSent: '測試已傳送。若沒有出現,請檢查系統通知權限與專注模式/勿擾模式。',
|
|
222
222
|
testUnsupported: '此系統不支援原生通知。',
|
|
@@ -235,7 +235,7 @@ export const zhHant = defineLocale({
|
|
|
235
235
|
advanced: '進階'
|
|
236
236
|
},
|
|
237
237
|
searchPlaceholder: {
|
|
238
|
-
about: '關於
|
|
238
|
+
about: '關於 Claw Agent Desktop',
|
|
239
239
|
config: '搜尋設定…',
|
|
240
240
|
gateway: '閘道連線…',
|
|
241
241
|
keys: '搜尋 API 金鑰…',
|
|
@@ -251,7 +251,7 @@ export const zhHant = defineLocale({
|
|
|
251
251
|
title: '外觀',
|
|
252
252
|
intro: '這些是僅限桌面端的顯示偏好。模式控制亮度;主題控制強調色與聊天介面樣式。',
|
|
253
253
|
colorMode: '色彩模式',
|
|
254
|
-
colorModeDesc: '選擇固定模式,或讓
|
|
254
|
+
colorModeDesc: '選擇固定模式,或讓 Claw Agent 跟隨系統設定。',
|
|
255
255
|
toolViewTitle: '工具呼叫顯示',
|
|
256
256
|
toolViewDesc: '產品模式會隱藏原始工具 payload;技術模式會顯示完整輸入/輸出。',
|
|
257
257
|
translucencyTitle: '視窗透明',
|
|
@@ -433,10 +433,10 @@ export const zhHant = defineLocale({
|
|
|
433
433
|
personality: '新工作階段的預設助手風格。',
|
|
434
434
|
showReasoning: '後端提供推理內容時顯示該區塊。'
|
|
435
435
|
},
|
|
436
|
-
timezone: '
|
|
436
|
+
timezone: 'Claw Agent 需要本機時間上下文時使用。留空則使用系統時區。',
|
|
437
437
|
agent: {
|
|
438
438
|
imageInputMode: '控制圖片附件如何傳送給模型。',
|
|
439
|
-
maxTurns: '
|
|
439
|
+
maxTurns: 'Claw Agent 停止一次執行前的工具呼叫輪次上限。'
|
|
440
440
|
},
|
|
441
441
|
terminal: {
|
|
442
442
|
cwd: '工具與終端機操作的預設專案資料夾。',
|
|
@@ -446,9 +446,9 @@ export const zhHant = defineLocale({
|
|
|
446
446
|
codeExecution: {
|
|
447
447
|
mode: '程式碼執行被限制在目前專案中的嚴格程度。'
|
|
448
448
|
},
|
|
449
|
-
fileReadMaxChars: '
|
|
449
|
+
fileReadMaxChars: 'Claw Agent 單次檔案讀取可讀取的最大字元數。',
|
|
450
450
|
approvals: {
|
|
451
|
-
mode: '
|
|
451
|
+
mode: 'Claw Agent 如何處理需要明確批准的指令。',
|
|
452
452
|
timeout: '批准提示逾時前等待的時間。'
|
|
453
453
|
},
|
|
454
454
|
security: {
|
|
@@ -478,11 +478,11 @@ export const zhHant = defineLocale({
|
|
|
478
478
|
},
|
|
479
479
|
updates: {
|
|
480
480
|
nonInteractiveLocalChanges:
|
|
481
|
-
'
|
|
481
|
+
'Claw Agent 從應用程式內更新自身時,保留本機原始碼變更(stash)或丟棄(discard)。終端機更新一律會詢問。'
|
|
482
482
|
}
|
|
483
483
|
}),
|
|
484
484
|
about: {
|
|
485
|
-
heading: '
|
|
485
|
+
heading: 'Claw Agent Desktop',
|
|
486
486
|
version: value => `版本 ${value}`,
|
|
487
487
|
versionUnavailable: '版本不可用',
|
|
488
488
|
updates: '更新',
|
|
@@ -499,7 +499,7 @@ export const zhHant = defineLocale({
|
|
|
499
499
|
lastChecked: age => `上次檢查:${age}`,
|
|
500
500
|
justNowSuffix: ' · 剛剛',
|
|
501
501
|
automaticUpdates: '自動更新',
|
|
502
|
-
automaticUpdatesDesc: '
|
|
502
|
+
automaticUpdatesDesc: 'Claw Agent 會在背景自動檢查更新,並在有可用更新時通知你。',
|
|
503
503
|
branchCommit: (branch, commit) => `分支 ${branch} · 提交 ${commit}`,
|
|
504
504
|
never: '從未',
|
|
505
505
|
justNow: '剛剛',
|
|
@@ -512,7 +512,7 @@ export const zhHant = defineLocale({
|
|
|
512
512
|
noneParen: '(無)',
|
|
513
513
|
notSet: '未設定',
|
|
514
514
|
commaSeparated: '逗號分隔的值',
|
|
515
|
-
loading: '正在載入
|
|
515
|
+
loading: '正在載入 Claw Agent 設定...',
|
|
516
516
|
emptyTitle: '無可設定項目',
|
|
517
517
|
emptyDesc: '此區段沒有可調整的設定。',
|
|
518
518
|
failedLoad: '設定載入失敗',
|
|
@@ -549,7 +549,7 @@ export const zhHant = defineLocale({
|
|
|
549
549
|
title: '閘道連線',
|
|
550
550
|
envOverride: '環境變數覆寫',
|
|
551
551
|
intro:
|
|
552
|
-
'
|
|
552
|
+
'Claw Agent Desktop 預設會啟動自己的本機閘道。如果您希望此應用程式控制另一台機器或可信代理後面已執行的 Claw Agent 後端,請使用遠端閘道。在下方按設定檔指定各自的遠端主機。',
|
|
553
553
|
appliesTo: '套用至',
|
|
554
554
|
allProfiles: '全部設定檔',
|
|
555
555
|
defaultConnection: '預設連線適用於所有沒有自訂覆寫的設定檔。',
|
|
@@ -557,10 +557,10 @@ export const zhHant = defineLocale({
|
|
|
557
557
|
envOverrideTitle: '環境變數正在控制此桌面工作階段。',
|
|
558
558
|
envOverrideDesc: '取消設定 HERMES_DESKTOP_REMOTE_URL 和 HERMES_DESKTOP_REMOTE_TOKEN 後才會使用下方儲存的設定。',
|
|
559
559
|
localTitle: '本機閘道',
|
|
560
|
-
localDesc: '在 localhost 啟動私有
|
|
560
|
+
localDesc: '在 localhost 啟動私有 Claw Agent 後端。這是預設方式,可離線使用。',
|
|
561
561
|
remoteTitle: '遠端閘道',
|
|
562
562
|
remoteDesc:
|
|
563
|
-
'將此桌面殼層連線至遠端
|
|
563
|
+
'將此桌面殼層連線至遠端 Claw Agent 後端。託管閘道使用 OAuth 或帳號密碼;自託管閘道也可使用工作階段 Token。',
|
|
564
564
|
remoteUrlTitle: '遠端 URL',
|
|
565
565
|
remoteUrlDesc: '遠端儀表板後端的基礎 URL。支援路徑前綴,例如 /hermes。',
|
|
566
566
|
probing: '正在檢查此閘道的驗證方式…',
|
|
@@ -593,9 +593,9 @@ export const zhHant = defineLocale({
|
|
|
593
593
|
enterUrlFirst: '請先輸入遠端 URL。',
|
|
594
594
|
restartingTitle: '閘道連線正在重新啟動',
|
|
595
595
|
savedTitle: '閘道設定已儲存',
|
|
596
|
-
restartingMessage: '
|
|
596
|
+
restartingMessage: 'Claw Agent Desktop 將使用已儲存的設定重新連線。',
|
|
597
597
|
savedMessage: '已儲存,下次重新啟動後生效。',
|
|
598
|
-
connectedTo: (baseUrl, version) => `已連線至 ${baseUrl}${version ? ` ·
|
|
598
|
+
connectedTo: (baseUrl, version) => `已連線至 ${baseUrl}${version ? ` · Claw Agent ${version}` : ''}`,
|
|
599
599
|
reachableTitle: '遠端閘道可連線',
|
|
600
600
|
signedOutTitle: '已登出',
|
|
601
601
|
signedOutMessage: '已清除遠端閘道工作階段。',
|
|
@@ -666,7 +666,7 @@ export const zhHant = defineLocale({
|
|
|
666
666
|
providers: {
|
|
667
667
|
connectAccount: '連結帳號',
|
|
668
668
|
haveApiKey: '改用 API 金鑰?',
|
|
669
|
-
intro: '使用訂閱登入,無需複製 API 金鑰。
|
|
669
|
+
intro: '使用訂閱登入,無需複製 API 金鑰。Claw Agent 會在應用程式中為您完成瀏覽器登入。',
|
|
670
670
|
connected: '已連線',
|
|
671
671
|
collapse: '收合',
|
|
672
672
|
connectAnother: '連結其他提供方',
|
|
@@ -833,7 +833,7 @@ export const zhHant = defineLocale({
|
|
|
833
833
|
},
|
|
834
834
|
nav: {
|
|
835
835
|
newChat: { title: '新工作階段', detail: '開始新的工作階段' },
|
|
836
|
-
settings: { title: '設定', detail: '設定
|
|
836
|
+
settings: { title: '設定', detail: '設定 Claw Agent 桌面端' },
|
|
837
837
|
skills: { title: '技能與工具', detail: '啟用技能、工具集和提供方' },
|
|
838
838
|
messaging: { title: '訊息平台', detail: '設定 Telegram、Slack、Discord 等' },
|
|
839
839
|
artifacts: { title: '成品', detail: '瀏覽產生的輸出' }
|
|
@@ -855,10 +855,10 @@ export const zhHant = defineLocale({
|
|
|
855
855
|
noSessions: '暫無工作階段。',
|
|
856
856
|
gatewayRunning: '訊息閘道執行中',
|
|
857
857
|
gatewayStopped: '訊息閘道已停止',
|
|
858
|
-
hermesActiveSessions: (version, count) => `
|
|
858
|
+
hermesActiveSessions: (version, count) => `Claw Agent ${version} · 活躍工作階段 ${count}`,
|
|
859
859
|
restartGateway: '重新啟動閘道',
|
|
860
860
|
gatewayRestartFailed: '閘道重新啟動失敗。',
|
|
861
|
-
updateHermes: '更新
|
|
861
|
+
updateHermes: '更新 Claw Agent',
|
|
862
862
|
actionRunning: '執行中',
|
|
863
863
|
actionDone: '完成',
|
|
864
864
|
actionFailed: '失敗',
|
|
@@ -1055,7 +1055,7 @@ export const zhHant = defineLocale({
|
|
|
1055
1055
|
deleteDescMid: ' 並移除其 ',
|
|
1056
1056
|
deleteDescSuffix: ' 目錄。此操作無法復原。',
|
|
1057
1057
|
deleting: '刪除中…',
|
|
1058
|
-
createDesc: '設定檔是獨立的
|
|
1058
|
+
createDesc: '設定檔是獨立的 Claw Agent 環境:各自擁有獨立的設定、技能和 SOUL.md。',
|
|
1059
1059
|
nameLabel: '名稱',
|
|
1060
1060
|
cloneFrom: '複製來源',
|
|
1061
1061
|
cloneFromNone: '無(空白)',
|
|
@@ -1141,7 +1141,7 @@ export const zhHant = defineLocale({
|
|
|
1141
1141
|
topOfHour: '每個整點',
|
|
1142
1142
|
everyHourAt: minute => `每小時的 :${minute}`,
|
|
1143
1143
|
newCron: '新排程工作',
|
|
1144
|
-
emptyDescNew: '按 cron 表達式排程一個提示詞。
|
|
1144
|
+
emptyDescNew: '按 cron 表達式排程一個提示詞。Claw Agent 會執行它,並將結果傳送至您選擇的目的地。',
|
|
1145
1145
|
emptyDescSearch: '請嘗試更廣泛的搜尋詞。',
|
|
1146
1146
|
emptyTitleNew: '暫無排程工作',
|
|
1147
1147
|
emptyTitleSearch: '無相符項目',
|
|
@@ -1287,12 +1287,12 @@ export const zhHant = defineLocale({
|
|
|
1287
1287
|
composer: {
|
|
1288
1288
|
message: '訊息',
|
|
1289
1289
|
wakingProfile: profile => `正在喚醒 ${profile}…`,
|
|
1290
|
-
placeholderStarting: '正在啟動
|
|
1291
|
-
placeholderReconnecting: '正在重新連線至
|
|
1290
|
+
placeholderStarting: '正在啟動 Claw Agent...',
|
|
1291
|
+
placeholderReconnecting: '正在重新連線至 Claw Agent…',
|
|
1292
1292
|
placeholderFollowUp: '傳送後續訊息',
|
|
1293
1293
|
newSessionPlaceholders: [
|
|
1294
1294
|
'我們要建立什麼?',
|
|
1295
|
-
'給
|
|
1295
|
+
'給 Claw Agent 一個任務',
|
|
1296
1296
|
'您在想什麼?',
|
|
1297
1297
|
'描述您需要什麼',
|
|
1298
1298
|
'我們該處理什麼?',
|
|
@@ -1352,7 +1352,7 @@ export const zhHant = defineLocale({
|
|
|
1352
1352
|
'composer.history': '循環彈出視窗 / 歷史記錄'
|
|
1353
1353
|
},
|
|
1354
1354
|
attachUrlTitle: '附加 URL',
|
|
1355
|
-
attachUrlDesc: '
|
|
1355
|
+
attachUrlDesc: 'Claw Agent 將擷取該頁面並作為此回合的脈絡。',
|
|
1356
1356
|
urlPlaceholder: 'https://example.com/post',
|
|
1357
1357
|
urlHintPre: '請輸入完整 URL,例如 ',
|
|
1358
1358
|
attach: '附加',
|
|
@@ -1430,7 +1430,7 @@ export const zhHant = defineLocale({
|
|
|
1430
1430
|
fetch: '下載中…',
|
|
1431
1431
|
pull: '快完成了…',
|
|
1432
1432
|
pydeps: '收尾中…',
|
|
1433
|
-
restart: '正在重新啟動
|
|
1433
|
+
restart: '正在重新啟動 Claw Agent…',
|
|
1434
1434
|
manual: '從終端機更新',
|
|
1435
1435
|
error: '更新已暫停'
|
|
1436
1436
|
},
|
|
@@ -1438,28 +1438,28 @@ export const zhHant = defineLocale({
|
|
|
1438
1438
|
checkFailedTitle: '無法檢查更新',
|
|
1439
1439
|
tryAgain: '重試',
|
|
1440
1440
|
notAvailableTitle: '更新不可用',
|
|
1441
|
-
unsupportedMessage: '此版本的
|
|
1441
|
+
unsupportedMessage: '此版本的 Claw Agent 無法在應用程式內自行更新。',
|
|
1442
1442
|
connectionRetry: '請檢查網路連線後重試。',
|
|
1443
1443
|
latestBody: '您正在執行最新版本。',
|
|
1444
1444
|
latestBodyBackend: '後端正在執行最新版本。',
|
|
1445
1445
|
allSetTitle: '已是最新版本',
|
|
1446
1446
|
availableTitle: '有可用更新',
|
|
1447
|
-
availableBody: '新版
|
|
1447
|
+
availableBody: '新版 Claw Agent 已可安裝。',
|
|
1448
1448
|
availableTitleBackend: '後端有可用更新',
|
|
1449
|
-
availableBodyBackend: '已連接的
|
|
1449
|
+
availableBodyBackend: '已連接的 Claw Agent 後端有新版本可安裝。',
|
|
1450
1450
|
availableBodyNoChangelog: '已有新版本可用。此安裝方式無法顯示更新日誌。',
|
|
1451
1451
|
updateNow: '立即更新',
|
|
1452
1452
|
maybeLater: '稍後再說',
|
|
1453
1453
|
moreChanges: count => `另有 ${count} 項變更。`,
|
|
1454
1454
|
manualTitle: '從終端機更新',
|
|
1455
|
-
manualBody: '您是從命令列安裝的
|
|
1456
|
-
manualPickedUp: '下次啟動
|
|
1455
|
+
manualBody: '您是從命令列安裝的 Claw Agent,因此更新也需要在那裡執行。請將此指令貼到終端機:',
|
|
1456
|
+
manualPickedUp: '下次啟動 Claw Agent 時會使用新版本。',
|
|
1457
1457
|
copy: '複製',
|
|
1458
1458
|
copied: '已複製',
|
|
1459
1459
|
done: '完成',
|
|
1460
|
-
applyingBody: '
|
|
1461
|
-
applyingBodyBackend: '遠端後端正在套用更新並將重新啟動。恢復後
|
|
1462
|
-
applyingClose: '
|
|
1460
|
+
applyingBody: 'Claw Agent 更新程式會在自己的視窗中接管,並在完成後重新開啟 Claw Agent。',
|
|
1461
|
+
applyingBodyBackend: '遠端後端正在套用更新並將重新啟動。恢復後 Claw Agent 會自動重新連線。',
|
|
1462
|
+
applyingClose: 'Claw Agent 將關閉以套用更新。',
|
|
1463
1463
|
errorTitle: '更新未完成',
|
|
1464
1464
|
errorBody: '沒有資料遺失。您可以現在重試。',
|
|
1465
1465
|
notNow: '暫不',
|
|
@@ -1481,7 +1481,7 @@ export const zhHant = defineLocale({
|
|
|
1481
1481
|
skipped: '已略過',
|
|
1482
1482
|
failed: '失敗'
|
|
1483
1483
|
},
|
|
1484
|
-
oneTimeTitle: '
|
|
1484
|
+
oneTimeTitle: 'Claw Agent 需要一次性安裝',
|
|
1485
1485
|
unsupportedDesc: platform =>
|
|
1486
1486
|
`${platform} 暫不支援自動首次啟動安裝。請開啟終端機並執行下面的指令,然後重新啟動此應用程式。之後啟動會略過此步驟。`,
|
|
1487
1487
|
installCommand: '安裝指令',
|
|
@@ -1490,11 +1490,11 @@ export const zhHant = defineLocale({
|
|
|
1490
1490
|
installTo: '將安裝至',
|
|
1491
1491
|
retryAfterRun: '我已執行 -- 重試',
|
|
1492
1492
|
failedTitle: '安裝失敗',
|
|
1493
|
-
settingUpTitle: '正在設定
|
|
1493
|
+
settingUpTitle: '正在設定 Claw Agent',
|
|
1494
1494
|
finishingTitle: '正在收尾',
|
|
1495
1495
|
failedDesc:
|
|
1496
|
-
'某個安裝步驟失敗。在 Windows 上,如果另一個
|
|
1497
|
-
activeDesc: '這是一次性設定。
|
|
1496
|
+
'某個安裝步驟失敗。在 Windows 上,如果另一個 Claw Agent CLI 或桌面執行個體正在執行,可能會出現這種情況。請停止正在執行的 Claw Agent 執行個體後重試。可查看下方的詳細資訊或 desktop 記錄中的完整記錄。',
|
|
1497
|
+
activeDesc: '這是一次性設定。Claw Agent 安裝程式正在下載相依套件並設定您的電腦。之後啟動會略過此步驟。',
|
|
1498
1498
|
progress: (completed, total) => `${completed}/${total} 個步驟已完成`,
|
|
1499
1499
|
currentStage: stage => ` -- 目前:${stage}`,
|
|
1500
1500
|
fetchingManifest: '正在取得安裝程式 manifest...',
|
|
@@ -1512,10 +1512,10 @@ export const zhHant = defineLocale({
|
|
|
1512
1512
|
},
|
|
1513
1513
|
|
|
1514
1514
|
onboarding: {
|
|
1515
|
-
headerTitle: '開始設定
|
|
1515
|
+
headerTitle: '開始設定 Claw Agent',
|
|
1516
1516
|
headerDesc: '連線模型提供方即可開始聊天。大多數選項只需一次點擊。',
|
|
1517
|
-
preparingInstall: '
|
|
1518
|
-
starting: '正在啟動
|
|
1517
|
+
preparingInstall: 'Claw Agent 正在完成安裝。首次執行通常不到一分鐘。',
|
|
1518
|
+
starting: '正在啟動 Claw Agent…',
|
|
1519
1519
|
lookingUpProviders: '正在查詢提供方...',
|
|
1520
1520
|
collapse: '收合',
|
|
1521
1521
|
otherProviders: '其他提供方',
|
|
@@ -1523,7 +1523,7 @@ export const zhHant = defineLocale({
|
|
|
1523
1523
|
chooseLater: '稍後再選擇提供方',
|
|
1524
1524
|
recommended: '建議',
|
|
1525
1525
|
connected: '已連線',
|
|
1526
|
-
featuredPitch: '一個訂閱,300+ 前沿模型 — 執行
|
|
1526
|
+
featuredPitch: '一個訂閱,300+ 前沿模型 — 執行 Claw Agent 的建議方式',
|
|
1527
1527
|
openRouterPitch: '一個金鑰,數百個模型 — 穩定的預設選擇',
|
|
1528
1528
|
apiKeyOptions: {
|
|
1529
1529
|
openrouter: { short: '一個金鑰,多個模型', description: '用一個金鑰存取數百個模型。適合新安裝的預設選擇。' },
|
|
@@ -1532,7 +1532,7 @@ export const zhHant = defineLocale({
|
|
|
1532
1532
|
xai: { short: 'Grok 模型', description: '直接存取 xAI Grok 模型。' },
|
|
1533
1533
|
local: {
|
|
1534
1534
|
short: '自託管',
|
|
1535
|
-
description: '將
|
|
1535
|
+
description: '將 Claw Agent 指向本機或自託管的 OpenAI 相容端點(vLLM、llama.cpp、Ollama 等)。'
|
|
1536
1536
|
}
|
|
1537
1537
|
},
|
|
1538
1538
|
backToSignIn: '返回登入',
|
|
@@ -1544,8 +1544,8 @@ export const zhHant = defineLocale({
|
|
|
1544
1544
|
update: '更新',
|
|
1545
1545
|
flowSubtitles: {
|
|
1546
1546
|
pkce: '開啟瀏覽器登入,然後回到這裡繼續',
|
|
1547
|
-
device_code: '在瀏覽器中開啟驗證頁面 —
|
|
1548
|
-
loopback: '開啟瀏覽器登入 —
|
|
1547
|
+
device_code: '在瀏覽器中開啟驗證頁面 — Claw Agent 會自動連線',
|
|
1548
|
+
loopback: '開啟瀏覽器登入 — Claw Agent 會自動連線',
|
|
1549
1549
|
external: '先在終端機登入一次,然後回來繼續聊天'
|
|
1550
1550
|
},
|
|
1551
1551
|
startingSignIn: provider => `正在為 ${provider} 啟動登入...`,
|
|
@@ -1556,11 +1556,11 @@ export const zhHant = defineLocale({
|
|
|
1556
1556
|
pickDifferentProvider: '選擇其他提供方',
|
|
1557
1557
|
signInWith: provider => `使用 ${provider} 登入`,
|
|
1558
1558
|
openedBrowser: provider => `已在瀏覽器中開啟 ${provider}。`,
|
|
1559
|
-
authorizeThere: '請在那裡授權
|
|
1559
|
+
authorizeThere: '請在那裡授權 Claw Agent。',
|
|
1560
1560
|
copyAuthCode: '複製授權碼並貼到下方。',
|
|
1561
1561
|
pasteAuthCode: '貼上授權碼',
|
|
1562
1562
|
reopenAuthPage: '重新開啟授權頁面',
|
|
1563
|
-
autoBrowser: provider => `已在瀏覽器中開啟 ${provider}。請在那裡授權
|
|
1563
|
+
autoBrowser: provider => `已在瀏覽器中開啟 ${provider}。請在那裡授權 Claw Agent,連線會自動完成,無需複製或貼上。`,
|
|
1564
1564
|
reopenSignInPage: '重新開啟登入頁面',
|
|
1565
1565
|
waitingAuthorize: '等待您授權...',
|
|
1566
1566
|
externalPending: provider => `${provider} 透過自己的 CLI 登入。請在終端機執行此指令,然後回來選擇「我已登入」:`,
|
|
@@ -1648,7 +1648,7 @@ export const zhHant = defineLocale({
|
|
|
1648
1648
|
update: '更新',
|
|
1649
1649
|
updateInProgress: '更新中',
|
|
1650
1650
|
commitsBehind: (count, branch) => `落後 ${branch} ${count} 個提交`,
|
|
1651
|
-
desktopVersion: version => `
|
|
1651
|
+
desktopVersion: version => `Claw Agent Desktop v${version}`,
|
|
1652
1652
|
backendVersion: version => `後端 v${version}`,
|
|
1653
1653
|
clientLabel: version => `用戶端 v${version}`,
|
|
1654
1654
|
backendLabel: version => `後端 v${version}`,
|
|
@@ -1665,7 +1665,7 @@ export const zhHant = defineLocale({
|
|
|
1665
1665
|
gatewayConnecting: '連線中',
|
|
1666
1666
|
gatewayOffline: '離線',
|
|
1667
1667
|
gatewayRestarting: '重新啟動中…',
|
|
1668
|
-
gatewayTitle: '
|
|
1668
|
+
gatewayTitle: 'Claw Agent 推論閘道狀態',
|
|
1669
1669
|
agents: '代理',
|
|
1670
1670
|
closeAgents: '關閉代理',
|
|
1671
1671
|
openAgents: '開啟代理',
|
|
@@ -1737,7 +1737,7 @@ export const zhHant = defineLocale({
|
|
|
1737
1737
|
binaryTitle: '這看起來像二進位檔案',
|
|
1738
1738
|
binaryBody: label => `預覽 ${label} 可能會顯示無法讀取的文字。`,
|
|
1739
1739
|
largeTitle: '此檔案較大',
|
|
1740
|
-
largeBody: (label, size) => `${label} 大小為 ${size}。
|
|
1740
|
+
largeBody: (label, size) => `${label} 大小為 ${size}。Claw Agent 只會顯示前 512 KB。`,
|
|
1741
1741
|
previewAnyway: '仍然預覽',
|
|
1742
1742
|
truncated: '顯示前 512 KB。',
|
|
1743
1743
|
noInlineTitle: '沒有行內預覽',
|
|
@@ -1767,25 +1767,25 @@ export const zhHant = defineLocale({
|
|
|
1767
1767
|
serverNotFound: '找不到伺服器',
|
|
1768
1768
|
failedToLoad: '預覽載入失敗',
|
|
1769
1769
|
tryAgain: '重試',
|
|
1770
|
-
restarting: '
|
|
1771
|
-
askRestart: '請
|
|
1772
|
-
lookingRestart: taskId => `
|
|
1770
|
+
restarting: 'Claw Agent 正在重新啟動...',
|
|
1771
|
+
askRestart: '請 Claw Agent 重新啟動伺服器',
|
|
1772
|
+
lookingRestart: taskId => `Claw Agent 正在尋找要重新啟動的預覽伺服器 (${taskId})`,
|
|
1773
1773
|
restartingTitle: '正在重新啟動預覽伺服器',
|
|
1774
|
-
restartingMessage: '
|
|
1774
|
+
restartingMessage: 'Claw Agent 正在背景執行。可在預覽主控台查看進度。',
|
|
1775
1775
|
startRestartFailed: message => `無法啟動伺服器重新啟動:${message}`,
|
|
1776
1776
|
restartFailed: '伺服器重新啟動失敗',
|
|
1777
1777
|
hideConsole: '隱藏預覽主控台',
|
|
1778
1778
|
showConsole: '顯示預覽主控台',
|
|
1779
1779
|
hideDevTools: '隱藏預覽 DevTools',
|
|
1780
1780
|
openDevTools: '開啟預覽 DevTools',
|
|
1781
|
-
finishedRestarting: message => `
|
|
1781
|
+
finishedRestarting: message => `Claw Agent 已完成預覽伺服器重新啟動${message ? `:${message}` : ''}`,
|
|
1782
1782
|
failedRestarting: message => `伺服器重新啟動失敗:${message}`,
|
|
1783
1783
|
unknownError: '未知錯誤',
|
|
1784
1784
|
restartedTitle: '預覽伺服器已重新啟動',
|
|
1785
1785
|
reloadingNow: '正在重新載入預覽。',
|
|
1786
1786
|
restartFailedTitle: '預覽重新啟動失敗',
|
|
1787
|
-
restartFailedMessage: '
|
|
1788
|
-
stillWorking: '
|
|
1787
|
+
restartFailedMessage: 'Claw Agent 無法重新啟動伺服器。',
|
|
1788
|
+
stillWorking: 'Claw Agent 仍在執行,但尚未收到重新啟動結果。伺服器指令可能正在前台執行。',
|
|
1789
1789
|
workspaceReloading: '工作區已變更,正在重新載入預覽',
|
|
1790
1790
|
fileChanged: url => `檔案已變更,正在重新載入預覽:${url}`,
|
|
1791
1791
|
filesChanged: (count, url) => `${count} 個檔案變更,正在重新載入預覽:${url}`,
|
|
@@ -1803,7 +1803,7 @@ export const zhHant = defineLocale({
|
|
|
1803
1803
|
thread: {
|
|
1804
1804
|
loadingSession: '正在載入工作階段',
|
|
1805
1805
|
showEarlier: '顯示較早的訊息',
|
|
1806
|
-
loadingResponse: '
|
|
1806
|
+
loadingResponse: 'Claw Agent 正在載入回覆',
|
|
1807
1807
|
thinking: '思考中',
|
|
1808
1808
|
today: time => `今天,${time}`,
|
|
1809
1809
|
yesterday: time => `昨天,${time}`,
|
|
@@ -1830,7 +1830,7 @@ export const zhHant = defineLocale({
|
|
|
1830
1830
|
attachingFile: '正在附加…'
|
|
1831
1831
|
},
|
|
1832
1832
|
approval: {
|
|
1833
|
-
gatewayDisconnected: '
|
|
1833
|
+
gatewayDisconnected: 'Claw Agent 閘道未連線',
|
|
1834
1834
|
sendFailed: '無法傳送核准回應',
|
|
1835
1835
|
run: '執行',
|
|
1836
1836
|
command: '指令',
|
|
@@ -1841,12 +1841,12 @@ export const zhHant = defineLocale({
|
|
|
1841
1841
|
reject: '拒絕',
|
|
1842
1842
|
alwaysTitle: '一律允許此指令?',
|
|
1843
1843
|
alwaysDescription: pattern =>
|
|
1844
|
-
`這會將「${pattern}」模式加入永久允許清單(~/.hermes/config.yaml)。
|
|
1844
|
+
`這會將「${pattern}」模式加入永久允許清單(~/.hermes/config.yaml)。Claw Agent 對類似指令將不再詢問,包括目前工作階段和未來工作階段。`,
|
|
1845
1845
|
alwaysAllow: '一律允許'
|
|
1846
1846
|
},
|
|
1847
1847
|
clarify: {
|
|
1848
1848
|
notReady: '澄清請求尚未就緒',
|
|
1849
|
-
gatewayDisconnected: '
|
|
1849
|
+
gatewayDisconnected: 'Claw Agent 閘道未連線',
|
|
1850
1850
|
sendFailed: '無法傳送澄清回應',
|
|
1851
1851
|
loadingQuestion: '正在載入問題…',
|
|
1852
1852
|
other: '其他(輸入您的答案)',
|
|
@@ -1883,14 +1883,14 @@ export const zhHant = defineLocale({
|
|
|
1883
1883
|
},
|
|
1884
1884
|
|
|
1885
1885
|
prompts: {
|
|
1886
|
-
gatewayDisconnected: '
|
|
1886
|
+
gatewayDisconnected: 'Claw Agent 閘道未連線',
|
|
1887
1887
|
sudoSendFailed: '無法傳送 sudo 密碼',
|
|
1888
1888
|
secretSendFailed: '無法傳送密鑰',
|
|
1889
1889
|
sudoTitle: '管理員密碼',
|
|
1890
|
-
sudoDesc: '
|
|
1890
|
+
sudoDesc: 'Claw Agent 需要您的 sudo 密碼來執行特權指令。它只會傳送給您的本機代理。',
|
|
1891
1891
|
sudoPlaceholder: 'sudo 密碼',
|
|
1892
1892
|
secretTitle: '需要密鑰',
|
|
1893
|
-
secretDesc: '
|
|
1893
|
+
secretDesc: 'Claw Agent 需要一個憑證才能繼續。',
|
|
1894
1894
|
secretPlaceholder: '密鑰值'
|
|
1895
1895
|
},
|
|
1896
1896
|
|
|
@@ -1940,8 +1940,8 @@ export const zhHant = defineLocale({
|
|
|
1940
1940
|
sessionExportFailed: '無法匯出工作階段',
|
|
1941
1941
|
imageSaved: '圖片已儲存',
|
|
1942
1942
|
downloadStarted: '下載已開始',
|
|
1943
|
-
restartToUseSaveImage: '重新啟動
|
|
1944
|
-
restartToSaveImages: '重新啟動
|
|
1943
|
+
restartToUseSaveImage: '重新啟動 Claw Agent Desktop 後可使用儲存圖片。',
|
|
1944
|
+
restartToSaveImages: '重新啟動 Claw Agent Desktop 以儲存圖片',
|
|
1945
1945
|
imageDownloadFailed: '圖片下載失敗',
|
|
1946
1946
|
openImage: '開啟圖片',
|
|
1947
1947
|
downloadImage: '下載圖片',
|