-
Notifications
You must be signed in to change notification settings - Fork 513
Expand file tree
/
Copy pathzh-CN.json
More file actions
1824 lines (1824 loc) · 78.2 KB
/
Copy pathzh-CN.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 才能访问。请输入 ~/.agentsview/config.toml 中的 auth_token 或 AGENTSVIEW_AUTH_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": "结果分布",