-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathzh-TW.js
More file actions
1599 lines (1596 loc) · 91.6 KB
/
Copy pathzh-TW.js
File metadata and controls
1599 lines (1596 loc) · 91.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @license
* Copyright 2025 Qwen team
* SPDX-License-Identifier: Apache-2.0
*/
// Traditional Chinese (zh-TW) translations for Qwen Code CLI
// Bootstrapped from en.js structure with opencc(zh.js s2t),
// then extensively hand-corrected for Taiwan vocabulary conventions.
// This file is the authoritative source — do not overwrite with auto-generated output.
export default {
'↑ to manage attachments': '↑ 管理附件',
'← → select, Delete to remove, ↓ to exit': '← → 選擇,Delete 刪除,↓ 退出',
'Attachments: ': '附件:',
'Basics:': '基礎功能:',
'Add context': '添加上下文',
'Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.':
'使用 {{symbol}} 指定檔案作為上下文(例如,{{example}}),用於定位特定檔案或檔案夾',
'@': '@',
'@src/myFile.ts': '@src/myFile.ts',
'Shell mode': 'Shell 模式',
'YOLO mode': 'YOLO 模式',
'Auto mode': 'Auto 模式',
'plan mode': '規劃模式',
'auto-accept edits': '自動接受編輯',
'Accepting edits': '接受編輯',
'(shift + tab to cycle)': '(Shift + Tab 切換)',
'(tab to cycle)': '(按 Tab 切換)',
'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).':
'通過 {{symbol}} 執行 shell 命令(例如,{{example1}})或使用自然語言(例如,{{example2}})',
'!': '!',
'!npm run start': '!npm run start',
'Commands:': '命令:',
'shell command': 'shell 命令',
'Model Context Protocol command (from external servers)':
'Model Context Protocol 命令(來自外部伺服器)',
'Keyboard Shortcuts:': '鍵盤快捷鍵:',
'Toggle this help display': '切換此幫助顯示',
'Toggle shell mode': '切換命令行模式',
'Open command menu': '打開命令選單',
'Add file context': '添加檔案上下文',
'Accept suggestion / Autocomplete': '接受建議 / 自動補全',
'Reverse search history': '反向搜索歷史',
'Press ? again to close': '再次按 ? 關閉',
'for shell mode': '命令行模式',
'for commands': '命令選單',
'for file paths': '檔案路徑',
'to clear input': '清空輸入',
'to cycle approvals': '切換審批模式',
'to quit': '退出',
'for newline': '換行',
'to clear screen': '清屏',
'to search history': '搜索歷史',
'to paste images': '粘貼圖片',
'for external editor': '外部編輯器',
'to toggle compact mode': '切換緊湊模式',
'Jump through words in the input': '在輸入中按單詞跳轉',
'Close dialogs, cancel requests, or quit application':
'關閉對話框、取消請求或退出應用程序',
'New line': '換行',
'New line (Alt+Enter works for certain linux distros)':
'換行(某些 Linux 發行版支持 Alt+Enter)',
'Clear the screen': '清屏',
'Open input in external editor': '在外部編輯器中打開輸入',
'Send message': '發送消息',
'Initializing...': '正在初始化...',
'Connecting to MCP servers... ({{connected}}/{{total}})':
'正在連接到 MCP servers... ({{connected}}/{{total}})',
'Type your message or @path/to/file': '輸入您的消息或 @ 檔案路徑',
'? for shortcuts': '按 ? 查看快捷鍵',
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.":
"按 'i' 進入插入模式,按 'Esc' 進入普通模式",
'Cancel operation / Clear input (double press)':
'取消操作 / 清空輸入(雙擊)',
'Cycle approval modes': '循環切換審批模式',
'Cycle through your prompt history': '循環瀏覽提示歷史',
'For a full list of shortcuts, see {{docPath}}':
'完整快捷鍵列表,請參閱 {{docPath}}',
'docs/keyboard-shortcuts.md': 'docs/keyboard-shortcuts.md',
'for help on Qwen Code': '獲取 Qwen Code 幫助',
'show version info': '顯示版本信息',
'show paths for current session files and logs': '顯示目前會話檔案和日誌路徑',
'submit a bug report': '提交錯誤報告',
Status: '狀態',
'Qwen Code': 'Qwen Code',
Runtime: '運行環境',
OS: '操作系統',
Auth: '認證',
Model: '模型',
'Fast Model': '快速模型',
Sandbox: '沙箱',
'Session ID': '會話 ID',
'Base URL': 'Base URL',
Proxy: '代理',
'Memory Usage': '內存使用',
'IDE Client': 'IDE 客戶端',
'Analyzes the project and creates a tailored QWEN.md file.':
'分析項目並創建定製的 QWEN.md 檔案',
'List available Qwen Code tools. Usage: /tools [desc]':
'列出可用的 Qwen Code 工具。用法:/tools [desc]',
'List available skills.': '列出可用技能。',
'Available Qwen Code CLI tools:': '可用的 Qwen Code CLI 工具:',
'No tools available': '沒有可用工具',
'View or change the approval mode for tool usage':
'查看或更改工具使用的審批模式',
'Invalid approval mode "{{arg}}". Valid modes: {{modes}}':
'無效的審批模式 "{{arg}}"。有效模式:{{modes}}',
'Approval mode set to "{{mode}}"': '審批模式已設置為 "{{mode}}"',
'View or change the language setting': '查看或更改語言設置',
'List background tasks (text dump — interactive dialog opens via the footer pill)':
'列出背景任務(文字列表;互動式對話框可透過頁腳中的「背景任務」入口開啟)',
'Delete a previous session': '刪除先前的會話',
'Run installation and environment diagnostics': '執行安裝與環境診斷',
'Browse dynamic model catalogs and choose which models stay enabled locally':
'瀏覽動態模型目錄,並選擇要在本機保持啟用的模型',
'Generate a one-line session recap now': '立即生成一條單行會話回顧',
'Rename the current conversation. --auto lets the fast model pick a title.':
'重新命名目前的對話。--auto 會讓快速模型自動產生標題。',
'Rewind conversation to a previous turn': '將對話回退到先前的某一輪',
'Rewind Conversation': '回退對話',
'No user turns to rewind to.': '沒有可回退的使用者對話輪次。',
'Rewind to: ': '回退到:',
'Restore code and conversation': '恢復程式碼和對話',
'Restore conversation only': '僅恢復對話',
'Restore code only': '僅恢復程式碼',
'Never mind': '算了',
'Computing file changes...': '正在計算檔案變更...',
'Restoring...': '正在恢復...',
'Restored {{count}} file(s).': '已恢復 {{count}} 個檔案。',
'Failed to restore files: {{error}}': '恢復檔案失敗:{{error}}',
'Rewind failed: {{error}}': '回退失敗:{{error}}',
'Cannot rewind conversation: no active model client.':
'無法回退對話:模型客戶端未啟用。',
'Code restored, but conversation could not be rewound (no active client).':
'程式碼已恢復,但對話無法回退(模型客戶端未啟用)。',
'Conversation rewound. Edit your prompt and press Enter to continue.':
'對話已回退。修改提示後按 Enter 繼續。',
'Rewinding does not affect files edited manually or via shell commands.':
'回退不會影響手動編輯或透過 shell 命令修改的檔案。',
'Cannot rewind to a turn that was compressed. Try a more recent turn.':
'無法回退到已被壓縮的輪次,請嘗試更近一些的輪次。',
'File restore is unavailable for this turn (no captured file changes, or this turn predates the current session).':
'該輪次無法還原檔案(沒有擷取到檔案變更,或該輪次屬於本次會話之前)。',
'(+{{insertions}} -{{deletions}} in {{count}} file)':
'(+{{insertions}} -{{deletions}},{{count}} 個檔案)',
'(+{{insertions}} -{{deletions}} in {{count}} files)':
'(+{{insertions}} -{{deletions}},{{count}} 個檔案)',
'Failed to restore {{count}} file(s): {{files}}':
'恢復 {{count}} 個檔案失敗:{{files}}',
'Cannot restore files: this turn was created before file checkpointing was enabled.':
'無法恢復檔案:該輪對話建立時尚未啟用檔案檢查點功能。',
'No files needed to be restored.': '沒有檔案需要恢復。',
'↑↓ to navigate · Enter to select · Esc to go back':
'↑↓ 導覽 · Enter 選取 · Esc 返回',
'↑↓ to navigate · Enter to select · Esc to cancel':
'↑↓ 導覽 · Enter 選取 · Esc 取消',
'Enter/Y to confirm · Esc/N to go back': 'Enter/Y 確認 · Esc/N 返回',
'change the theme': '更改主題',
'Select Theme': '選擇主題',
Preview: '預覽',
'(Use Enter to select, Tab to configure scope)':
'(使用 Enter 選擇,Tab 配置作用域)',
'(Use Enter to apply scope, Tab to go back)':
'(使用 Enter 應用作用域,Tab 返回)',
'Theme configuration unavailable due to NO_COLOR env variable.':
'由於 NO_COLOR 環境變量,主題配置不可用。',
'Theme "{{themeName}}" not found.': '未找到主題 "{{themeName}}"。',
'Theme "{{themeName}}" not found in selected scope.':
'在所選作用域中未找到主題 "{{themeName}}"。',
'Clear conversation history and free up context': '清除對話歷史並釋放上下文',
'Compresses the context by replacing it with a summary.':
'通過摘要替換來壓縮上下文',
'open full Qwen Code documentation in your browser':
'在瀏覽器中打開完整的 Qwen Code 文檔',
'Configuration not available.': '配置不可用',
'Connect an LLM provider': '連接 LLM 提供商',
'Copy the last result or code snippet to clipboard':
'將最後的結果或代碼片段複製到剪貼板',
'Show working-tree change stats versus HEAD':
'顯示工作區相對 HEAD 的變更統計',
'Could not determine current working directory.': '無法確定當前工作目錄。',
'Failed to compute git diff stats': '計算 git diff 統計失敗',
'No diff available. Either this is not a git repository, HEAD is missing, or a merge/rebase/cherry-pick/revert is in progress.':
'無可用 diff。可能不是 Git 倉庫、HEAD 缺失,或正在執行 merge/rebase/cherry-pick/revert。',
'Clean working tree — no changes against HEAD.':
'工作區乾淨 —— 與 HEAD 無差異。',
'{{count}} file changed, +{{added}} / -{{removed}}':
'{{count}} 個檔案變更,+{{added}} / -{{removed}}',
'{{count}} files changed, +{{added}} / -{{removed}}':
'{{count}} 個檔案變更,+{{added}} / -{{removed}}',
'{{count}} file changed': '{{count}} 個檔案變更',
'{{count}} files changed': '{{count}} 個檔案變更',
'…and {{hidden}} more (showing first {{shown}})':
'…還有 {{hidden}} 個(僅顯示前 {{shown}} 個)',
'(binary)': '(二進位)',
'(binary, new)': '(二進位,新增)',
'(new)': '(新增)',
'(new, partial)': '(新增,部分統計)',
'(deleted)': '(已刪除)',
'(binary, deleted)': '(二進位,已刪除)',
'Manage subagents for specialized task delegation.':
'管理用於專門任務委派的子智能體',
'Manage existing subagents (view, edit, delete).':
'管理現有子智能體(查看、編輯、刪除)',
'Create a new subagent with guided setup.': '通過引導式設置創建新的子智能體',
Agents: '智能體',
'Choose Action': '選擇操作',
'Edit {{name}}': '編輯 {{name}}',
'Edit Tools: {{name}}': '編輯工具: {{name}}',
'Edit Color: {{name}}': '編輯顏色: {{name}}',
'Delete {{name}}': '刪除 {{name}}',
'Unknown Step': '未知步驟',
'Esc to close': '按 Esc 關閉',
'Enter to select, ↑↓ to navigate, Esc to close':
'Enter 選擇,↑↓ 導航,Esc 關閉',
'Esc to go back': '按 Esc 返回',
'Enter to confirm, Esc to cancel': 'Enter 確認,Esc 取消',
'Enter to select, ↑↓ to navigate, Esc to go back':
'Enter 選擇,↑↓ 導航,Esc 返回',
'Enter to submit, Esc to go back': 'Enter 提交,Esc 返回',
'Invalid step: {{step}}': '無效步驟: {{step}}',
'No subagents found.': '未找到子智能體。',
"Use '/agents create' to create your first subagent.":
"使用 '/agents create' 創建您的第一個子智能體。",
'(built-in)': '(內置)',
'(overridden by project level agent)': '(已被項目級智能體覆蓋)',
'Project Level ({{path}})': '項目級 ({{path}})',
'User Level ({{path}})': '用戶級 ({{path}})',
'Built-in Agents': '內置智能體',
'Extension Agents': '擴展智能體',
'Using: {{count}} agents': '使用中: {{count}} 個智能體',
'View Agent': '查看智能體',
'Edit Agent': '編輯智能體',
'Delete Agent': '刪除智能體',
Back: '返回',
'No agent selected': '未選擇智能體',
'File Path: ': '檔案路徑: ',
'Tools: ': '工具: ',
'Color: ': '顏色: ',
'Description:': '描述:',
'System Prompt:': '系統提示:',
'Open in editor': '在編輯器中打開',
'Edit tools': '編輯工具',
'Edit color': '編輯顏色',
'❌ Error:': '❌ 錯誤:',
'Are you sure you want to delete agent "{{name}}"?':
'您確定要刪除智能體 "{{name}}" 嗎?',
'Project Level (.qwen/agents/)': '項目級 (.qwen/agents/)',
'User Level (~/.qwen/agents/)': '用戶級 (~/.qwen/agents/)',
'✅ Subagent Created Successfully!': '✅ 子智能體創建成功!',
'Subagent "{{name}}" has been saved to {{level}} level.':
'子智能體 "{{name}}" 已保存到 {{level}} 級別。',
'Name: ': '名稱: ',
'Location: ': '位置: ',
'❌ Error saving subagent:': '❌ 保存子智能體時出錯:',
'Warnings:': '警告:',
'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent':
'名稱 "{{name}}" 在 {{level}} 級別已存在 - 將覆蓋現有子智能體',
'Name "{{name}}" exists at user level - project level will take precedence':
'名稱 "{{name}}" 在用戶級別存在 - 項目級別將優先',
'Name "{{name}}" exists at project level - existing subagent will take precedence':
'名稱 "{{name}}" 在項目級別存在 - 現有子智能體將優先',
'Description is over {{length}} characters': '描述超過 {{length}} 個字符',
'System prompt is over {{length}} characters':
'系統提示超過 {{length}} 個字符',
'Step {{n}}: Choose Location': '步驟 {{n}}: 選擇位置',
'Step {{n}}: Choose Generation Method': '步驟 {{n}}: 選擇生成方式',
'Generate with Qwen Code (Recommended)': '使用 Qwen Code 生成(推薦)',
'Manual Creation': '手動創建',
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
'描述此子智能體應該做什麼以及何時使用它。(為了獲得最佳效果,請全面描述)',
'e.g., Expert code reviewer that reviews code based on best practices...':
'例如:專業的代碼審查員,根據最佳實踐審查代碼...',
'Generating subagent configuration...': '正在生成子智能體配置...',
'Failed to generate subagent: {{error}}': '生成子智能體失敗: {{error}}',
'Step {{n}}: Describe Your Subagent': '步驟 {{n}}: 描述您的子智能體',
'Step {{n}}: Enter Subagent Name': '步驟 {{n}}: 輸入子智能體名稱',
'Step {{n}}: Enter System Prompt': '步驟 {{n}}: 輸入系統提示',
'Step {{n}}: Enter Description': '步驟 {{n}}: 輸入描述',
'Step {{n}}: Select Tools': '步驟 {{n}}: 選擇工具',
'All Tools (Default)': '所有工具(默認)',
'All Tools': '所有工具',
'Read-only Tools': '只讀工具',
'Read & Edit Tools': '讀取和編輯工具',
'Read & Edit & Execution Tools': '讀取、編輯和執行工具',
'All tools selected, including MCP tools': '已選擇所有工具,包括 MCP tools',
'Selected tools:': '已選擇的工具:',
'Read-only tools:': '只讀工具:',
'Edit tools:': '編輯工具:',
'Execution tools:': '執行工具:',
'Step {{n}}: Choose Background Color': '步驟 {{n}}: 選擇背景顏色',
'Step {{n}}: Confirm and Save': '步驟 {{n}}: 確認並保存',
'Esc to cancel': '按 Esc 取消',
'Press Enter to save, e to save and edit, Esc to go back':
'按 Enter 保存,e 保存並編輯,Esc 返回',
'Press Enter to continue, {{navigation}}Esc to {{action}}':
'按 Enter 繼續,{{navigation}}Esc {{action}}',
cancel: '取消',
'go back': '返回',
'↑↓ to navigate, ': '↑↓ 導航,',
'Enter a clear, unique name for this subagent.':
'為此子智能體輸入一個清晰、唯一的名稱。',
'e.g., Code Reviewer': '例如:代碼審查員',
'Name cannot be empty.': '名稱不能為空。',
"Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.":
'編寫定義此子智能體行為的系統提示。為了獲得最佳效果,請全面描述。',
'e.g., You are an expert code reviewer...':
'例如:您是一位專業的代碼審查員...',
'System prompt cannot be empty.': '系統提示不能為空。',
'Describe when and how this subagent should be used.':
'描述何時以及如何使用此子智能體。',
'e.g., Reviews code for best practices and potential bugs.':
'例如:審查代碼以查找最佳實踐和潛在錯誤。',
'Description cannot be empty.': '描述不能為空。',
'Failed to launch editor: {{error}}': '啟動編輯器失敗: {{error}}',
'Failed to save and edit subagent: {{error}}':
'保存並編輯子智能體失敗: {{error}}',
'Manage Extensions': '管理擴展',
'Extension Details': '擴展詳情',
'View Extension': '查看擴展',
'Update Extension': '更新擴展',
'Disable Extension': '禁用擴展',
'Enable Extension': '啟用擴展',
'Uninstall Extension': '卸載擴展',
'Select Scope': '選擇作用域',
'User Scope': '用戶作用域',
'Workspace Scope': '工作區作用域',
'No extensions found.': '未找到擴展。',
'Updating...': '更新中...',
Unknown: '未知',
Error: '錯誤',
'Stopped because': '停止原因',
'Version:': '版本:',
'Status:': '狀態:',
'Are you sure you want to uninstall extension "{{name}}"?':
'確定要卸載擴展 "{{name}}" 嗎?',
'This action cannot be undone.': '此操作無法撤銷。',
'Extension "{{name}}" updated successfully.': '擴展 "{{name}}" 更新成功。',
'Name:': '名稱:',
'MCP Servers:': 'MCP Servers:',
'Settings:': '設置:',
active: '已啟用',
disabled: '已禁用',
enabled: '已啟用',
'View Details': '查看詳情',
'Update failed:': '更新失敗:',
'Updating {{name}}...': '正在更新 {{name}}...',
'Update complete!': '更新完成!',
'User (global)': '用戶(全局)',
'Workspace (project-specific)': '工作區(項目特定)',
'Disable "{{name}}" - Select Scope': '禁用 "{{name}}" - 選擇作用域',
'Enable "{{name}}" - Select Scope': '啟用 "{{name}}" - 選擇作用域',
'No extension selected': '未選擇擴展',
'{{count}} extensions installed': '已安裝 {{count}} 個擴展',
"Use '/extensions install' to install your first extension.":
"使用 '/extensions install' 安裝您的第一個擴展。",
'up to date': '已是最新',
'update available': '有可用更新',
'checking...': '檢查中...',
'not updatable': '不可更新',
error: '錯誤',
'View and edit Qwen Code settings': '查看和編輯 Qwen Code 設置',
Settings: '設置',
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
'要查看更改,必須重啟 Qwen Code。按 r 退出並立即應用更改。',
'Vim Mode': 'Vim 模式',
'Attribution: commit': '署名:提交',
'Terminal Bell Notification': '終端響鈴通知',
'Enable Usage Statistics': '啟用使用統計',
Theme: '主題',
'Preferred Editor': '首選編輯器',
'Auto-connect to IDE': '自動連接到 IDE',
'Debug Keystroke Logging': '調試按鍵記錄',
'Language: UI': '語言:界面',
'Language: Model': '語言:模型',
'Output Format': '輸出格式',
'Hide Window Title': '隱藏窗口標題',
'Show Status in Title': '在標題中顯示狀態',
'Hide Tips': '隱藏提示',
'Show Line Numbers in Code': '在代碼中顯示行號',
'Show Citations': '顯示引用',
'Custom Witty Phrases': '自定義詼諧短語',
'Show Welcome Back Dialog': '顯示歡迎回來對話框',
'Enable User Feedback': '啟用用戶反饋',
'How is Qwen doing this session? (optional)': 'Qwen 這次表現如何?(可選)',
Bad: '不滿意',
Fine: '還行',
Good: '滿意',
Dismiss: '忽略',
'Screen Reader Mode': '屏幕閱讀器模式',
'Max Session Turns': '最大會話輪次',
'Skip Next Speaker Check': '跳過下一個說話者檢查',
'Skip Loop Detection': '跳過循環檢測',
'Skip Startup Context': '跳過啟動上下文',
'Enable OpenAI Logging': '啟用 OpenAI 日誌',
'OpenAI Logging Directory': 'OpenAI 日誌目錄',
Timeout: '超時',
'Max Retries': '最大重試次數',
'Load Memory From Include Directories': '從包含目錄加載內存',
'Respect .gitignore': '遵守 .gitignore',
'Respect .qwenignore': '遵守 .qwenignore',
'Enable Recursive File Search': '啟用遞歸檔案搜索',
'Interactive Shell (PTY)': '交互式 Shell (PTY)',
'Show Color': '顯示顏色',
'Auto Accept': '自動接受',
'Use Ripgrep': '使用 Ripgrep',
'Use Builtin Ripgrep': '使用內置 Ripgrep',
'Tool Output Truncation Threshold': '工具輸出截斷閾值',
'Tool Output Truncation Lines': '工具輸出截斷行數',
'Folder Trust': '檔案夾信任',
'Tool Schema Compliance': 'Tool Schema 兼容性',
'Auto (detect from system)': '自動(從系統檢測)',
'Auto (detect terminal theme)': '自動(檢測終端主題)',
Auto: '自動',
Text: '文本',
JSON: 'JSON',
Plan: '規劃',
'Ask permissions': '請求授權',
'Auto Edit': '自動編輯',
YOLO: 'YOLO',
'toggle vim mode on/off': '切換 vim 模式開關',
'check session stats. Usage: /stats [model|tools]':
'檢查會話統計信息。用法:/stats [model|tools]',
'Show model-specific usage statistics.': '顯示模型相關的使用統計信息',
'Show tool-specific usage statistics.': '顯示工具相關的使用統計信息',
'exit the cli': '退出命令行界面',
'Manage workspace directories': '管理工作區目錄',
'Add directories to the workspace. Use comma to separate multiple paths':
'將目錄添加到工作區。使用逗號分隔多個路徑',
'Show all directories in the workspace': '顯示工作區中的所有目錄',
'set external editor preference': '設置外部編輯器首選項',
'Select Editor': '選擇編輯器',
'Editor Preference': '編輯器首選項',
'These editors are currently supported. Please note that some editors cannot be used in sandbox mode.':
'當前支持以下編輯器。請注意,某些編輯器無法在沙箱模式下使用。',
'Your preferred editor is:': '您的首選編輯器是:',
'Manage extensions': '管理擴展',
'Manage installed extensions': '管理已安裝的擴展',
'Disable an extension': '禁用擴展',
'Enable an extension': '啟用擴展',
'Install an extension from a git repo or local path':
'從 Git 倉庫或本地路徑安裝擴展',
'Uninstall an extension': '卸載擴展',
'No extensions installed.': '未安裝擴展。',
'Extension "{{name}}" not found.': '未找到擴展 "{{name}}"。',
'No extensions to update.': '沒有可更新的擴展。',
'Usage: /extensions install <source>': '用法:/extensions install <來源>',
'Installing extension from "{{source}}"...':
'正在從 "{{source}}" 安裝擴展...',
'Extension "{{name}}" installed successfully.': '擴展 "{{name}}" 安裝成功。',
'Failed to install extension from "{{source}}": {{error}}':
'從 "{{source}}" 安裝擴展失敗:{{error}}',
'Do you want to continue? [Y/n]: ': '是否繼續?[Y/n]:',
'Do you want to continue?': '是否繼續?',
'Installing extension "{{name}}".': '正在安裝擴展 "{{name}}"。',
'**Extensions may introduce unexpected behavior. Ensure you have investigated the extension source and trust the author.**':
'**擴展可能會引入意外行為。請確保您已調查過擴展源並信任作者。**',
'This extension will run the following MCP servers:':
'此擴展將運行以下 MCP servers:',
local: '本地',
remote: '遠程',
'This extension will add the following commands: {{commands}}.':
'此擴展將添加以下命令:{{commands}}。',
'This extension will append info to your QWEN.md context using {{fileName}}':
'此擴展將使用 {{fileName}} 向您的 QWEN.md 上下文追加信息',
'This extension will install the following skills:': '此擴展將安裝以下技能:',
'This extension will install the following subagents:':
'此擴展將安裝以下子智能體:',
'Installation cancelled for "{{name}}".': '已取消安裝 "{{name}}"。',
'You are installing an extension from {{originSource}}. Some features may not work perfectly with Qwen Code.':
'您正在安裝來自 {{originSource}} 的擴展。某些功能可能無法完美兼容 Qwen Code。',
'--ref and --auto-update are not applicable for marketplace extensions.':
'--ref 和 --auto-update 不適用於市場擴展。',
'Extension "{{name}}" installed successfully and enabled.':
'擴展 "{{name}}" 安裝成功並已啟用。',
'The github URL, local path, or marketplace source (marketplace-url:plugin-name) of the extension to install.':
'要安裝的擴展的 GitHub URL、本地路徑或市場源(marketplace-url:plugin-name)。',
'The git ref to install from.': '要安裝的 Git 引用。',
'Enable auto-update for this extension.': '為此擴展啟用自動更新。',
'Enable pre-release versions for this extension.': '為此擴展啟用預發佈版本。',
'Acknowledge the security risks of installing an extension and skip the confirmation prompt.':
'確認安裝擴展的安全風險並跳過確認提示。',
'The source argument must be provided.': '必須提供來源參數。',
'Extension "{{name}}" successfully uninstalled.':
'擴展 "{{name}}" 卸載成功。',
'Uninstalls an extension.': '卸載擴展。',
'The name or source path of the extension to uninstall.':
'要卸載的擴展的名稱或源路徑。',
'Please include the name of the extension to uninstall as a positional argument.':
'請將要卸載的擴展名稱作為位置參數。',
'Enables an extension.': '啟用擴展。',
'The name of the extension to enable.': '要啟用的擴展名稱。',
'The scope to enable the extenison in. If not set, will be enabled in all scopes.':
'啟用擴展的作用域。如果未設置,將在所有作用域中啟用。',
'Extension "{{name}}" successfully enabled for scope "{{scope}}".':
'擴展 "{{name}}" 已在作用域 "{{scope}}" 中啟用。',
'Extension "{{name}}" successfully enabled in all scopes.':
'擴展 "{{name}}" 已在所有作用域中啟用。',
'Invalid scope: {{scope}}. Please use one of {{scopes}}.':
'無效的作用域:{{scope}}。請使用 {{scopes}} 之一。',
'Disables an extension.': '禁用擴展。',
'The name of the extension to disable.': '要禁用的擴展名稱。',
'The scope to disable the extenison in.': '禁用擴展的作用域。',
'Extension "{{name}}" successfully disabled for scope "{{scope}}".':
'擴展 "{{name}}" 已在作用域 "{{scope}}" 中禁用。',
'Extension "{{name}}" successfully updated: {{oldVersion}} → {{newVersion}}.':
'擴展 "{{name}}" 更新成功:{{oldVersion}} → {{newVersion}}。',
'Unable to install extension "{{name}}" due to missing install metadata':
'由於缺少安裝元數據,無法安裝擴展 "{{name}}"',
'Extension "{{name}}" is already up to date.':
'擴展 "{{name}}" 已是最新版本。',
'Updates all extensions or a named extension to the latest version.':
'將所有擴展或指定擴展更新到最新版本。',
'Update all extensions.': '更新所有擴展。',
'The name of the extension to update.': '要更新的擴展名稱。',
'Either an extension name or --all must be provided':
'必須提供擴展名稱或 --all',
'Lists installed extensions.': '列出已安裝的擴展。',
'Path:': '路徑:',
'Source:': '來源:',
'Type:': '類型:',
'Ref:': '引用:',
'Release tag:': '發佈標籤:',
'Enabled (User):': '已啟用(用戶):',
'Enabled (Workspace):': '已啟用(工作區):',
'Context files:': '上下文檔案:',
'Skills:': '技能:',
'Agents:': '智能體:',
'MCP servers:': 'MCP servers:',
'Link extension failed to install.': '連結擴展安裝失敗。',
'Extension "{{name}}" linked successfully and enabled.':
'擴展 "{{name}}" 連結成功並已啟用。',
'Links an extension from a local path. Updates made to the local path will always be reflected.':
'從本地路徑連結擴展。對本地路徑的更新將始終反映。',
'The name of the extension to link.': '要連結的擴展名稱。',
'Set a specific setting for an extension.': '為擴展設置特定配置。',
'Name of the extension to configure.': '要配置的擴展名稱。',
'The setting to configure (name or env var).':
'要配置的設置(名稱或環境變量)。',
'The scope to set the setting in.': '設置配置的作用域。',
'List all settings for an extension.': '列出擴展的所有設置。',
'Name of the extension.': '擴展名稱。',
'Extension "{{name}}" has no settings to configure.':
'擴展 "{{name}}" 沒有可配置的設置。',
'Settings for "{{name}}":': '"{{name}}" 的設置:',
'(workspace)': '(工作區)',
'(user)': '(用戶)',
'[not set]': '[未設置]',
'[value stored in keychain]': '[值存儲在鑰匙串中]',
'Value:': '值:',
'Manage extension settings.': '管理擴展設置。',
'You need to specify a command (set or list).':
'您需要指定命令(set 或 list)。',
'No plugins available in this marketplace.': '此市場中沒有可用的插件。',
'Select a plugin to install from marketplace "{{name}}":':
'從市場 "{{name}}" 中選擇要安裝的插件:',
'Plugin selection cancelled.': '插件選擇已取消。',
'Select a plugin from "{{name}}"': '從 "{{name}}" 中選擇插件',
'Use ↑↓ or j/k to navigate, Enter to select, Escape to cancel':
'使用 ↑↓ 或 j/k 導航,Enter 選擇,Escape 取消',
'{{count}} more above': '上方還有 {{count}} 項',
'{{count}} more below': '下方還有 {{count}} 項',
'manage IDE integration': '管理 IDE 集成',
'check status of IDE integration': '檢查 IDE 集成狀態',
'install required IDE companion for {{ideName}}':
'安裝 {{ideName}} 所需的 IDE 配套工具',
'enable IDE integration': '啟用 IDE 集成',
'disable IDE integration': '禁用 IDE 集成',
'IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.':
'您當前環境不支持 IDE 集成。要使用此功能,請在以下支持的 IDE 之一中運行 Qwen Code:VS Code 或 VS Code 分支版本。',
'Set up GitHub Actions': '設置 GitHub Actions',
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
'配置終端按鍵綁定以支持多行輸入(VS Code、Cursor、Windsurf、Trae)',
'Please restart your terminal for the changes to take effect.':
'請重啟終端以使更改生效。',
'Failed to configure terminal: {{error}}': '配置終端失敗:{{error}}',
'Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.':
'無法確定 {{terminalName}} 在 Windows 上的配置路徑:未設置 APPDATA 環境變量。',
'{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.':
'{{terminalName}} keybindings.json 存在但不是有效的 JSON 數組。請手動修復檔案或刪除它以允許自動配置。',
'File: {{file}}': '檔案:{{file}}',
'Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.':
'解析 {{terminalName}} keybindings.json 失敗。檔案包含無效的 JSON。請手動修復檔案或刪除它以允許自動配置。',
'Error: {{error}}': '錯誤:{{error}}',
'Shift+Enter binding already exists': 'Shift+Enter 綁定已存在',
'Ctrl+Enter binding already exists': 'Ctrl+Enter 綁定已存在',
'Existing keybindings detected. Will not modify to avoid conflicts.':
'檢測到現有按鍵綁定。為避免衝突,不會修改。',
'Please check and modify manually if needed: {{file}}':
'如有需要,請手動檢查並修改:{{file}}',
'Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.':
'已為 {{terminalName}} 添加 Shift+Enter 和 Ctrl+Enter 按鍵綁定。',
'Modified: {{file}}': '已修改:{{file}}',
'{{terminalName}} keybindings already configured.':
'{{terminalName}} 按鍵綁定已配置。',
'Failed to configure {{terminalName}}.': '配置 {{terminalName}} 失敗。',
'Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).':
'您的終端已配置為支持多行輸入(Shift+Enter 和 Ctrl+Enter)的最佳體驗。',
'Manage Qwen Code hooks': '管理 Qwen Code Hook',
'List all configured hooks': '列出所有已配置的 Hook',
Hooks: 'Hook',
'Loading hooks...': '正在加載 Hook...',
'Error loading hooks:': '加載 Hook 出錯:',
'Press Escape to close': '按 Escape 關閉',
'Press Escape, Ctrl+C, or Ctrl+D to cancel':
'按 Escape、Ctrl+C 或 Ctrl+D 取消',
'Press Space, Enter, or Escape to dismiss': '按 Space、Enter 或 Escape 關閉',
'No hook selected': '未選擇 Hook',
'No hook events found.': '未找到 Hook 事件。',
'{{count}} hook configured': '{{count}} 個 Hook 已配置',
'{{count}} hooks configured': '{{count}} 個 Hook 已配置',
'This menu is read-only. To add or modify hooks, edit settings.json directly or ask Qwen Code.':
'此選單為只讀。要添加或修改 Hook,請直接編輯 settings.json 或詢問 Qwen Code。',
'Enter to select · Esc to cancel': 'Enter 選擇 · Esc 取消',
'Exit codes:': '退出碼:',
'Configured hooks:': '已配置的 Hook:',
'No hooks configured for this event.': '此事件未配置 Hook。',
'To add hooks, edit settings.json directly or ask Qwen.':
'要添加 Hook,請直接編輯 settings.json 或詢問 Qwen。',
'Enter to select · Esc to go back': 'Enter 選擇 · Esc 返回',
'Hook details': 'Hook 詳情',
'Event:': '事件:',
'Extension:': '擴展:',
'Desc:': '描述:',
'No hook config selected': '未選擇 Hook 配置',
'To modify or remove this hook, edit settings.json directly or ask Qwen to help.':
'要修改或刪除此 Hook,請直接編輯 settings.json 或詢問 Qwen。',
'Hook Configuration - Disabled': 'Hook 配置 - 已禁用',
'All hooks are currently disabled. You have {{count}} that are not running.':
'所有 Hook 當前已禁用。您有 {{count}} 未運行。',
'{{count}} configured hook': '{{count}} 個已配置的 Hook',
'{{count}} configured hooks': '{{count}} 個已配置的 Hook',
'When hooks are disabled:': '當 Hook 被禁用時:',
'No hook commands will execute': '不會執行任何 Hook 命令',
'StatusLine will not be displayed': '不會顯示狀態欄',
'Tool operations will proceed without hook validation':
'工具操作將在沒有 Hook 驗證的情況下繼續',
'To re-enable hooks, remove "disableAllHooks" from settings.json or ask Qwen Code.':
'要重新啟用 Hook,請從 settings.json 中刪除 "disableAllHooks" 或詢問 Qwen Code。',
Project: '項目',
User: '用戶',
Skill: '技能',
System: '系統',
Extension: '擴展',
'Local Settings': '本地設置',
'User Settings': '用戶設置',
'System Settings': '系統設置',
Extensions: '擴展',
'Session (temporary)': '會話(臨時)',
'Before tool execution': '工具執行前',
'After tool execution': '工具執行後',
'After tool execution fails': '工具執行失敗後',
'When notifications are sent': '發送通知時',
'When the user submits a prompt': '用戶提交提示時',
'When a new session is started': '新會話開始時',
'Right before Qwen Code concludes its response': 'Qwen Code 結束響應之前',
'When a subagent (Agent tool call) is started':
'子智能體(Agent 工具調用)啟動時',
'Right before a subagent concludes its response': '子智能體結束響應之前',
'Before conversation compaction': '對話壓縮前',
'When a session is ending': '會話結束時',
'When a permission dialog is displayed': '顯示權限對話框時',
'Input to command is JSON of tool call arguments.':
'命令輸入為工具調用參數的 JSON。',
'Input to command is JSON with fields "inputs" (tool call arguments) and "response" (tool call response).':
'命令輸入為包含 "inputs"(工具調用參數)和 "response"(工具調用響應)字段的 JSON。',
'Input to command is JSON with tool_name, tool_input, tool_use_id, error, error_type, is_interrupt, and is_timeout.':
'命令輸入為包含 tool_name、tool_input、tool_use_id、error、error_type、is_interrupt 和 is_timeout 的 JSON。',
'Input to command is JSON with notification message and type.':
'命令輸入為包含通知消息和類型的 JSON。',
'Input to command is JSON with original user prompt text.':
'命令輸入為包含原始用戶提示文本的 JSON。',
'Input to command is JSON with session start source.':
'命令輸入為包含會話啟動來源的 JSON。',
'Input to command is JSON with session end reason.':
'命令輸入為包含會話結束原因的 JSON。',
'Input to command is JSON with agent_id and agent_type.':
'命令輸入為包含 agent_id 和 agent_type 的 JSON。',
'Input to command is JSON with agent_id, agent_type, and agent_transcript_path.':
'命令輸入為包含 agent_id、agent_type 和 agent_transcript_path 的 JSON。',
'Input to command is JSON with compaction details.':
'命令輸入為包含壓縮詳情的 JSON。',
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
'命令輸入為包含 tool_name、tool_input 和 tool_use_id 的 JSON。輸出包含 hookSpecificOutput 的 JSON,其中包含允許或拒絕的決定。',
'stdout/stderr not shown': 'stdout/stderr 不顯示',
'show stderr to model and continue conversation':
'向模型顯示 stderr 並繼續對話',
'show stderr to user only': '僅向用戶顯示 stderr',
'stdout shown in transcript mode (ctrl+o)': 'stdout 以轉錄模式顯示 (ctrl+o)',
'show stderr to model immediately': '立即向模型顯示 stderr',
'show stderr to user only but continue with tool call':
'僅向用戶顯示 stderr 但繼續工具調用',
'block processing, erase original prompt, and show stderr to user only':
'阻止處理,擦除原始提示,僅向用戶顯示 stderr',
'stdout shown to Qwen': '向 Qwen 顯示 stdout',
'show stderr to user only (blocking errors ignored)':
'僅向用戶顯示 stderr(忽略阻塞錯誤)',
'command completes successfully': '命令成功完成',
'stdout shown to subagent': '向子智能體顯示 stdout',
'show stderr to subagent and continue having it run':
'向子智能體顯示 stderr 並繼續運行',
'stdout appended as custom compact instructions':
'stdout 作為自定義壓縮指令追加',
'block compaction': '阻止壓縮',
'show stderr to user only but continue with compaction':
'僅向用戶顯示 stderr 但繼續壓縮',
'use hook decision if provided': '如果提供則使用 Hook 決定',
'Config not loaded.': '配置未加載。',
'Hooks are not enabled. Enable hooks in settings to use this feature.':
'Hook 未啟用。請在設置中啟用 Hook 以使用此功能。',
'Export current session message history to a file':
'將當前會話的消息記錄導出到檔案',
'Export session to HTML format': '將會話導出為 HTML 檔案',
'Export session to JSON format': '將會話導出為 JSON 檔案',
'Export session to JSONL format (one message per line)':
'將會話導出為 JSONL 檔案(每行一條消息)',
'Export session to markdown format': '將會話導出為 Markdown 檔案',
'generate personalized programming insights from your chat history':
'根據你的聊天記錄生成個性化編程洞察',
'Resume a previous session': '恢復先前會話',
'Fork the current conversation into a new session': '將目前對話分支到新會話',
'Cannot branch while a response or tool call is in progress. Wait for it to finish or resolve the pending tool call.':
'回應或工具呼叫正在進行時無法分支。請等待其完成或處理待確認的工具呼叫。',
'No conversation to branch.': '沒有可分支的對話。',
'Restore a tool call. This will reset the conversation and file history to the state it was in when the tool call was suggested':
'恢復某次工具調用。這將把對話與檔案歷史重置到提出該工具調用建議時的狀態',
'Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.':
'無法檢測終端類型。支持的終端:VS Code、Cursor、Windsurf 和 Trae。',
'Terminal "{{terminal}}" is not supported yet.':
'終端 "{{terminal}}" 尚未支持。',
'Invalid language. Available: {{options}}':
'無效的語言。可用選項:{{options}}',
'Language subcommands do not accept additional arguments.':
'語言子命令不接受額外參數',
'Current UI language: {{lang}}': '當前 UI 語言:{{lang}}',
'Current LLM output language: {{lang}}': '當前 LLM 輸出語言:{{lang}}',
'Set UI language': '設置 UI 語言',
'Set LLM output language': '設置 LLM 輸出語言',
'Usage: /language ui [{{options}}]': '用法:/language ui [{{options}}]',
'Usage: /language output <language>': '用法:/language output <語言>',
'Example: /language output 中文': '示例:/language output 中文',
'Example: /language output English': '示例:/language output English',
'Example: /language output 日本語': '示例:/language output 日本語',
'UI language changed to {{lang}}': 'UI 語言已更改為 {{lang}}',
'LLM output language set to {{lang}}': 'LLM 輸出語言已設置為 {{lang}}',
'Please restart the application for the changes to take effect.':
'請重啟應用程序以使更改生效。',
'Failed to generate LLM output language rule file: {{error}}':
'生成 LLM 輸出語言規則檔案失敗:{{error}}',
'Invalid command. Available subcommands:': '無效的命令。可用的子命令:',
'Available subcommands:': '可用的子命令:',
'To request additional UI language packs, please open an issue on GitHub.':
'如需請求其他 UI 語言包,請在 GitHub 上提交 issue',
'Available options:': '可用選項:',
'Set UI language to {{name}}': '將 UI 語言設置為 {{name}}',
'Tool Approval Mode': '工具審批模式',
'{{mode}} mode': '{{mode}} 模式',
'Analyze only, do not modify files or execute commands':
'僅分析,不修改檔案或執行命令',
'Require approval for file edits or shell commands':
'需要批准檔案編輯或 shell 命令',
'Automatically approve file edits': '自動批准檔案編輯',
'Automatically approve all tools': '自動批准所有工具',
'Workspace approval mode exists and takes priority. User-level change will have no effect.':
'工作區審批模式已存在並具有優先級。用戶級別的更改將無效。',
'Apply To': '應用於',
'Workspace Settings': '工作區設置',
'Open auto-memory folder': '打開自動記憶檔案夾',
'Auto-memory: {{status}}': '自動記憶:{{status}}',
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
'自動整理:{{status}} · {{lastDream}} · /dream 立即運行',
'Auto-skill: {{status}}': '自動技能:{{status}}',
never: '從未',
on: '開',
off: '關',
'Remove matching entries from managed auto-memory.':
'從託管自動記憶中刪除匹配的條目。',
'Usage: /forget <memory text to remove>': '用法:/forget <要刪除的記憶文本>',
'No managed auto-memory entries matched: {{query}}':
'沒有匹配的託管自動記憶條目:{{query}}',
'Consolidate managed auto-memory topic files.': '整理託管自動記憶主題檔案',
'Open MCP management dialog': '打開 MCP 管理對話框',
'Could not retrieve tool registry.': '無法檢索工具註冊表',
"Successfully authenticated and refreshed tools for '{{name}}'.":
"成功認證並刷新了 '{{name}}' 的工具",
"Re-discovering tools from '{{name}}'...":
"正在重新發現 '{{name}}' 的工具...",
"Discovered {{count}} tool(s) from '{{name}}'.":
"從 '{{name}}' 發現了 {{count}} 個工具。",
'Authentication complete. Returning to server details...':
'認證完成,正在返回伺服器詳情...',
'Authentication successful.': '認證成功。',
'Manage MCP servers': '管理 MCP servers',
'Server Detail': '伺服器詳情',
Tools: '工具',
'Tool Detail': '工具詳情',
'Loading...': '加載中...',
'Unknown step': '未知步驟',
'Esc to back': 'Esc 返回',
'↑↓ to navigate · Enter to select · Esc to close':
'↑↓ 導航 · Enter 選擇 · Esc 關閉',
'↑↓ to navigate · Enter to select · Esc to back':
'↑↓ 導航 · Enter 選擇 · Esc 返回',
'↑↓ to navigate · Enter to confirm · Esc to back':
'↑↓ 導航 · Enter 確認 · Esc 返回',
'User Settings (global)': '用戶設置(全局)',
'Workspace Settings (project-specific)': '工作區設置(項目級)',
'Disable server:': '禁用伺服器:',
'Select where to add the server to the exclude list:':
'選擇將伺服器添加到排除列表的位置:',
'Press Enter to confirm, Esc to cancel': '按 Enter 確認,Esc 取消',
'View tools': '查看工具',
Reconnect: '重新連接',
Enable: '啟用',
Disable: '禁用',
Authenticate: '認證',
'Re-authenticate': '重新認證',
'Clear Authentication': '清空認證',
'Server:': '伺服器:',
'Command:': '命令:',
'Working Directory:': '工作目錄:',
'No server selected': '未選擇伺服器',
prompts: '提示詞',
'Error:': '錯誤:',
tool: '工具',
tools: '個工具',
connected: '已連接',
connecting: '連接中',
disconnected: '已斷開',
'User MCPs': '用戶 MCP',
'Project MCPs': '項目 MCP',
'Extension MCPs': '擴展 MCP',
server: '個伺服器',
servers: '個伺服器',
'Add MCP servers to your settings to get started.':
'請在設置中添加 MCP servers 以開始使用。',
'Run qwen --debug to see error logs': '運行 qwen --debug 查看錯誤日誌',
'OAuth Authentication': 'OAuth 認證',
'Authenticating... Please complete the login in your browser.':
'認證中... 請在瀏覽器中完成登錄。',
'Press c to copy the authorization URL to your clipboard.':
'按 c 複製授權 URL 到剪貼板。',
'Copy request sent to your terminal. If paste is empty, copy the URL above manually.':
'已向終端發送複製請求;若粘貼為空,請手動複製上方 URL。',
'Cannot write to terminal — copy the URL above manually.':
'無法寫入終端,請手動複製上方 URL。',
'No tools available for this server.': '此伺服器沒有可用工具。',
destructive: '破壞性',
'read-only': '只讀',
'open-world': '開放世界',
idempotent: '冪等',
'Tools for {{serverName}}': '{{serverName}} 的工具',
'{{current}}/{{total}}': '{{current}}/{{total}}',
required: '必填',
Parameters: '參數',
'No tool selected': '未選擇工具',
Server: '伺服器',
'{{count}} invalid tools': '{{count}} 個無效工具',
invalid: '無效',
'invalid: {{reason}}': '無效:{{reason}}',
'missing name': '缺少名稱',
'missing description': '缺少描述',
'(unnamed)': '(未命名)',
'Warning: This tool cannot be called by the LLM':
'警告:此工具無法被 LLM 調用',
Reason: '原因',
'Tools must have both name and description to be used by the LLM.':
'工具必須同時具有名稱和描述才能被 LLM 使用。',
'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md':
'生成項目摘要並保存到 .qwen/PROJECT_SUMMARY.md',
'No chat client available to generate summary.':
'沒有可用的聊天客戶端來生成摘要',
'Already generating summary, wait for previous request to complete':
'正在生成摘要,請等待上一個請求完成',
'No conversation found to summarize.': '未找到要總結的對話',
'Failed to generate project context summary: {{error}}':
'生成項目上下文摘要失敗:{{error}}',
'Saved project summary to {{filePathForDisplay}}.':
'項目摘要已保存到 {{filePathForDisplay}}',
'Saving project summary...': '正在保存項目摘要...',
'Generating project summary...': '正在生成項目摘要...',
'Processing summary...': '正在處理摘要...',
'Project summary generated and saved successfully!':
'項目摘要已生成並成功保存!',
'Saved to: {{filePath}}': '儲存至:{{filePath}}',
'Failed to generate summary - no text content received from LLM response':
'生成摘要失敗 - 未從 LLM 響應中接收到文本內容',
'Switch the model for this session (--fast for suggestion model, [model-id] to switch immediately).':
'切換此會話的模型(--fast 可設置建議模型)',
'Set a lighter model for prompt suggestions and speculative execution':
'設置用於輸入建議和推測執行的輕量模型',
'Content generator configuration not available.': '內容生成器配置不可用',
'Authentication type not available.': '認證類型不可用',
'No models available for the current authentication type ({{authType}}).':
'當前認證類型 ({{authType}}) 沒有可用的模型',
// Needs translation
'Starting a new session, resetting chat, and clearing terminal.':
'正在開始新會話,重置聊天並清屏。',
'Starting a new session and clearing.': '正在開始新會話並清屏。',
'Already compressing, wait for previous request to complete':
'正在壓縮中,請等待上一個請求完成',
'Failed to compress chat history.': '壓縮聊天歷史失敗',
'Failed to compress chat history: {{error}}': '壓縮聊天歷史失敗:{{error}}',
'Compressing chat history': '正在壓縮聊天歷史',
'Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.':
'聊天歷史已從 {{originalTokens}} 個 token 壓縮到 {{newTokens}} 個 token。',
'Compression was not beneficial for this history size.':
'對於此歷史記錄大小,壓縮沒有益處。',
'Chat history compression did not reduce size. This may indicate issues with the compression prompt.':
'聊天歷史壓縮未能減小大小。這可能表明壓縮提示存在問題。',
'Could not compress chat history due to a token counting error.':
'由於 token 計數錯誤,無法壓縮聊天歷史。',
'Configuration is not available.': '配置不可用。',
'Please provide at least one path to add.': '請提供至少一個要添加的路徑。',
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
'/directory add 命令在限制性沙箱配置檔案中不受支持。請改為在啟動會話時使用 --include-directories。',
"Error adding '{{path}}': {{error}}": "添加 '{{path}}' 時出錯:{{error}}",
'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}':
'如果存在,已成功從以下目錄添加 QWEN.md 檔案:\n- {{directories}}',
'Error refreshing memory: {{error}}': '刷新內存時出錯:{{error}}',
'Successfully added directories:\n- {{directories}}':
'成功添加目錄:\n- {{directories}}',
'Current workspace directories:\n{{directories}}':
'當前工作區目錄:\n{{directories}}',
'Please open the following URL in your browser to view the documentation:\n{{url}}':
'請在瀏覽器中打開以下 URL 以查看文檔:\n{{url}}',
'Opening documentation in your browser: {{url}}':
'正在瀏覽器中打開文檔:{{url}}',
'Do you want to proceed?': '是否繼續?',
'Yes, allow once': '是,允許一次',
'Allow always': '總是允許',
Yes: '是',
No: '否',
'No (esc)': '否 (esc)',
'Modify in progress:': '正在修改:',
'Save and close external editor to continue': '保存並關閉外部編輯器以繼續',
'Apply this change?': '是否應用此更改?',
'Yes, allow always': '是,總是允許',
'Modify with external editor': '使用外部編輯器修改',
'No, suggest changes (esc)': '否,建議更改 (esc)',
"Allow execution of: '{{command}}'?": "允許執行:'{{command}}'?",
'Always allow in this project': '在本項目中總是允許',
'Always allow {{action}} in this project': '在本項目中總是允許{{action}}',
'Always allow for this user': '對該用戶總是允許',
'Always allow {{action}} for this user': '對該用戶總是允許{{action}}',
'Yes, restore previous mode ({{mode}})': '是,恢復之前的模式 ({{mode}})',
'Yes, and auto-accept edits': '是,並自動接受編輯',
'Yes, and manually approve edits': '是,並手動批准編輯',
'No, keep planning (esc)': '否,繼續規劃 (esc)',
'URLs to fetch:': '要獲取的 URL:',
'MCP Server: {{server}}': 'MCP Server:{{server}}',
'Tool: {{tool}}': '工具:{{tool}}',
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?':
'允許執行來自 MCP server "{{server}}" 的 MCP tool "{{tool}}"?',
'Shell Command Execution': 'Shell 命令執行',
'A custom command wants to run the following shell commands:':
'自定義命令想要運行以下 shell 命令:',
'Current Plan:': '當前計劃:',
'Progress: {{done}}/{{total}} tasks completed':
'進度:已完成 {{done}}/{{total}} 個任務',
', {{inProgress}} in progress': ',{{inProgress}} 個進行中',
'Pending Tasks:': '待處理任務:',
'What would you like to do?': '您想要做什麼?',
'Choose how to proceed with your session:': '選擇如何繼續您的會話:',
'Start new chat session': '開始新的聊天會話',
'Continue previous conversation': '繼續之前的對話',
'👋 Welcome back! (Last updated: {{timeAgo}})':
'👋 歡迎回來!(最後更新:{{timeAgo}})',
'🎯 Overall Goal:': '🎯 總體目標:',
'Connect a Provider': '連接服務商',
'You must connect a provider to proceed. Press Ctrl+C again to exit.':
'必須連接一個服務商才能繼續。再次按 Ctrl+C 退出',
'Terms of Services and Privacy Notice': '服務條款和隱私聲明',
'Qwen OAuth': 'Qwen OAuth (免費)',
'Discontinued — switch to Coding Plan or API Key':
'已停用 — 請切換到 Coding Plan 或 API Key',
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
'Qwen OAuth 免費額度已於 2026-04-15 停用。請選擇 Coding Plan 或 API Key。',
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
'Qwen OAuth免費層已於2026-04-15停止服務。請選擇其他提供商的模型或運行 /auth 切換。',
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
'\n⚠ Qwen OAuth 免費額度已於 2026-04-15 停用。請選擇其他選項。\n',
'Paid · Up to 6,000 requests/5 hrs · All Alibaba Cloud Coding Plan Models':
'付費 · 每 5 小時最多 6,000 次請求 · 支持阿里雲百鍊 Coding Plan 全部模型',
'For teams · Paid · Up to 6,000 requests/5 hrs · All Alibaba Cloud Coding Plan Models':
'適合團隊 · 付費 · 每 5 小時最多 6,000 次請求 · 支援阿里雲百鍊 Coding Plan 全部模型',
'For individual developers · Pay per model call · 5-hour/weekly quotas':
'適合個人開發場景 · 按模型調用次數計費 · 每 5 小時/每週限額',
Subscribe: '訂閱計劃',
'Paid subscription plans from Alibaba Cloud ModelStudio':
'Alibaba Cloud ModelStudio 付費訂閱計劃',
'Select Subscription Plan': '選擇訂閱計劃',
'Alibaba Cloud Coding Plan': '阿里雲百鍊 Coding Plan',
'Alibaba Cloud Token Plan': '阿里雲百鍊 Token Plan',
'Pay-as-you-go tokens · Configure ModelStudio standard API key':
'按 Token 付費 · 配置 ModelStudio 標準 API Key',
'For individuals · Pay-as-you-go tokens · Dedicated Token Plan endpoint':
'適合個人 · 按 Token 付費 · 使用獨立 Token Plan Endpoint',
'For teams/companies · Credits deducted by token usage · Dedicated API key and base URL':
'適合一人公司/團隊/企業 · 按 Token 消耗抵扣 Credits · 專屬 API Key 和 Base URL',