-
Notifications
You must be signed in to change notification settings - Fork 513
Expand file tree
/
Copy pathko.json
More file actions
1824 lines (1824 loc) · 85.5 KB
/
Copy pathko.json
File metadata and controls
1824 lines (1824 loc) · 85.5 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": "이 서버는 접근하려면 인증 토큰이 필요합니다. ~/.agentsview/config.toml 또는 AGENTSVIEW_AUTH_TOKEN의 auth_token 값을 입력하세요.",
"app_auth_placeholder": "인증 토큰 붙여넣기",
"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": "토큰 사용량",
"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": "일반 트랜스크립트 - 모든 메시지 표시",
"header_transcript_normal_label": "일반 트랜스크립트 모드",
"header_transcript_normal": "일반",
"header_transcript_focused_title": "집중 트랜스크립트 - 사용자 프롬프트와 최종 답변만 표시",
"header_transcript_focused_label": "집중 트랜스크립트 모드",
"header_transcript_focused": "집중",
"header_transcript_filter_title": "블록 유형 필터",
"header_transcript_filter_label": "블록 유형 필터",
"header_transcript_visibility": "블록 표시 여부",
"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": "마크다운 링크 복사됨",
"header_actions_copy_markdown_link": "마크다운 내보내기 링크 복사",
"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, 토큰을 확인하거나 연결을 해제하세요.",
"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": "빌드: {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에는 도구 결과, 사고 내용, 변경 사항(diff)이 없습니다. 전체 충실도를 보려면 agy-reader 사이드카가 필요합니다 — 설치하거나, 이미 설치했다면 따라잡을 때까지 기다리세요. 방법을 알아보려면 클릭하세요.",
"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": "{total}개 중 {current}번째",
"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": "에이전트",
"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": "턴 {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_group_copy_tool_calls": "도구 호출 복사",
"tool_call_group_copied_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_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": "에이전트:",
"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": "도구 호출 도중 종료됨 (1시간 이상 유휴)",
"sidebar_expand_group": "{name} 그룹 펼치기",
"sidebar_collapse_group": "{name} 그룹 접기",
"sidebar_subagents": "서브에이전트",
"sidebar_team": "팀",
"sidebar_filters_filter_sessions": "세션 필터링",
"sidebar_filters_filters": "필터",
"sidebar_filters_display": "표시",
"sidebar_filters_group_by_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": "에이전트",
"sidebar_filters_search_agents": "에이전트 검색...",
"sidebar_filters_all_agents": "모든 에이전트",
"sidebar_filters_no_match": "일치 항목 없음",
"sidebar_filters_no_agents": "에이전트 없음",
"sidebar_filters_machine": "머신",
"sidebar_filters_search_machines": "머신 검색...",
"sidebar_filters_no_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} 모델 필터 제거",
"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": "지난 1년",
"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": "에이전트 비교",
"analytics_agent_comparison_empty": "비교 데이터 없음 (에이전트 2개 이상 필요)",
"analytics_col_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": "도구 호출",
"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": "도구 사용량",
"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": "도구 사용 데이터 없음",
"analytics_tool_usage_loading": "도구 사용 데이터 불러오는 중...",
"analytics_tool_usage_top_tools": "상위 도구",
"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": "에이전트별",
"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": "출력 토큰 기준",
"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}",
"analytics_metric_messages": "메시지",
"analytics_metric_sessions": "세션",
"analytics_metric_output_tokens": "출력 토큰",
"analytics_granularity_day": "일",
"analytics_granularity_week": "주",
"analytics_granularity_month": "월",
"analytics_granularity_label": "시간 단위",
"analytics_activity_empty": "활동 데이터 없음",
"analytics_activity_title": "활동",
"analytics_heatmap_showing_recent_year": "최근 1년 표시 중",
"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": "도구 실패",
"analytics_session_health_compactions": "컴팩션",
"analytics_session_health_mid_task": "작업 중",
"analytics_session_health_avg_per_session": "세션당 평균 {value}",
"analytics_top_skills_title": "인기 스킬",
"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}개 스킬"
}
}
],
"analytics_top_skills_agent_breakdown": "에이전트별 세부 내역",
"analytics_top_skills_agents": "에이전트",
"analytics_top_skills_projects": "프로젝트: {projects}",
"analytics_top_skills_empty": "스킬 사용 데이터가 없습니다",
"analytics_skill_trend_title": "시간별 스킬 사용량",
"analytics_skill_trend_other": "기타",
"analytics_skill_trend_legend": "스킬 표시 전환",
"analytics_skill_trend_chart_label": "시간별 스킬 사용량입니다. 왼쪽 및 오른쪽 화살표 키를 사용하여 날짜를 확인하세요.",
"analytics_skill_trend_date": "날짜",
"analytics_skill_trend_loading": "스킬 사용 데이터 불러오는 중...",
"analytics_skill_trend_empty": "스킬 사용 데이터가 없습니다",
"usage_model": "모델",
"usage_models": "모델",
"usage_refresh": "사용량 데이터 새로고침",
"usage_summary_total_cost": "총 비용",
"usage_summary_copilot_ai_credits": "Copilot AI 크레딧",
"usage_summary_unsupported_copilot_no_token_data": "이 기간에 해당하는 Copilot 세션이 있지만, Copilot은 메시지별 토큰 사용량을 기록하지 않습니다.",
"usage_summary_unsupported_generic": "일치하는 세션에 토큰 사용량 데이터가 없습니다.",
"usage_summary_input_tokens": "입력 토큰",
"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": "토큰 데이터가 없습니다",
"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": "영어",
"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": "전체 {total}건 중 최근 {shown}건 표시",
"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} 출력 토큰"
}
}
],
"activity_concurrency": "동시성",
"activity_overlay": "오버레이",
"activity_overlay_metric": "동시성 오버레이 지표",
"activity_overlay_none": "없음",
"activity_tokens": "토큰",
"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": "출력 토큰",
"analytics_showing_recent_year": "최근 1년 표시",
"analytics_no_data_period": "이 기간에 데이터 없음",