-
Notifications
You must be signed in to change notification settings - Fork 513
Expand file tree
/
Copy pathen.json
More file actions
1862 lines (1862 loc) · 80.8 KB
/
Copy pathen.json
File metadata and controls
1862 lines (1862 loc) · 80.8 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": "Authentication Required",
"app_auth_description": "This server requires an auth token to access. Enter the auth_token from ~/.agentsview/config.toml or AGENTSVIEW_AUTH_TOKEN.",
"app_auth_placeholder": "Paste auth token",
"app_auth_authenticate": "Authenticate",
"app_auth_disconnect_reset": "Disconnect and reset",
"app_undo_session_deleted": "Session deleted",
"app_undo_undo": "Undo",
"nav_toggle_sidebar": "Toggle sidebar",
"nav_toggle_sidebar_shortcut": "Toggle sidebar (b)",
"nav_close_sidebar": "Close sidebar",
"nav_resize_sidebar": "Resize sidebar",
"nav_home": "Home",
"nav_primary": "Primary navigation",
"nav_sessions": "Sessions",
"nav_token_usage": "Token Usage",
"nav_usage": "Usage",
"nav_activity": "Activity",
"nav_more_navigation": "More navigation",
"nav_more": "More",
"nav_trends": "Trends",
"nav_pinned": "Pinned",
"nav_insights": "Insights",
"nav_trash": "Trash",
"nav_search_sessions": "Search sessions...",
"nav_search_sessions_shortcut": "Search sessions ({shortcut})",
"header_transcript_normal_title": "Normal transcript - show all messages",
"header_transcript_normal_label": "Normal transcript mode",
"header_transcript_normal": "Normal",
"header_transcript_focused_title": "Focused transcript - user prompts and final answers only",
"header_transcript_focused_label": "Focused transcript mode",
"header_transcript_focused": "Focused",
"header_transcript_filter_title": "Filter block types",
"header_transcript_filter_label": "Filter block types",
"header_transcript_visibility": "Block Visibility",
"header_transcript_show_all": "Show all",
"header_transcript_blocks_user": "User messages",
"header_transcript_blocks_assistant": "Assistant text",
"header_transcript_blocks_thinking": "Thinking blocks",
"header_transcript_blocks_tool": "Tool calls",
"header_transcript_blocks_code": "Code blocks",
"header_actions_follow_latest": "Follow latest messages",
"header_actions_toggle_sort": "Toggle sort order (o)",
"header_actions_cycle_layout": "Cycle layout: {layout} (l)",
"header_actions_cycle_layout_label": "Cycle message layout",
"header_actions_export_options": "Export session options",
"header_actions_export_session": "Export session",
"header_actions_download_html": "Download HTML export",
"header_actions_copied_markdown_link": "Copied markdown link",
"header_actions_copy_markdown_link": "Copy markdown export link",
"header_actions_copy_source_path": "Copy source file path",
"header_actions_publish_title": "Publish to Gist (p)",
"header_actions_publish_label": "Publish to Gist",
"header_actions_publish_public": "Publish public Gist",
"header_actions_publish_secret": "Publish secret Gist",
"header_actions_more_actions": "More actions",
"header_actions_layout": "Layout: {layout}",
"header_actions_refresh_data": "Refresh data",
"header_actions_refresh_data_shortcut": "Refresh data (r)",
"header_actions_sync_sessions": "Sync sessions",
"header_actions_sync_sessions_shortcut": "Sync sessions (r)",
"header_actions_refresh": "Refresh",
"header_actions_sync": "Sync",
"header_actions_import_unavailable": "Import unavailable in read-only mode",
"header_actions_import_conversations": "Import conversations",
"header_actions_import": "Import",
"header_actions_toggle_theme": "Toggle theme",
"header_actions_settings": "Settings",
"header_actions_keyboard_shortcuts": "Keyboard shortcuts",
"header_actions_keyboard_shortcuts_shortcut": "Keyboard shortcuts (?)",
"status_bar_sessions": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} session",
"countPlural=other": "{countLabel} sessions"
}
}
],
"status_bar_messages": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} message",
"countPlural=other": "{countLabel} messages"
}
}
],
"status_bar_projects": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} project",
"countPlural=other": "{countLabel} projects"
}
}
],
"status_bar_open_performance_debug": "Open performance debug",
"status_bar_perf": "Perf",
"status_bar_remote_unreachable_title": "Can't reach the remote server. Open settings to check the URL, token, or disconnect.",
"status_bar_remote_unreachable": "remote server unreachable",
"status_bar_sync_not_ready": "sync not ready",
"status_bar_zoom_out": "Zoom out ({shortcut} -)",
"status_bar_reset_zoom": "Reset zoom ({shortcut} 0)",
"status_bar_zoom_in": "Zoom in ({shortcut} +)",
"status_bar_update_available_title": "A new version is available: {version}",
"status_bar_update_available": "update available",
"status_bar_version_mismatch_title": "Frontend and backend versions differ. Click to reload.",
"status_bar_version_mismatch": "version mismatch - reload",
"status_bar_scanning": "Scanning {project}...",
"status_bar_syncing_percent": "Syncing {percent}% ({done}/{total})",
"status_bar_syncing": "Syncing...",
"status_bar_synced_ago": "synced {time}",
"status_bar_build": "Build: {commit}",
"command_palette_placeholder": "Search sessions and messages...",
"command_palette_search_mode_label": "Search mode",
"command_palette_mode_fulltext": "Full text",
"command_palette_mode_semantic": "Semantic",
"command_palette_mode_hybrid": "Hybrid",
"command_palette_search_error": "Search unavailable",
"command_palette_search_failed": "Search failed. Please try again.",
"command_palette_semantic_setup_title": "Semantic search isn't set up",
"command_palette_semantic_setup_config_step": "1. Add a [vector] section to config.toml, adjusting the model and endpoint for your embeddings server (any OpenAI-compatible endpoint works, e.g. Ollama):",
"command_palette_semantic_setup_build_step": "2. Restart the daemon, then build the index:",
"command_palette_semantic_copy_config": "Copy config snippet",
"command_palette_semantic_copy_command": "Copy command",
"command_palette_semantic_copied": "Copied!",
"command_palette_semantic_disabled_title": "Semantic search is disabled",
"command_palette_semantic_ready_title": "Semantic index not built yet",
"command_palette_semantic_ready_intro": "Semantic search is configured, but the embeddings index hasn't been built for this archive.",
"command_palette_semantic_build_button": "Build embeddings",
"command_palette_semantic_build_hint": "The build runs on the server in the background; this search re-runs when it finishes.",
"command_palette_semantic_building_title": "Building embeddings index...",
"command_palette_semantic_building_scanning": "Scanning the archive...",
"command_palette_semantic_building_progress": "{percentLabel} embedded",
"command_palette_semantic_failed_title": "Embeddings build failed",
"command_palette_search_timeout_title": "Search took too long",
"command_palette_search_timeout_detail": "Try again. The first Semantic or Hybrid search can be slower while the embedding model warms up.",
"command_palette_relevance": "Relevance",
"command_palette_recency": "Recency",
"command_palette_searching": "Searching...",
"command_palette_no_results": "No results",
"command_palette_copy_session_id": "Copy session ID",
"command_palette_recent_sessions": "Recent Sessions",
"session_breadcrumb_back_to_sessions": "Back to sessions",
"session_breadcrumb_sessions": "Sessions",
"session_breadcrumb_session_health": "Session health",
"session_breadcrumb_resume_session_in_terminal": "Resume session in terminal",
"session_breadcrumb_session_actions": "Session actions",
"session_breadcrumb_resume_session": "Resume session",
"session_breadcrumb_resume": "Resume",
"session_breadcrumb_open": "Open",
"session_breadcrumb_default_terminal": "Default terminal",
"session_breadcrumb_copy_command": "Copy command",
"session_breadcrumb_copy_directory_path": "Copy directory path",
"session_breadcrumb_open_in": "Open in",
"session_breadcrumb_copy_session_id": "Copy session ID",
"session_breadcrumb_copy_session_id_value": "Copy session ID: {id}",
"session_breadcrumb_copied": "Copied!",
"session_breadcrumb_estimated_session_cost": "Estimated session cost",
"session_breadcrumb_total_cost": "Total",
"session_breadcrumb_total_cost_title": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "Total cost including {countLabel} subagent",
"countPlural=other": "Total cost including {countLabel} subagents"
}
}
],
"session_breadcrumb_usage_breakdown_title": "Session usage breakdown",
"session_breadcrumb_usage_breakdown_loading": "Loading usage...",
"session_breadcrumb_usage_breakdown_steps": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": ["countPlural"],
"match": {
"countPlural=one": "{countLabel} step",
"countPlural=other": "{countLabel} steps"
}
}
],
"session_breadcrumb_copy_link_to_session": "Copy link to session",
"session_breadcrumb_show_session_analysis": "Show session analysis",
"session_breadcrumb_hide_session_analysis": "Hide session analysis",
"session_breadcrumb_find_in_session": "Find in session",
"session_breadcrumb_find_in_session_shortcut": "Find in session (/)",
"session_breadcrumb_rename": "Rename",
"session_breadcrumb_delete": "Delete",
"session_breadcrumb_resumed_in": "Resumed in {target}",
"session_breadcrumb_command_copied": "Command copied!",
"session_breadcrumb_failed": "Failed",
"session_breadcrumb_not_supported": "Not supported",
"session_breadcrumb_no_path_available": "No path available",
"session_breadcrumb_path_copied": "Path copied!",
"session_breadcrumb_opened_in": "Opened in {target}",
"session_breadcrumb_failed_to_open": "Failed to open",
"session_breadcrumb_open_in_codex_desktop": "Open in Codex Desktop",
"session_breadcrumb_open_in_claude_code": "Open in Claude Code",
"session_breadcrumb_summary_mode": "Summary mode",
"session_breadcrumb_summary_mode_tooltip": "Tool results, thinking, and diffs are missing from this transcript. Full fidelity needs the agy-reader sidecar — install it, or if installed, let it catch up. Click to learn how.",
"session_breadcrumb_malformed_lines": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{count} malformed line",
"countPlural=other": "{count} malformed lines"
}
}
],
"session_breadcrumb_malformed_lines_tooltip": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{count} line in the source file could not be parsed",
"countPlural=other": "{count} lines in the source file could not be parsed"
}
}
],
"session_breadcrumb_antigravity_decode_confidence_low": "Unverified schema",
"session_breadcrumb_antigravity_decode_confidence_low_tooltip": "This session came from an unrecognized (newer) Antigravity build. The decode is heuristic and may be incomplete or wrong.",
"session_find_find_in_session": "Find in session",
"session_find_placeholder": "Find in session...",
"session_find_search_query": "Search query",
"session_find_no_results": "No results",
"session_find_match_count": "{current} of {total}",
"session_find_previous_match_title": "Previous match (⇧ ↩)",
"session_find_previous_match": "Previous match",
"session_find_next_match_title": "Next match (↩)",
"session_find_next_match": "Next match",
"session_find_close_title": "Close (⎋)",
"session_find_close": "Close find bar",
"message_list_empty": "Select a session to view messages",
"message_list_loading": "Loading messages...",
"read_progress_boundary": "Read progress boundary",
"read_progress_new_messages": "New messages",
"read_progress_earlier_messages": "Earlier messages",
"read_progress_unread_messages": "Unread messages",
"code_block_copy_code_block": "Copy code block",
"code_block_copied_code_block": "Copied code block",
"code_block_copy_code": "Copy code",
"code_block_copied": "Copied!",
"message_content_role_assistant": "Assistant",
"message_content_role_agent": "Agent",
"message_content_role_teammate": "Teammate",
"message_content_role_user": "User",
"message_content_copy_message": "Copy message",
"message_content_copied_message": "Copied message",
"message_content_copied": "Copied!",
"message_content_unpin_message": "Unpin message",
"message_content_pin_message": "Pin message",
"message_content_unpinned": "Unpinned",
"message_content_pinned": "Pinned",
"message_content_running_duration": "running {duration}+",
"message_content_turn_summary": [
{
"declarations": [
"input count",
"input duration",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "turn {duration} · {count} call",
"countPlural=other": "turn {duration} · {count} calls"
}
}
],
"message_content_running_turn_summary": [
{
"declarations": [
"input count",
"input duration",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "running {duration}+ · {count} call",
"countPlural=other": "running {duration}+ · {count} calls"
}
}
],
"tool_call_group_call_count": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{count} tool call",
"countPlural=other": "{count} tool calls"
}
}
],
"tool_call_group_copy_tool_calls": "Copy tool calls",
"tool_call_group_copied_tool_calls": "Copied tool calls",
"tool_call_group_copied": "Copied!",
"tool_call_group_running_duration": "running {duration}+",
"parallel_group_label": "parallel",
"parallel_group_call_count": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{count} call",
"countPlural=other": "{count} calls"
}
}
],
"parallel_group_each_duration": "≤ {duration} each",
"parallel_group_running": "running...",
"subagent_inline_label": "Subagent session",
"subagent_inline_message_count": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{count} message",
"countPlural=other": "{count} messages"
}
}
],
"subagent_inline_open_as_full_session": "Open as full session",
"subagent_inline_open_session": "Open session",
"subagent_inline_failed_to_load": "Failed to load",
"subagent_inline_loading": "Loading...",
"subagent_inline_no_messages": "No messages",
"skill_block_label": "Skill: {name}",
"tool_block_copy_input": "Copy input",
"tool_block_copied_input": "Copied input",
"tool_block_copy_output": "Copy output",
"tool_block_copied_output": "Copied output",
"tool_block_output": "output",
"tool_block_history": "history",
"tool_block_status_label": "status:",
"tool_block_source_label": "source:",
"tool_block_agent_label": "agent:",
"tool_block_show_less": "show less",
"tool_block_show_all_lines": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "show all {count} line",
"countPlural=other": "show all {count} lines"
}
}
],
"thinking_block_label": "Thinking",
"compact_boundary_title": "Context window compacted at this point",
"compact_boundary_label": "Context compacted",
"compact_boundary_show_full_summary": "Show full summary",
"sidebar_session_count": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} session",
"countPlural=other": "{countLabel} sessions"
}
}
],
"sidebar_loading": "loading",
"sidebar_multi_select": "Multi-select",
"sidebar_exit_multi_select": "Exit multi-select",
"sidebar_select_all_visible": "Select all visible",
"sidebar_clear_selection": "Clear selection",
"sidebar_batch_clear": "Clear",
"sidebar_batch_all": "All",
"sidebar_selected_count": "{countLabel} selected",
"sidebar_move_selected_to_trash": "Move selected sessions to trash",
"sidebar_deleting": "Deleting...",
"sidebar_delete": "Delete",
"sidebar_cancel": "Cancel",
"sidebar_status": "Status",
"sidebar_active": "Active",
"sidebar_active_title": "Last activity within 10 minutes",
"sidebar_stale": "Stale",
"sidebar_stale_title": "Flagged session, idle 10 minutes to 1 hour",
"sidebar_unclean": "Unclean",
"sidebar_unclean_title": "Terminated mid tool call (over 1 hour idle)",
"sidebar_expand_group": "Expand {name} group",
"sidebar_collapse_group": "Collapse {name} group",
"sidebar_subagents": "Subagents",
"sidebar_team": "Team",
"sidebar_filters_filter_sessions": "Filter sessions",
"sidebar_filters_filters": "Filters",
"sidebar_filters_display": "Display",
"sidebar_filters_group_by_agent": "Group by agent",
"sidebar_filters_group_by_project": "Group by project",
"sidebar_filters_starred": "Starred",
"sidebar_filters_starred_only": "Starred only",
"sidebar_filters_activity": "Activity",
"sidebar_filters_recently_active": "Recently Active",
"sidebar_filters_session_type": "Session Type",
"sidebar_filters_hide_single_turn": "Hide single-turn",
"sidebar_filters_include_automated": "Include automated sessions",
"sidebar_filters_project": "Project",
"sidebar_filters_hide_unknown": "Hide unknown",
"sidebar_filters_agent": "Agent",
"sidebar_filters_search_agents": "Search agents...",
"sidebar_filters_all_agents": "All agents",
"sidebar_filters_no_match": "No match",
"sidebar_filters_no_agents": "No agents",
"sidebar_filters_machine": "Machine",
"sidebar_filters_search_machines": "Search machines...",
"sidebar_filters_no_machines": "No machines",
"sidebar_filters_min_prompts": "Min Prompts",
"sidebar_filters_clear_filters": "Clear filters",
"sidebar_row_expand": "Expand",
"sidebar_row_collapse": "Collapse",
"sidebar_row_select_session": "Select session",
"sidebar_row_deselect_session": "Deselect session",
"sidebar_row_star_session": "Star session",
"sidebar_row_unstar_session": "Unstar session",
"sidebar_row_rename": "Rename",
"sidebar_row_open_in_new_tab": "Open in new tab",
"sidebar_row_delete": "Delete",
"shared_all_projects": "All Projects",
"shared_project_filter_placeholder": "Filter projects...",
"shared_select_project": "Select project",
"shared_no_matching_projects": "No matching projects",
"shared_active_filters_label": "Filters:",
"shared_active_filters_clear_project": "Clear project filter",
"shared_active_filters_remove_machine": "Remove {machine} filter",
"shared_active_filters_remove_agent": "Remove {agent} filter",
"shared_active_filters_clear_min_prompts": "Clear min prompts filter",
"shared_active_filters_min_prompts": "≥{count} prompts",
"shared_active_filters_clear_recently_active": "Clear recently active filter",
"shared_active_filters_active24h": "Active 24h",
"shared_active_filters_clear_hidden_unknown": "Clear hidden unknown project filter",
"shared_active_filters_unknown_hidden": "Unknown hidden",
"shared_active_filters_remove_project": "Remove {project} project filter",
"shared_active_filters_clear_single_turn": "Clear single-turn filter",
"shared_active_filters_single_turn_hidden": "Single-turn hidden",
"shared_active_filters_clear_automated": "Clear automated filter",
"shared_active_filters_automated_included": "Automated included",
"shared_active_filters_remove_model": "Remove {model} model filter",
"shared_active_filters_clear_all": "Clear all filters",
"shared_active_filters_clear_all_label": "Clear all",
"shared_range_select_date_range": "Select date range",
"shared_range_relative_window": "Relative window",
"shared_range_calendar_period": "Calendar period",
"shared_range_previous_period": "Previous period",
"shared_range_next_period": "Next period",
"shared_range_previous_year": "Previous year",
"shared_range_next_year": "Next year",
"shared_range_previous_years": "Previous years",
"shared_range_next_years": "Next years",
"shared_range_choose_month": "Choose month",
"shared_range_choose_year": "Choose year",
"shared_range_from": "From",
"shared_range_to": "To",
"shared_range_tab_relative": "Relative",
"shared_range_tab_calendar": "Calendar",
"shared_range_tab_custom": "Custom",
"shared_range_preset_all": "All",
"shared_range_preset_all_time": "All time",
"shared_range_preset_last_year": "Last year",
"shared_range_calendar_day": "Day",
"shared_range_calendar_week": "Week",
"shared_range_calendar_month": "Month",
"shared_range_week_of": "Week of {date}",
"shared_range_custom_range": "Custom range",
"shared_range_last_days": [
{
"declarations": [
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "Last {count} day",
"countPlural=other": "Last {count} days"
}
}
],
"shared_refresh_not_updated": "Not updated",
"shared_refresh_just_now": "Updated just now",
"shared_refresh_minutes_ago": "Updated {count}m ago",
"shared_refresh_hours_ago": "Updated {count}h ago",
"shared_refresh_days_ago": "Updated {count}d ago",
"shared_relative_just_now": "just now",
"shared_relative_minutes_ago": "{count}m ago",
"shared_relative_hours_ago": "{count}h ago",
"shared_relative_days_ago": "{count}d ago",
"shared_retry": "Retry",
"shared_refresh": "Refresh",
"shared_no_data": "No data",
"shared_no_data_for_period": "No data for this period",
"shared_no_sessions_in_range": "No sessions in range",
"shared_none": "None",
"shared_other": "Other",
"shared_no_branch": "(no branch)",
"shared_unknown": "unknown",
"analytics_refresh": "Refresh analytics",
"analytics_export_csv": "Export CSV",
"analytics_activity_by_day_hour": "Activity by Day and Hour",
"analytics_summary_sessions": "Sessions",
"analytics_summary_messages": "Messages",
"analytics_summary_projects": "Projects",
"analytics_summary_active_days": "Active Days",
"analytics_summary_messages_per_session": "Messages/Session",
"analytics_summary_median_p90": "med {median} / p90 {p90}",
"analytics_summary_concentration": "Concentration",
"analytics_status_active": "Active",
"analytics_status_stale": "Stale",
"analytics_status_unclean": "Unclean",
"analytics_filters_clear_date": "Clear date filter",
"analytics_filters_remove_status": "Remove {status} from status filter",
"analytics_filters_status": "Status: {status}",
"analytics_filters_only_automated": "Only automated",
"analytics_filters_clear_time": "Clear time filter",
"analytics_agent_comparison_title": "Agent Comparison",
"analytics_agent_comparison_empty": "No comparison data (need 2+ agents)",
"analytics_col_agent": "Agent",
"analytics_col_project": "Project",
"analytics_col_sessions": "Sessions",
"analytics_col_messages": "Messages",
"analytics_col_cycle_p50": "Cycle p50",
"analytics_col_cycle_p90": "Cycle p90",
"analytics_col_msgs_min": "Msgs/min",
"analytics_col_tools_min": "Tools/min",
"analytics_col_tool_calls": "Tool Calls",
"analytics_col_top_categories": "Top Categories",
"analytics_col_group": "Group",
"analytics_col_msgs_active_min": "Msgs / Active Min",
"analytics_col_chars_active_min": "Chars / Active Min",
"analytics_col_tools_active_min": "Tools / Active Min",
"analytics_tool_usage_title": "Tool Usage",
"analytics_tool_usage_call_count": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} call",
"countPlural=other": "{countLabel} calls"
}
}
],
"analytics_tool_usage_trend_tooltip": "{date} | {total} total | {parts}",
"analytics_tool_usage_empty": "No tool usage data",
"analytics_tool_usage_loading": "Loading tool usage...",
"analytics_tool_usage_top_tools": "Top tools",
"analytics_tool_usage_sessions": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": ["countPlural"],
"match": {
"countPlural=one": "{countLabel} session",
"countPlural=other": "{countLabel} sessions"
}
}
],
"analytics_by_category": "By Category",
"analytics_by_agent": "By Agent",
"analytics_by_project": "By Project",
"analytics_weekly_trend": "Weekly Trend",
"analytics_top_sessions_title": "Top Sessions",
"analytics_top_sessions_filter_unclean": "Filter to unclean sessions",
"analytics_top_sessions_unclean_count": "{countLabel} unclean",
"analytics_top_sessions_by_messages": "By Messages",
"analytics_top_sessions_by_duration": "By Duration",
"analytics_top_sessions_by_output_tokens": "By Output Tokens",
"analytics_top_sessions_active_duration": "Active duration",
"analytics_top_sessions_total_duration": "{duration} total",
"analytics_projects_title": "Projects",
"analytics_project_messages": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} message",
"countPlural=other": "{countLabel} messages"
}
}
],
"analytics_project_sessions": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} session",
"countPlural=other": "{countLabel} sessions"
}
}
],
"analytics_total_count": "{countLabel} total",
"analytics_projects_empty": "No project data",
"analytics_activity_timeline_tooltip_value": "{label}: {value} {metric}",
"analytics_activity_timeline_tooltip_messages": "user: {user} / assistant: {assistant}",
"analytics_metric_messages": "Messages",
"analytics_metric_sessions": "Sessions",
"analytics_metric_output_tokens": "Output Tokens",
"analytics_granularity_day": "Day",
"analytics_granularity_week": "Week",
"analytics_granularity_month": "Month",
"analytics_granularity_label": "Granularity",
"analytics_activity_empty": "No activity data",
"analytics_activity_title": "Activity",
"analytics_heatmap_showing_recent_year": "Showing most recent year",
"analytics_hour_of_week_tooltip": [
{
"declarations": [
"input day",
"input hour",
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{day} {hour}:00 - {countLabel} message",
"countPlural=other": "{day} {hour}:00 - {countLabel} messages"
}
}
],
"analytics_session_shape_title": "Session Shape",
"analytics_session_shape_duration": "Duration",
"analytics_session_shape_autonomy": "Autonomy",
"analytics_session_shape_session_count": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} session",
"countPlural=other": "{countLabel} sessions"
}
}
],
"analytics_velocity_title": "Velocity",
"analytics_velocity_overview": "Overview",
"analytics_velocity_by_size": "By Size",
"analytics_velocity_turn_cycle_p50": "Turn Cycle (p50)",
"analytics_velocity_turn_cycle_p90": "Turn Cycle (p90)",
"analytics_velocity_first_response_p50": "First Response (p50)",
"analytics_velocity_first_response_p90": "First Response (p90)",
"analytics_velocity_no_breakdown": "No breakdown data",
"analytics_grade_distribution_title": "Grade Distribution",
"analytics_outcome_distribution_title": "Outcome Distribution",
"analytics_outcome_count": "{outcome}: {count}",
"analytics_health_trend_title": "Health Trend",
"analytics_health_trend_no_scored_sessions": "no scored sessions",
"analytics_health_trend_caption": "Daily average health score · bar color = grade",
"analytics_no_trend_data": "No trend data",
"analytics_session_health_title": "Session Health",
"analytics_session_health_scored": "{countLabel} scored",
"analytics_session_health_unscored": "{countLabel} unscored",
"analytics_session_health_avg_score": "Avg Score",
"analytics_session_health_grade": "Grade {grade}",
"analytics_session_health_completed": "Completed",
"analytics_session_health_errored": "Errored",
"analytics_session_health_tool_failures": "Tool Failures",
"analytics_session_health_compactions": "Compactions",
"analytics_session_health_mid_task": "mid-task",
"analytics_session_health_avg_per_session": "avg {value}/session",
"analytics_top_skills_title": "Top Skills",
"analytics_top_skills_never": "Never",
"analytics_top_skills_tooltip": [
{
"declarations": [
"input skill",
"input count",
"input countLabel",
"input pct",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{skill}: {countLabel} call ({pct}%)",
"countPlural=other": "{skill}: {countLabel} calls ({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=one, skillsPlural=one": "{callsLabel} call · {skillsLabel} skill",
"callsPlural=one, skillsPlural=other": "{callsLabel} call · {skillsLabel} skills",
"callsPlural=other, skillsPlural=one": "{callsLabel} calls · {skillsLabel} skill",
"callsPlural=other, skillsPlural=other": "{callsLabel} calls · {skillsLabel} skills"
}
}
],
"analytics_top_skills_agent_breakdown": "Agent breakdown",
"analytics_top_skills_agents": "Agents",
"analytics_top_skills_projects": "Projects: {projects}",
"analytics_top_skills_empty": "No skill usage data",
"analytics_skill_trend_title": "Skill Usage Over Time",
"analytics_skill_trend_other": "Other",
"analytics_skill_trend_legend": "Toggle skills",
"analytics_skill_trend_chart_label": "Skill usage over time. Use the left and right arrow keys to inspect dates.",
"analytics_skill_trend_date": "Date",
"analytics_skill_trend_loading": "Loading skill usage...",
"analytics_skill_trend_empty": "No skill usage data",
"usage_model": "Model",
"usage_models": "Models",
"usage_refresh": "Refresh usage data",
"usage_summary_total_cost": "Total Cost",
"usage_summary_copilot_ai_credits": "Copilot AI Credits",
"usage_summary_unsupported_copilot_no_token_data": "Copilot sessions matched this range, but Copilot does not record per-message token usage.",
"usage_summary_unsupported_generic": "Matching sessions do not expose token usage data.",
"usage_summary_input_tokens": "Input Tokens",
"usage_summary_daily_burn": "Daily Burn",
"usage_summary_peak_day": "Peak Day",
"usage_summary_cache_hit": "Cache Hit",
"usage_summary_vs_prior": "{value} vs prior",
"usage_summary_cached_tokens": "{value} cached",
"usage_summary_avg_day": "avg/day",
"usage_filter_all": "{label}: All",
"usage_filter_selected": "{label}: {countLabel} selected",
"usage_filter_none": "{label}: None",
"usage_filter_hidden": "{label}: {countLabel} hidden",
"usage_filter_search": "Search...",
"usage_filter_select_all": "Select all",
"usage_filter_deselect_all": "Deselect all",
"usage_filter_all_items": [
{
"declarations": [
"input label",
"input count",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "All {label}",
"countPlural=other": "All {label}s"
}
}
],
"usage_cost_over_time_title": "Cost Over Time",
"usage_cost_attribution_title": "Cost Attribution",
"usage_attribution_treemap": "Treemap",
"usage_attribution_list": "List",
"usage_click_to_hide_hint": "Click to hide from chart",
"usage_click_to_hide": "Click to hide {label}",
"usage_hide_from_chart": "Hide {label} from chart",
"usage_cache_efficiency_title": "Cache Efficiency",
"usage_cache_reads": "Cache Reads",
"usage_cache_writes": "Cache Writes",
"usage_uncached_input": "Uncached Input",
"usage_output": "Output",
"usage_no_token_data": "No token data",
"usage_saved_vs_uncached": "{cost} saved vs uncached",
"usage_more_than_uncached": "{cost} more than uncached",
"usage_top_sessions_by_cost": "Top Sessions by Cost",
"settings_title": "Settings",
"settings_loading": "Loading settings...",
"settings_date_ranges_title": "Date ranges",
"settings_date_ranges_description": "Share date selections across Sessions, Usage, Activity, Trends, and Insights.",
"settings_date_ranges_link": "Link date ranges across pages",
"settings_resync_title_unavailable": "Full resync unavailable in read-only mode",
"settings_resync_unavailable_hint": "Unavailable while connected to a read-only backend",
"settings_resync_hint": "Re-scan all session files from scratch",
"settings_language_title": "Language",
"settings_language_description": "Choose the interface language.",
"settings_language_label": "Interface language",
"settings_language_english": "English",
"settings_language_simplified_chinese": "Simplified Chinese",
"settings_language_traditional_chinese": "Traditional Chinese",
"settings_language_korean": "Korean",
"settings_language_french": "French",
"settings_language_no_results": "No languages found",
"nav_recent_edits": "Recent Edits",
"recent_edits_title": "Recent Edits",
"recent_edits_empty": "No file edits found yet.",
"recent_edits_loading": "Loading recent edits...",
"recent_edits_count": "{count} edits",
"recent_edits_truncated": "showing latest {shown} of {total}",
"recent_edits_load_more": "Load more",
"recent_edits_refresh": "Refresh",
"recent_edits_search_placeholder": "Filter by file path",
"recent_edits_clear_search": "Clear file-path search",
"activity_insight_unavailable_read_only": "Unavailable in read-only remote mode",
"activity_insight_waiting_server": "Waiting for server version",
"activity_insight_generate_insight": "Generate insight",
"activity_insight_generation_failed": "Generation failed",
"activity_insight_title": "Activity Insight",
"activity_insight_open_insights_page": "Open in Insights page",
"activity_insight_agent_cli_title": "Agent CLI used to generate the insight",
"activity_insight_insight_agent": "Insight agent",
"activity_insight_loading": "Loading insight…",
"activity_insight_generating_phase": "Generating… {phase}",
"activity_insight_retry": "Retry",
"activity_insight_empty_text": "No insight yet for this range. Generate one to summarize this period's activity.",
"activity_insight_generate": "Generate",
"activity_filter_by_agent": "Filter by agent",
"activity_all_agents": "All Agents",
"activity_filter_by_machine": "Filter by machine",
"activity_all_machines": "All Machines",
"activity_filter_by_automation": "Filter by automation",
"activity_all_sessions": "All Sessions",
"activity_interactive": "Interactive",
"activity_automated": "Automated",
"activity_refresh": "Refresh activity",
"activity_project": "Project",
"activity_model": "Model",
"activity_agent": "Agent",
"activity_min_unit": " min",
"activity_int_auto_split": "int {int} / auto {auto}",
"activity_breakdown": "Breakdown",
"activity_breakdown_metric": "Breakdown metric",
"activity_agent_min": "Agent-min",
"activity_cost": "Cost",
"activity_none_lower": "none",
"activity_int_auto_short": "{int} int / {auto} auto",
"activity_peak_label": "peak {count}",
"activity_agent_min_value": "{value} agent-min",
"activity_no_sessions_selected_slot": "No sessions active in the selected slot.",
"activity_output_tokens_value": [
{
"declarations": [
"input count",
"input countLabel",
"local countPlural = count: plural"
],
"selectors": [
"countPlural"
],
"match": {
"countPlural=one": "{countLabel} output token",
"countPlural=other": "{countLabel} output tokens"
}
}
],
"activity_concurrency": "Concurrency",
"activity_overlay": "Overlay",
"activity_overlay_metric": "Concurrency overlay metric",
"activity_overlay_none": "None",
"activity_tokens": "Tokens",
"activity_filter_active_in_slot": "Filter sessions active in this time slot",
"activity_mixed": "mixed",
"activity_window": "Window",
"activity_sessions": "Sessions",
"activity_clear_time_filter": "Clear time filter",
"activity_active_filter": "Active: {label}",
"activity_total_count": "{count} total",
"activity_session": "Session",
"activity_automated_session": "Automated session",
"activity_auto": "Auto",
"activity_interactive_automated_split": "{interactive} interactive / {automated} automated",
"activity_untimed_count": "{count} untimed",
"activity_peak_concurrency": "Peak Concurrency",
"activity_at_time": "at {time}",
"activity_active": "Active",
"activity_idle_duration": "{duration} idle",
"activity_agent_minutes": "Agent-minutes",
"activity_projects": "Projects",
"activity_models": "Models",
"activity_total_cost": "Total Cost",
"activity_in_progress_as_of": "In progress, as of {time}",
"session_list_status_active": "Active",
"session_list_status_stale": "Stale",
"session_list_status_unclean": "Unclean",
"analytics_weekday_mon": "Mon",
"analytics_weekday_tue": "Tue",
"analytics_weekday_wed": "Wed",
"analytics_weekday_thu": "Thu",
"analytics_weekday_fri": "Fri",
"analytics_weekday_sat": "Sat",
"analytics_weekday_sun": "Sun",
"active_filters_label": "Filters:",
"active_filters_clear_date": "Clear date filter",
"active_filters_clear_project": "Clear project filter",
"active_filters_remove_filter": "Remove {name} filter",
"active_filters_clear_min_prompts": "Clear min prompts filter",
"active_filters_min_prompts": "≥{count} prompts",
"active_filters_clear_recently_active": "Clear recently active filter",
"active_filters_active24h": "Active 24h",
"active_filters_remove_status": "Remove {status} from status filter",
"active_filters_status_prefix": "Status: {status}",
"active_filters_clear_single_turn": "Clear single-turn filter",
"active_filters_single_turn_hidden": "Single-turn hidden",
"active_filters_clear_automated": "Clear automated filter",
"active_filters_only_automated": "Only automated",
"active_filters_automated_included": "Automated included",
"active_filters_clear_time": "Clear time filter",
"active_filters_clear_all_title": "Clear all filters",
"active_filters_clear_all": "Clear all",
"analytics_messages": "Messages",