-
Notifications
You must be signed in to change notification settings - Fork 513
Expand file tree
/
Copy pathzh-TW.json
More file actions
1824 lines (1824 loc) · 78.2 KB
/
Copy pathzh-TW.json
File metadata and controls
1824 lines (1824 loc) · 78.2 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
{
"app_auth_title": "需要身份驗證",
"app_auth_description": "此伺服器需要 auth token 才能訪問。請輸入伺服器控制臺或設置頁顯示的 token。",
"app_auth_placeholder": "粘貼 auth token",
"app_auth_authenticate": "驗證",
"app_auth_disconnect_reset": "斷開並重置",
"app_undo_session_deleted": "會話已刪除",
"app_undo_undo": "撤銷",
"nav_toggle_sidebar": "切換側邊欄",
"nav_toggle_sidebar_shortcut": "切換側邊欄 (b)",
"nav_close_sidebar": "關閉側邊欄",
"nav_resize_sidebar": "調整側邊欄大小",
"nav_home": "首頁",
"nav_primary": "主導航",
"nav_sessions": "會話",
"nav_token_usage": "Token 用量",
"nav_usage": "用量",
"nav_activity": "活動",
"nav_more_navigation": "更多導航",
"nav_more": "更多",
"nav_trends": "趨勢",
"nav_pinned": "已固定",
"nav_insights": "洞察",
"nav_trash": "回收站",
"nav_search_sessions": "搜索會話...",
"nav_search_sessions_shortcut": "搜索會話 ({shortcut})",
"header_transcript_normal_title": "普通 transcript - 顯示所有消息",
"header_transcript_normal_label": "普通 transcript 模式",
"header_transcript_normal": "普通",
"header_transcript_focused_title": "聚焦 transcript - 僅顯示用戶提示和最終回答",
"header_transcript_focused_label": "聚焦 transcript 模式",
"header_transcript_focused": "聚焦",
"header_transcript_filter_title": "篩選 block 類型",
"header_transcript_filter_label": "篩選 block 類型",
"header_transcript_visibility": "Block 可見性",
"header_transcript_show_all": "全部顯示",
"header_transcript_blocks_user": "用戶消息",
"header_transcript_blocks_assistant": "助手文本",
"header_transcript_blocks_thinking": "思考塊",
"header_transcript_blocks_tool": "工具調用",
"header_transcript_blocks_code": "代碼塊",
"header_actions_follow_latest": "跟隨最新消息",
"header_actions_toggle_sort": "切換排序 (o)",
"header_actions_cycle_layout": "切換布局:{layout} (l)",
"header_actions_cycle_layout_label": "切換消息布局",
"header_actions_export_options": "導出會話選項",
"header_actions_export_session": "導出會話",
"header_actions_download_html": "下載 HTML 導出",
"header_actions_copied_markdown_link": "已複製 Markdown 連結",
"header_actions_copy_markdown_link": "複製 Markdown 導出連結",
"header_actions_copy_source_path": "複製源文件路徑",
"header_actions_publish_title": "發布到 Gist (p)",
"header_actions_publish_label": "發布到 Gist",
"header_actions_publish_public": "發布公開 Gist",
"header_actions_publish_secret": "發布私密 Gist",
"header_actions_more_actions": "更多操作",
"header_actions_layout": "布局:{layout}",
"header_actions_refresh_data": "刷新數據",
"header_actions_refresh_data_shortcut": "刷新數據 (r)",
"header_actions_sync_sessions": "同步會話",
"header_actions_sync_sessions_shortcut": "同步會話 (r)",
"header_actions_refresh": "刷新",
"header_actions_sync": "同步",
"header_actions_import_unavailable": "只讀模式下無法導入",
"header_actions_import_conversations": "導入對話",
"header_actions_import": "導入",
"header_actions_toggle_theme": "切換主題",
"header_actions_settings": "設置",
"header_actions_keyboard_shortcuts": "鍵盤快捷鍵",
"header_actions_keyboard_shortcuts_shortcut": "鍵盤快捷鍵 (?)",
"status_bar_sessions": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 個會話"
}
}
],
"status_bar_messages": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 條消息"
}
}
],
"status_bar_projects": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 個項目"
}
}
],
"status_bar_open_performance_debug": "打開性能調試",
"status_bar_perf": "性能",
"status_bar_remote_unreachable_title": "無法連接遠程伺服器。打開設置檢查 URL、token 或斷開連接。",
"status_bar_remote_unreachable": "遠程伺服器不可達",
"status_bar_sync_not_ready": "同步未就緒",
"status_bar_zoom_out": "縮小 ({shortcut} -)",
"status_bar_reset_zoom": "重置縮放 ({shortcut} 0)",
"status_bar_zoom_in": "放大 ({shortcut} +)",
"status_bar_update_available_title": "有新版本可用:{version}",
"status_bar_update_available": "有可用更新",
"status_bar_version_mismatch_title": "前端和後端版本不同。點擊重新加載。",
"status_bar_version_mismatch": "版本不一致 - 重新加載",
"status_bar_scanning": "正在掃描 {project}...",
"status_bar_syncing_percent": "正在同步 {percent}% ({done}/{total})",
"status_bar_syncing": "正在同步...",
"status_bar_synced_ago": "已同步 {time}",
"status_bar_build": "Build: {commit}",
"command_palette_placeholder": "搜索會話和消息...",
"command_palette_search_mode_label": "搜尋模式",
"command_palette_mode_fulltext": "全文",
"command_palette_mode_semantic": "語意",
"command_palette_mode_hybrid": "混合",
"command_palette_search_error": "搜尋無法使用",
"command_palette_search_failed": "搜尋失敗。請再試一次。",
"command_palette_semantic_setup_title": "語意搜尋尚未設定",
"command_palette_semantic_setup_config_step": "1. 在 config.toml 中新增 [vector] 區段,並依你的嵌入伺服器調整模型與端點(任何相容 OpenAI 的端點皆可,例如 Ollama):",
"command_palette_semantic_setup_build_step": "2. 重新啟動常駐程式,然後建置索引:",
"command_palette_semantic_copy_config": "複製設定片段",
"command_palette_semantic_copy_command": "複製指令",
"command_palette_semantic_copied": "已複製!",
"command_palette_semantic_disabled_title": "語意搜尋已停用",
"command_palette_semantic_ready_title": "語意索引尚未建置",
"command_palette_semantic_ready_intro": "語意搜尋已設定完成,但尚未為此封存建置嵌入索引。",
"command_palette_semantic_build_button": "建置嵌入",
"command_palette_semantic_build_hint": "建置會在伺服器背景執行;完成後將自動重新執行此搜尋。",
"command_palette_semantic_building_title": "正在建置嵌入索引...",
"command_palette_semantic_building_scanning": "正在掃描封存...",
"command_palette_semantic_building_progress": "已嵌入 {percentLabel}",
"command_palette_semantic_failed_title": "嵌入建置失敗",
"command_palette_search_timeout_title": "搜尋耗時過長",
"command_palette_search_timeout_detail": "請再試一次。嵌入模型預熱時,首次語意或混合搜尋可能會較慢。",
"command_palette_relevance": "相關性",
"command_palette_recency": "最近",
"command_palette_searching": "正在搜索...",
"command_palette_no_results": "無結果",
"command_palette_copy_session_id": "複製會話 ID",
"command_palette_recent_sessions": "最近會話",
"session_breadcrumb_back_to_sessions": "返回會話列表",
"session_breadcrumb_sessions": "會話",
"session_breadcrumb_session_health": "會話健康度",
"session_breadcrumb_resume_session_in_terminal": "在終端繼續會話",
"session_breadcrumb_session_actions": "會話操作",
"session_breadcrumb_resume_session": "繼續會話",
"session_breadcrumb_resume": "繼續",
"session_breadcrumb_open": "打開",
"session_breadcrumb_default_terminal": "默認終端",
"session_breadcrumb_copy_command": "複製命令",
"session_breadcrumb_copy_directory_path": "複製目錄路徑",
"session_breadcrumb_open_in": "打開方式",
"session_breadcrumb_copy_session_id": "複製會話 ID",
"session_breadcrumb_copy_session_id_value": "複製會話 ID:{id}",
"session_breadcrumb_copied": "已複製!",
"session_breadcrumb_estimated_session_cost": "預估會話成本",
"session_breadcrumb_total_cost": "總計",
"session_breadcrumb_total_cost_title": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "包含 {countLabel} 個子代理的總成本",
"countPlural=other": "包含 {countLabel} 個子代理的總成本"
}
}
],
"session_breadcrumb_usage_breakdown_title": "會話用量明細",
"session_breadcrumb_usage_breakdown_loading": "正在載入用量數據...",
"session_breadcrumb_usage_breakdown_steps": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": ["countPlural"],
"match": {
"countPlural=other": "{countLabel} 個步驟"
}
}
],
"session_breadcrumb_copy_link_to_session": "複製會話連結",
"session_breadcrumb_show_session_analysis": "顯示會話分析",
"session_breadcrumb_hide_session_analysis": "隱藏會話分析",
"session_breadcrumb_find_in_session": "在會話中查找",
"session_breadcrumb_find_in_session_shortcut": "在會話中查找 (/)",
"session_breadcrumb_rename": "重命名",
"session_breadcrumb_delete": "刪除",
"session_breadcrumb_resumed_in": "已在 {target} 中繼續",
"session_breadcrumb_command_copied": "命令已複製!",
"session_breadcrumb_failed": "失敗",
"session_breadcrumb_not_supported": "不支持",
"session_breadcrumb_no_path_available": "無可用路徑",
"session_breadcrumb_path_copied": "路徑已複製!",
"session_breadcrumb_opened_in": "已在 {target} 中打開",
"session_breadcrumb_failed_to_open": "打開失敗",
"session_breadcrumb_open_in_codex_desktop": "在 Codex Desktop 中打開",
"session_breadcrumb_open_in_claude_code": "在 Claude Code 中打開",
"session_breadcrumb_summary_mode": "摘要模式",
"session_breadcrumb_summary_mode_tooltip": "此 transcript 缺少工具結果、思考內容和代碼差異。需要 agy-reader sidecar 才能獲得完整保真度 — 請安裝它,若已安裝,請等待其同步完成。點擊了解如何操作。",
"session_breadcrumb_malformed_lines": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{count} 行格式錯誤"
}
}
],
"session_breadcrumb_malformed_lines_tooltip": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "源文件中有 {count} 行無法解析"
}
}
],
"session_breadcrumb_antigravity_decode_confidence_low": "未識別架構",
"session_breadcrumb_antigravity_decode_confidence_low_tooltip": "此會話來自無法識別的(較新版本)Antigravity 建置。解碼為啟發式推斷,可能不完整或有誤。",
"session_find_find_in_session": "在會話中查找",
"session_find_placeholder": "在會話中查找...",
"session_find_search_query": "搜索關鍵詞",
"session_find_no_results": "無結果",
"session_find_match_count": "{current}/{total}",
"session_find_previous_match_title": "上一個匹配項 (⇧ ↩)",
"session_find_previous_match": "上一個匹配項",
"session_find_next_match_title": "下一個匹配項 (↩)",
"session_find_next_match": "下一個匹配項",
"session_find_close_title": "關閉 (⎋)",
"session_find_close": "關閉查找欄",
"message_list_empty": "選擇一個會話查看消息",
"message_list_loading": "正在加載消息...",
"read_progress_boundary": "閱讀進度邊界",
"read_progress_new_messages": "新訊息",
"read_progress_earlier_messages": "較早訊息",
"read_progress_unread_messages": "未讀訊息",
"code_block_copy_code_block": "複製代碼塊",
"code_block_copied_code_block": "代碼塊已複製",
"code_block_copy_code": "複製代碼",
"code_block_copied": "已複製!",
"message_content_role_assistant": "助手",
"message_content_role_agent": "Agent",
"message_content_role_teammate": "隊友",
"message_content_role_user": "用戶",
"message_content_copy_message": "複製消息",
"message_content_copied_message": "消息已複製",
"message_content_copied": "已複製!",
"message_content_unpin_message": "取消固定消息",
"message_content_pin_message": "固定消息",
"message_content_unpinned": "已取消固定",
"message_content_pinned": "已固定",
"message_content_running_duration": "運行中 {duration}+",
"message_content_turn_summary": [
{
"declarations": [
"input count",
"input duration",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "turn {duration} · {count} 次調用"
}
}
],
"message_content_running_turn_summary": [
{
"declarations": [
"input count",
"input duration",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "運行中 {duration}+ · {count} 次調用"
}
}
],
"tool_call_group_call_count": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{count} 次 tool call"
}
}
],
"tool_call_group_copy_tool_calls": "複製 tool calls",
"tool_call_group_copied_tool_calls": "Tool calls 已複製",
"tool_call_group_copied": "已複製!",
"tool_call_group_running_duration": "運行中 {duration}+",
"parallel_group_label": "並行",
"parallel_group_call_count": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{count} 次調用"
}
}
],
"parallel_group_each_duration": "每個 ≤ {duration}",
"parallel_group_running": "運行中...",
"subagent_inline_label": "Subagent 會話",
"subagent_inline_message_count": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{count} 條消息"
}
}
],
"subagent_inline_open_as_full_session": "作為完整會話打開",
"subagent_inline_open_session": "打開會話",
"subagent_inline_failed_to_load": "加載失敗",
"subagent_inline_loading": "正在加載...",
"subagent_inline_no_messages": "無消息",
"skill_block_label": "技能:{name}",
"tool_block_copy_input": "複製輸入",
"tool_block_copied_input": "已複製輸入",
"tool_block_copy_output": "複製輸出",
"tool_block_copied_output": "已複製輸出",
"tool_block_output": "輸出",
"tool_block_history": "歷史",
"tool_block_status_label": "狀態:",
"tool_block_source_label": "來源:",
"tool_block_agent_label": "agent:",
"tool_block_show_less": "收起",
"tool_block_show_all_lines": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "顯示全部 {count} 行"
}
}
],
"thinking_block_label": "思考",
"compact_boundary_title": "上下文窗口在此處被壓縮",
"compact_boundary_label": "上下文已壓縮",
"compact_boundary_show_full_summary": "顯示完整摘要",
"sidebar_session_count": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 個會話"
}
}
],
"sidebar_loading": "加載中",
"sidebar_multi_select": "多選",
"sidebar_exit_multi_select": "退出多選",
"sidebar_select_all_visible": "選擇所有可見會話",
"sidebar_clear_selection": "清除選擇",
"sidebar_batch_clear": "清除",
"sidebar_batch_all": "全部",
"sidebar_selected_count": "已選擇 {countLabel} 個",
"sidebar_move_selected_to_trash": "將選中的會話移至回收站",
"sidebar_deleting": "正在刪除...",
"sidebar_delete": "刪除",
"sidebar_cancel": "取消",
"sidebar_status": "狀態",
"sidebar_active": "活躍",
"sidebar_active_title": "10 分鐘內有活動",
"sidebar_stale": "閒置",
"sidebar_stale_title": "已標記會話,閒置 10 分鐘到 1 小時",
"sidebar_unclean": "異常終止",
"sidebar_unclean_title": "Tool call 中途終止(閒置超過 1 小時)",
"sidebar_expand_group": "展開 {name} 分組",
"sidebar_collapse_group": "摺疊 {name} 分組",
"sidebar_subagents": "Subagents",
"sidebar_team": "Team",
"sidebar_filters_filter_sessions": "篩選會話",
"sidebar_filters_filters": "篩選器",
"sidebar_filters_display": "顯示",
"sidebar_filters_group_by_agent": "按 agent 分組",
"sidebar_filters_group_by_project": "按項目分組",
"sidebar_filters_starred": "已固定",
"sidebar_filters_starred_only": "僅顯示已固定",
"sidebar_filters_activity": "活動",
"sidebar_filters_recently_active": "最近活躍",
"sidebar_filters_session_type": "會話類型",
"sidebar_filters_hide_single_turn": "隱藏單輪",
"sidebar_filters_include_automated": "包含自動會話",
"sidebar_filters_project": "項目",
"sidebar_filters_hide_unknown": "隱藏未知項目",
"sidebar_filters_agent": "Agent",
"sidebar_filters_search_agents": "搜索 agents...",
"sidebar_filters_all_agents": "所有 agents",
"sidebar_filters_no_match": "無匹配",
"sidebar_filters_no_agents": "無 agents",
"sidebar_filters_machine": "Machine",
"sidebar_filters_search_machines": "搜索 machines...",
"sidebar_filters_no_machines": "無 machines",
"sidebar_filters_min_prompts": "最少提示數",
"sidebar_filters_clear_filters": "清除篩選器",
"sidebar_row_expand": "展開",
"sidebar_row_collapse": "摺疊",
"sidebar_row_select_session": "選擇會話",
"sidebar_row_deselect_session": "取消選擇會話",
"sidebar_row_star_session": "固定會話",
"sidebar_row_unstar_session": "取消固定會話",
"sidebar_row_rename": "重命名",
"sidebar_row_open_in_new_tab": "在新標籤頁打開",
"sidebar_row_delete": "刪除",
"shared_all_projects": "所有項目",
"shared_project_filter_placeholder": "篩選項目...",
"shared_select_project": "選擇項目",
"shared_no_matching_projects": "沒有匹配項目",
"shared_active_filters_label": "篩選器:",
"shared_active_filters_clear_project": "清除項目篩選器",
"shared_active_filters_remove_machine": "移除 {machine} 篩選器",
"shared_active_filters_remove_agent": "移除 {agent} 篩選器",
"shared_active_filters_clear_min_prompts": "清除最少提示數篩選器",
"shared_active_filters_min_prompts": "≥{count} 條提示",
"shared_active_filters_clear_recently_active": "清除最近活躍篩選器",
"shared_active_filters_active24h": "24 小時活躍",
"shared_active_filters_clear_hidden_unknown": "清除隱藏未知項目篩選器",
"shared_active_filters_unknown_hidden": "已隱藏未知項目",
"shared_active_filters_remove_project": "移除 {project} 項目篩選器",
"shared_active_filters_clear_single_turn": "清除單輪篩選器",
"shared_active_filters_single_turn_hidden": "已隱藏單輪",
"shared_active_filters_clear_automated": "清除自動會話篩選器",
"shared_active_filters_automated_included": "已包含自動會話",
"shared_active_filters_remove_model": "移除 {model} model 篩選器",
"shared_active_filters_clear_all": "清除所有篩選器",
"shared_active_filters_clear_all_label": "全部清除",
"shared_range_select_date_range": "選擇日期範圍",
"shared_range_relative_window": "相對時間窗口",
"shared_range_calendar_period": "日曆周期",
"shared_range_previous_period": "上一個周期",
"shared_range_next_period": "下一個周期",
"shared_range_previous_year": "上一年",
"shared_range_next_year": "下一年",
"shared_range_previous_years": "更早的年份",
"shared_range_next_years": "更晚的年份",
"shared_range_choose_month": "選擇月份",
"shared_range_choose_year": "選擇年份",
"shared_range_from": "從",
"shared_range_to": "到",
"shared_range_tab_relative": "相對",
"shared_range_tab_calendar": "日曆",
"shared_range_tab_custom": "自定義",
"shared_range_preset_all": "全部",
"shared_range_preset_all_time": "全部時間",
"shared_range_preset_last_year": "最近一年",
"shared_range_calendar_day": "日",
"shared_range_calendar_week": "周",
"shared_range_calendar_month": "月",
"shared_range_week_of": "{date}所在周",
"shared_range_custom_range": "自定義範圍",
"shared_range_last_days": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "最近 {count} 天"
}
}
],
"shared_refresh_not_updated": "未更新",
"shared_refresh_just_now": "剛剛更新",
"shared_refresh_minutes_ago": "{count} 分鐘前更新",
"shared_refresh_hours_ago": "{count} 小時前更新",
"shared_refresh_days_ago": "{count} 天前更新",
"shared_relative_just_now": "剛剛",
"shared_relative_minutes_ago": "{count} 分鐘前",
"shared_relative_hours_ago": "{count} 小時前",
"shared_relative_days_ago": "{count} 天前",
"shared_retry": "重試",
"shared_refresh": "刷新",
"shared_no_data": "無數據",
"shared_no_data_for_period": "此時間段無數據",
"shared_no_sessions_in_range": "此範圍內無會話",
"shared_none": "無",
"shared_other": "其他",
"shared_no_branch": "(無分支)",
"shared_unknown": "未知",
"analytics_refresh": "刷新分析",
"analytics_export_csv": "導出 CSV",
"analytics_activity_by_day_hour": "按日期和小時查看活動",
"analytics_summary_sessions": "會話",
"analytics_summary_messages": "消息",
"analytics_summary_projects": "項目",
"analytics_summary_active_days": "活躍天數",
"analytics_summary_messages_per_session": "每會話消息數",
"analytics_summary_median_p90": "中位數 {median} / p90 {p90}",
"analytics_summary_concentration": "集中度",
"analytics_status_active": "活躍",
"analytics_status_stale": "閒置",
"analytics_status_unclean": "異常終止",
"analytics_filters_clear_date": "清除日期篩選器",
"analytics_filters_remove_status": "從狀態篩選器中移除 {status}",
"analytics_filters_status": "狀態:{status}",
"analytics_filters_only_automated": "僅自動會話",
"analytics_filters_clear_time": "清除時間篩選器",
"analytics_agent_comparison_title": "Agent 對比",
"analytics_agent_comparison_empty": "無對比數據(需要 2 個以上 agent)",
"analytics_col_agent": "Agent",
"analytics_col_project": "項目",
"analytics_col_sessions": "會話",
"analytics_col_messages": "消息",
"analytics_col_cycle_p50": "周期 p50",
"analytics_col_cycle_p90": "周期 p90",
"analytics_col_msgs_min": "消息/分鐘",
"analytics_col_tools_min": "工具/分鐘",
"analytics_col_tool_calls": "Tool calls",
"analytics_col_top_categories": "主要類別",
"analytics_col_group": "分組",
"analytics_col_msgs_active_min": "消息 / 活躍分鐘",
"analytics_col_chars_active_min": "字符 / 活躍分鐘",
"analytics_col_tools_active_min": "工具 / 活躍分鐘",
"analytics_tool_usage_title": "Tool 使用",
"analytics_tool_usage_call_count": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 次調用"
}
}
],
"analytics_tool_usage_trend_tooltip": "{date} | 總計 {total} | {parts}",
"analytics_tool_usage_empty": "無 tool 使用數據",
"analytics_tool_usage_loading": "正在加載 tool 使用數據...",
"analytics_tool_usage_top_tools": "熱門 Tool",
"analytics_tool_usage_sessions": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": ["countPlural"],
"match": {
"countPlural=other": "{countLabel} 個會話"
}
}
],
"analytics_by_category": "按類別",
"analytics_by_agent": "按 Agent",
"analytics_by_project": "按項目",
"analytics_weekly_trend": "周趨勢",
"analytics_top_sessions_title": "熱門會話",
"analytics_top_sessions_filter_unclean": "篩選異常終止會話",
"analytics_top_sessions_unclean_count": "{countLabel} 個異常終止",
"analytics_top_sessions_by_messages": "按消息數",
"analytics_top_sessions_by_duration": "按時長",
"analytics_top_sessions_by_output_tokens": "按輸出 token",
"analytics_top_sessions_active_duration": "活躍時長",
"analytics_top_sessions_total_duration": "總計 {duration}",
"analytics_projects_title": "項目",
"analytics_project_messages": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 條消息"
}
}
],
"analytics_project_sessions": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 個會話"
}
}
],
"analytics_total_count": "共 {countLabel} 個",
"analytics_projects_empty": "無項目數據",
"analytics_activity_timeline_tooltip_value": "{label}:{value} {metric}",
"analytics_activity_timeline_tooltip_messages": "用戶:{user} / assistant:{assistant}",
"analytics_metric_messages": "消息",
"analytics_metric_sessions": "會話",
"analytics_metric_output_tokens": "輸出 Token",
"analytics_granularity_day": "日",
"analytics_granularity_week": "周",
"analytics_granularity_month": "月",
"analytics_granularity_label": "時間粒度",
"analytics_activity_empty": "無活動數據",
"analytics_activity_title": "活動",
"analytics_heatmap_showing_recent_year": "顯示最近一年",
"analytics_hour_of_week_tooltip": [
{
"declarations": [
"input day",
"input hour",
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{day} {hour}:00 - {countLabel} 條消息"
}
}
],
"analytics_session_shape_title": "會話形態",
"analytics_session_shape_duration": "時長",
"analytics_session_shape_autonomy": "自主度",
"analytics_session_shape_session_count": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 個會話"
}
}
],
"analytics_velocity_title": "速度",
"analytics_velocity_overview": "概覽",
"analytics_velocity_by_size": "按規模",
"analytics_velocity_turn_cycle_p50": "輪次周期 (p50)",
"analytics_velocity_turn_cycle_p90": "輪次周期 (p90)",
"analytics_velocity_first_response_p50": "首次響應 (p50)",
"analytics_velocity_first_response_p90": "首次響應 (p90)",
"analytics_velocity_no_breakdown": "無分解數據",
"analytics_grade_distribution_title": "等級分布",
"analytics_outcome_distribution_title": "結果分布",
"analytics_outcome_count": "{outcome}:{count}",
"analytics_health_trend_title": "健康度趨勢",
"analytics_health_trend_no_scored_sessions": "無已評分會話",
"analytics_health_trend_caption": "每日平均健康分 · 條形顏色 = 等級",
"analytics_no_trend_data": "無趨勢數據",
"analytics_session_health_title": "會話健康度",
"analytics_session_health_scored": "{countLabel} 個已評分",
"analytics_session_health_unscored": "{countLabel} 個未評分",
"analytics_session_health_avg_score": "平均分",
"analytics_session_health_grade": "等級 {grade}",
"analytics_session_health_completed": "已完成",
"analytics_session_health_errored": "出錯",
"analytics_session_health_tool_failures": "Tool 失敗",
"analytics_session_health_compactions": "壓縮",
"analytics_session_health_mid_task": "任務中",
"analytics_session_health_avg_per_session": "平均 {value}/會話",
"analytics_top_skills_title": "常用 Skills",
"analytics_top_skills_never": "從未",
"analytics_top_skills_tooltip": [
{
"declarations": [
"input skill",
"input count",
"input countLabel",
"input pct",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{skill}:{countLabel} 次調用 ({pct}%)"
}
}
],
"analytics_top_skills_count": [
{
"declarations": [
"input calls",
"input callsLabel",
"input skills",
"input skillsLabel",
"local callsPlural = calls: plural",
"local skillsPlural = skills: plural"
],
"selectors": [
"callsPlural",
"skillsPlural"
],
"match": {
"callsPlural=other, skillsPlural=other": "{callsLabel} 次調用 · {skillsLabel} 個 skill"
}
}
],
"analytics_top_skills_agent_breakdown": "Agent 分解",
"analytics_top_skills_agents": "Agents",
"analytics_top_skills_projects": "項目:{projects}",
"analytics_top_skills_empty": "無 skill 使用數據",
"analytics_skill_trend_title": "Skill 使用趨勢",
"analytics_skill_trend_other": "其他",
"analytics_skill_trend_legend": "切換 skill 顯示",
"analytics_skill_trend_chart_label": "Skill 使用趨勢。使用左右方向鍵查看日期。",
"analytics_skill_trend_date": "日期",
"analytics_skill_trend_loading": "正在載入 skill 使用數據...",
"analytics_skill_trend_empty": "無 skill 使用數據",
"usage_model": "模型",
"usage_models": "模型",
"usage_refresh": "刷新用量數據",
"usage_summary_total_cost": "總成本",
"usage_summary_copilot_ai_credits": "Copilot AI Credits",
"usage_summary_input_tokens": "輸入 Token",
"usage_summary_daily_burn": "每日消耗",
"usage_summary_peak_day": "峰值日期",
"usage_summary_cache_hit": "緩存命中",
"usage_summary_vs_prior": "較上一周期 {value}",
"usage_summary_cached_tokens": "{value} 已緩存",
"usage_summary_avg_day": "平均/天",
"usage_filter_all": "{label}:全部",
"usage_filter_selected": "{label}:已選 {countLabel} 個",
"usage_filter_none": "{label}:無",
"usage_filter_hidden": "{label}:已隱藏 {countLabel} 個",
"usage_filter_search": "搜索...",
"usage_filter_select_all": "全選",
"usage_filter_deselect_all": "取消全選",
"usage_filter_all_items": [
{
"declarations": [
"input label",
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "所有 {label}"
}
}
],
"usage_cost_over_time_title": "成本趨勢",
"usage_cost_attribution_title": "成本歸因",
"usage_attribution_treemap": "矩形樹圖",
"usage_attribution_list": "列表",
"usage_click_to_hide_hint": "點擊可從圖表隱藏",
"usage_click_to_hide": "點擊隱藏 {label}",
"usage_hide_from_chart": "從圖表隱藏 {label}",
"usage_cache_efficiency_title": "緩存效率",
"usage_cache_reads": "緩存讀取",
"usage_cache_writes": "緩存寫入",
"usage_uncached_input": "未緩存輸入",
"usage_output": "輸出",
"usage_no_token_data": "無 token 數據",
"usage_saved_vs_uncached": "相比未緩存節省 {cost}",
"usage_more_than_uncached": "比未緩存多 {cost}",
"usage_top_sessions_by_cost": "按成本排序的熱門會話",
"settings_title": "設置",
"settings_loading": "正在加載設置...",
"settings_date_ranges_title": "日期範圍",
"settings_date_ranges_description": "在會話、用量、活動、趨勢和洞察頁面之間共享日期選擇。",
"settings_date_ranges_link": "跨頁面連結日期範圍",
"settings_resync_title_unavailable": "只讀模式下無法完整重新同步",
"settings_resync_unavailable_hint": "連接到只讀後端時不可用",
"settings_resync_hint": "從頭重新掃描所有會話文件",
"settings_language_title": "語言",
"settings_language_description": "選擇界面語言。",
"settings_language_label": "界面語言",
"settings_language_english": "English",
"settings_language_simplified_chinese": "簡體中文",
"settings_language_traditional_chinese": "繁體中文",
"settings_language_korean": "韓文",
"settings_language_french": "法文",
"settings_language_no_results": "未找到語言",
"nav_recent_edits": "最近編輯",
"recent_edits_title": "最近編輯",
"recent_edits_empty": "暫無文件編輯記錄。",
"recent_edits_loading": "正在加載最近編輯...",
"recent_edits_count": "{count} 次編輯",
"recent_edits_truncated": "顯示最新 {shown}(共 {total} 條)",
"recent_edits_load_more": "加載更多",
"recent_edits_refresh": "刷新",
"recent_edits_search_placeholder": "按文件路徑篩選",
"recent_edits_clear_search": "清除文件路徑搜尋",
"activity_insight_unavailable_read_only": "只讀遠程模式下不可用",
"activity_insight_waiting_server": "正在等待伺服器版本",
"activity_insight_generate_insight": "生成洞察",
"activity_insight_generation_failed": "生成失敗",
"activity_insight_title": "活動洞察",
"activity_insight_open_insights_page": "在洞察頁面中打開",
"activity_insight_agent_cli_title": "用於生成洞察的代理 CLI",
"activity_insight_insight_agent": "洞察代理",
"activity_insight_loading": "正在加載洞察…",
"activity_insight_generating_phase": "正在生成… {phase}",
"activity_insight_retry": "重試",
"activity_insight_empty_text": "此範圍尚無洞察。生成一個以總結此時段的活動。",
"activity_insight_generate": "生成",
"activity_filter_by_agent": "按代理篩選",
"activity_all_agents": "全部代理",
"activity_filter_by_machine": "按機器篩選",
"activity_all_machines": "全部機器",
"activity_filter_by_automation": "按自動化篩選",
"activity_all_sessions": "全部會話",
"activity_interactive": "交互式",
"activity_automated": "自動化",
"activity_refresh": "刷新活動",
"activity_project": "項目",
"activity_model": "模型",
"activity_agent": "代理",
"activity_min_unit": " 分鐘",
"activity_int_auto_split": "交互 {int} / 自動 {auto}",
"activity_breakdown": "細分",
"activity_breakdown_metric": "細分指標",
"activity_agent_min": "代理分鐘",
"activity_cost": "成本",
"activity_none_lower": "無",
"activity_int_auto_short": "{int} 交互 / {auto} 自動",
"activity_peak_label": "峰值 {count}",
"activity_agent_min_value": "{value} 代理分鐘",
"activity_no_sessions_selected_slot": "所選時段內沒有活躍會話。",
"activity_output_tokens_value": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=other": "{countLabel} 輸出 Token"
}
}
],
"activity_concurrency": "並發",
"activity_overlay": "疊加",
"activity_overlay_metric": "並發疊加指標",
"activity_overlay_none": "無",
"activity_tokens": "Token",
"activity_filter_active_in_slot": "篩選此時間段內活躍的會話",
"activity_mixed": "混合",
"activity_window": "時間窗",
"activity_sessions": "會話",
"activity_clear_time_filter": "清除時間篩選",
"activity_active_filter": "活躍:{label}",
"activity_total_count": "共 {count}",
"activity_session": "會話",
"activity_automated_session": "自動化會話",
"activity_auto": "自動",
"activity_interactive_automated_split": "{interactive} 交互式 / {automated} 自動化",
"activity_untimed_count": "{count} 個未計時",
"activity_peak_concurrency": "峰值並發",
"activity_at_time": "於 {time}",
"activity_active": "活躍",
"activity_idle_duration": "空閒 {duration}",
"activity_agent_minutes": "代理分鐘數",
"activity_projects": "項目",
"activity_models": "模型",
"activity_total_cost": "總成本",
"activity_in_progress_as_of": "進行中,截至 {time}",
"session_list_status_active": "活躍",
"session_list_status_stale": "停滯",
"session_list_status_unclean": "異常中斷",
"analytics_weekday_mon": "周一",
"analytics_weekday_tue": "周二",
"analytics_weekday_wed": "周三",
"analytics_weekday_thu": "周四",
"analytics_weekday_fri": "周五",
"analytics_weekday_sat": "周六",
"analytics_weekday_sun": "周日",
"active_filters_label": "篩選:",
"active_filters_clear_date": "清除日期篩選",
"active_filters_clear_project": "清除項目篩選",
"active_filters_remove_filter": "移除 {name} 篩選",
"active_filters_clear_min_prompts": "清除最少提問篩選",
"active_filters_min_prompts": "≥{count} 次提問",
"active_filters_clear_recently_active": "清除近期活躍篩選",
"active_filters_active24h": "24 小時內活躍",
"active_filters_remove_status": "從狀態篩選中移除 {status}",
"active_filters_status_prefix": "狀態:{status}",
"active_filters_clear_single_turn": "清除單輪篩選",
"active_filters_single_turn_hidden": "已隱藏單輪",
"active_filters_clear_automated": "清除自動化篩選",
"active_filters_only_automated": "僅自動化",
"active_filters_automated_included": "包含自動化",
"active_filters_clear_time": "清除時間篩選",
"active_filters_clear_all_title": "清除所有篩選",
"active_filters_clear_all": "全部清除",
"analytics_messages": "消息",
"analytics_sessions": "會話",
"analytics_user_assistant_split": "用戶:{user} / 助手:{assistant}",
"analytics_day": "日",
"analytics_week": "周",
"analytics_month": "月",
"analytics_retry": "重試",
"analytics_no_activity_data": "無活動數據",
"analytics_agent_comparison": "代理對比",
"analytics_no_comparison_data": "無對比數據(需要 2 個以上代理)",
"analytics_agent": "代理",
"analytics_model": "模型",
"analytics_cycle_p50": "周期 p50",
"analytics_msgs_per_min": "消息/分",
"analytics_tools_per_min": "工具/分",
"analytics_tool_calls": "工具調用",
"analytics_top_categories": "熱門分類",
"analytics_grade_distribution": "評級分布",
"analytics_health_trend": "健康趨勢",
"analytics_no_scored_sessions": "無評分會話",
"analytics_session_count": "{count} 個會話",
"analytics_mon": "周一",
"analytics_wed": "周三",
"analytics_fri": "周五",
"analytics_output_tokens": "輸出 Token",
"analytics_showing_recent_year": "顯示最近一年",
"analytics_no_data_period": "此時段無數據",
"analytics_messages_count": "{count} 條消息",
"analytics_outcome_distribution": "結果分布",