loadtoagent 1.3.1 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.ko.md +11 -9
- package/docs/PROVIDER-CONTRACTS.md +8 -6
- package/main.js +25 -3
- package/package.json +1 -1
- package/preload.js +7 -2
- package/renderer/app-dashboard.js +18 -12
- package/renderer/app-graph-view.js +1 -1
- package/renderer/app-management.js +91 -45
- package/renderer/app-run-modal.js +1 -1
- package/renderer/app.js +1 -1
- package/renderer/i18n-messages.js +212 -199
- package/renderer/index.html +28 -27
- package/renderer/styles-agent-map.css +10 -10
- package/renderer/styles-cards.css +19 -19
- package/renderer/styles-collaboration.css +23 -23
- package/renderer/styles-components.css +36 -36
- package/renderer/styles-management.css +23 -14
- package/renderer/styles-onboarding.css +8 -8
- package/renderer/styles-overlays.css +5 -5
- package/renderer/styles-product.css +24 -24
- package/renderer/styles-quality.css +4 -4
- package/renderer/styles-readability.css +179 -1
- package/renderer/styles-responsive-runtime.css +5 -5
- package/renderer/styles-responsive-workflows.css +2 -2
- package/renderer/styles-run-composer.css +23 -23
- package/renderer/styles-runtime-overview.css +22 -22
- package/renderer/styles-settings.css +21 -21
- package/renderer/styles-terminal.css +66 -66
- package/renderer/styles-tmux.css +49 -49
- package/renderer/styles-workflows.css +48 -48
- package/renderer/styles.css +7 -7
- package/renderer/terminal-events.js +34 -11
- package/renderer/terminal-workbench.js +52 -21
- package/renderer/terminal.js +9 -1
- package/src/contracts.js +5 -5
- package/src/ipc/registerTerminalIpc.js +6 -14
- package/src/sessionIntelligence.js +18 -4
- package/src/terminalHost.js +100 -26
- package/src/terminalHostDaemon.js +1 -0
- package/src/terminalManager.js +61 -4
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"observed.external_environment": {"ko":"외부 환경","en":"External environment","zh-CN":"外部环境"},
|
|
11
11
|
"observed.cli_starting": {"ko":"CLI 시작 중","en":"Starting CLI","zh-CN":"正在启动 CLI"},
|
|
12
12
|
"observed.preparing_run": {"ko":"실행 준비","en":"Preparing run","zh-CN":"正在准备运行"},
|
|
13
|
-
"observed.agent_loop_running": {"ko":"
|
|
13
|
+
"observed.agent_loop_running": {"ko":"AI 작업 처리 중","en":"AI work in progress","zh-CN":"AI 正在处理任务"},
|
|
14
14
|
"observed.session_started": {"ko":"세션 시작","en":"Session started","zh-CN":"会话已开始"},
|
|
15
15
|
"observed.response_streaming": {"ko":"응답 스트리밍 중","en":"Streaming response","zh-CN":"正在流式传输回答"},
|
|
16
16
|
"observed.tool_running": {"ko":"도구 실행","en":"Running tool","zh-CN":"正在运行工具"},
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"observed.last_response_ended": {"ko":"마지막 응답 기록이 종료됨","en":"Last response record ended","zh-CN":"最后的回答记录已结束"},
|
|
48
48
|
"observed.waiting_for_request": {"ko":"다음 요청 대기","en":"Waiting for the next request","zh-CN":"正在等待下一个请求"},
|
|
49
49
|
"observed.codex_desktop": {"ko":"Codex 데스크톱 앱","en":"Codex desktop app","zh-CN":"Codex 桌面应用"},
|
|
50
|
-
"observed.subagent_started": {"ko":"
|
|
51
|
-
"observed.subagent_status_changed": {"ko":"
|
|
50
|
+
"observed.subagent_started": {"ko":"도움 AI 실행 시작","en":"Helper AI started","zh-CN":"协助 AI 已启动"},
|
|
51
|
+
"observed.subagent_status_changed": {"ko":"도움 AI 상태 변경","en":"Helper AI status changed","zh-CN":"协助 AI 状态已更改"},
|
|
52
52
|
"observed.deciding": {"ko":"판단 중","en":"Deciding","zh-CN":"正在判断"},
|
|
53
53
|
"observed.deciding_next": {"ko":"다음 작업을 판단하고 결과를 정리하는 중","en":"Deciding the next step and organizing results","zh-CN":"正在判断下一步并整理结果"},
|
|
54
54
|
"observed.main_assignment": {"ko":"메인 AI 작업 지시","en":"Main AI assignment","zh-CN":"主 AI 任务指令"},
|
|
@@ -58,12 +58,12 @@
|
|
|
58
58
|
"observed.interrupt_requested": {"ko":"작업 중단 요청","en":"Interrupt requested","zh-CN":"已请求中断任务"},
|
|
59
59
|
"observed.result_returned": {"ko":"결과 반환","en":"Result returned","zh-CN":"结果已返回"},
|
|
60
60
|
"observed.assignment_delivered": {"ko":"작업 전달","en":"Assignment delivered","zh-CN":"任务已传递"},
|
|
61
|
-
"observed.agent_message": {"ko":"
|
|
61
|
+
"observed.agent_message": {"ko":"AI 메시지","en":"AI message","zh-CN":"AI 消息"},
|
|
62
62
|
"observed.error_occurred": {"ko":"오류 발생","en":"Error occurred","zh-CN":"发生错误"},
|
|
63
63
|
"observed.receiving_events": {"ko":"실시간 이벤트 수신 중","en":"Receiving live events","zh-CN":"正在接收实时事件"},
|
|
64
|
-
"observed.subagent_work": {"ko":"
|
|
64
|
+
"observed.subagent_work": {"ko":"도움 AI 작업","en":"Helper AI work","zh-CN":"协助 AI 工作"},
|
|
65
65
|
"observed.completion_record": {"ko":"작업 완료 기록","en":"Completion record","zh-CN":"任务完成记录"},
|
|
66
|
-
"observed.start_observed": {"ko":"실행 시작
|
|
66
|
+
"observed.start_observed": {"ko":"실행 시작 이벤트 확인","en":"Start event confirmed","zh-CN":"已确认启动事件"},
|
|
67
67
|
"observed.status_only": {"ko":"상태 기록만 확인됨","en":"Only a status record was observed","zh-CN":"仅观测到状态记录"},
|
|
68
68
|
"observed.codex_collaboration": {"ko":"Codex 협업 이벤트","en":"Codex collaboration event","zh-CN":"Codex 协作事件"},
|
|
69
69
|
"observed.assignment_confirmed": {"ko":"작업 배정 확인","en":"Assignment confirmed","zh-CN":"任务分配已确认"},
|
|
@@ -79,26 +79,26 @@
|
|
|
79
79
|
"observed.ai_cli_running": {"ko":"AI CLI 프로세스 실행 중","en":"AI CLI process running","zh-CN":"AI CLI 进程运行中"},
|
|
80
80
|
"observed.pid_status": {"ko":"{status} · PID {pid}","en":"{status} · PID {pid}","zh-CN":"{status} · PID {pid}"},
|
|
81
81
|
"observed.cli_exit_code": {"ko":"CLI 종료 코드 {code}{signal}","en":"CLI exit code {code}{signal}","zh-CN":"CLI 退出代码 {code}{signal}"},
|
|
82
|
-
"runtime.section_label": {"ko":"예약 작업과 실행
|
|
83
|
-
"runtime.eyebrow": {"ko":"
|
|
84
|
-
"runtime.title": {"ko":"
|
|
85
|
-
"runtime.description": {"ko":"
|
|
86
|
-
"runtime.status_summary": {"ko":"예약
|
|
82
|
+
"runtime.section_label": {"ko":"예약 작업과 AI 실행 단계","en":"Scheduled work and AI run stages","zh-CN":"计划任务与 AI 执行阶段"},
|
|
83
|
+
"runtime.eyebrow": {"ko":"예약과 단계 추적","en":"Schedules and stage tracking","zh-CN":"计划与阶段追踪"},
|
|
84
|
+
"runtime.title": {"ko":"예약·실행 단계","en":"Schedules & run stages","zh-CN":"计划与执行阶段"},
|
|
85
|
+
"runtime.description": {"ko":"실제 예약 작업과 현재 AI의 추정 실행 단계를 나눠서 확인합니다.","en":"Review actual schedules separately from each AI's inferred run stage.","zh-CN":"分别查看实际计划任务与当前 AI 的推测执行阶段。"},
|
|
86
|
+
"runtime.status_summary": {"ko":"예약 작업과 실행 단계","en":"Schedules and run stages","zh-CN":"计划任务与执行阶段"},
|
|
87
87
|
"runtime.schedules_count": {"ko":"예약 {count}","en":"{count} scheduled","zh-CN":"{count} 个计划"},
|
|
88
88
|
"runtime.paused_count": {"ko":"일시정지 {count}","en":"{count} paused","zh-CN":"{count} 个已暂停"},
|
|
89
|
-
"runtime.loops_count": {"ko":"
|
|
90
|
-
"runtime.schedule_lane": {"ko":"예약
|
|
89
|
+
"runtime.loops_count": {"ko":"단계 추적 {count}","en":"{count} stage trackers","zh-CN":"{count} 个阶段追踪"},
|
|
90
|
+
"runtime.schedule_lane": {"ko":"실제 예약 작업","en":"Actual schedules","zh-CN":"实际计划任务"},
|
|
91
91
|
"runtime.next_schedules": {"ko":"다음 예약","en":"Up next","zh-CN":"后续计划"},
|
|
92
92
|
"runtime.schedule_list": {"ko":"전체 예약","en":"All schedules","zh-CN":"全部计划"},
|
|
93
93
|
"runtime.schedule_list_label": {"ko":"활성 및 일시정지 예약 목록","en":"Active and paused schedules","zh-CN":"启用和暂停的计划列表"},
|
|
94
94
|
"runtime.schedule_list_scroll_label": {"ko":"활성 및 일시정지 예약 목록. 방향키와 Page Up, Page Down 키로 스크롤할 수 있습니다.","en":"Active and paused schedules. Use arrow, Page Up, or Page Down keys to scroll.","zh-CN":"启用和暂停的计划列表。可使用方向键、Page Up 或 Page Down 滚动。"},
|
|
95
95
|
"runtime.schedule_list_action_label": {"ko":"활성 및 일시정지 예약 목록. Tab 키로 연결된 작업을 여는 버튼으로 이동할 수 있습니다.","en":"Active and paused schedules. Press Tab to reach buttons that open linked work.","zh-CN":"启用和暂停的计划列表。按 Tab 可移动到打开关联任务的按钮。"},
|
|
96
96
|
"runtime.paused": {"ko":"일시정지","en":"Paused","zh-CN":"已暂停"},
|
|
97
|
-
"runtime.workspace_unspecified": {"ko":"
|
|
98
|
-
"runtime.loop_lane": {"ko":"
|
|
99
|
-
"runtime.loop_system": {"ko":"현재
|
|
100
|
-
"runtime.inferred_phase": {"ko":"최근
|
|
101
|
-
"runtime.choose_loop": {"ko":"확인할
|
|
97
|
+
"runtime.workspace_unspecified": {"ko":"작업 폴더 미지정","en":"No work folder","zh-CN":"未指定工作文件夹"},
|
|
98
|
+
"runtime.loop_lane": {"ko":"AI 실행 단계 추적","en":"AI run-stage tracking","zh-CN":"AI 执行阶段追踪"},
|
|
99
|
+
"runtime.loop_system": {"ko":"현재 추정 단계","en":"Current inferred stage","zh-CN":"当前推测阶段"},
|
|
100
|
+
"runtime.inferred_phase": {"ko":"명시된 단계가 없으면 최근 이벤트 문구를 바탕으로 추정합니다.","en":"When no explicit stage is reported, it is inferred from recent event text.","zh-CN":"未报告明确阶段时,将根据最近的事件文本进行推测。"},
|
|
101
|
+
"runtime.choose_loop": {"ko":"단계를 확인할 AI 작업 선택","en":"Choose AI work to inspect","zh-CN":"选择要查看阶段的 AI 任务"},
|
|
102
102
|
"runtime.no_schedules": {"ko":"등록된 예약 없음","en":"No schedules","zh-CN":"没有计划"},
|
|
103
103
|
"runtime.no_schedules_detail": {"ko":"예약을 만들면 다음 실행 시각이 여기에 표시됩니다.","en":"The next run appears here when a schedule is created.","zh-CN":"创建计划后,下次执行时间会显示在这里。"},
|
|
104
104
|
"runtime.not_scheduled": {"ko":"실행 시각 미정","en":"Run time unavailable","zh-CN":"执行时间未定"},
|
|
@@ -114,39 +114,39 @@
|
|
|
114
114
|
"runtime.every_n_minutes": {"ko":"{count}분마다","en":"Every {count} minutes","zh-CN":"每 {count} 分钟"},
|
|
115
115
|
"runtime.at_minute": {"ko":"매시 {minute}분","en":"at :{minute}","zh-CN":"每小时第 {minute} 分"},
|
|
116
116
|
"runtime.recurring": {"ko":"반복 실행","en":"Recurring","zh-CN":"重复执行"},
|
|
117
|
-
"runtime.active_loop": {"ko":"
|
|
117
|
+
"runtime.active_loop": {"ko":"현재 실행 단계 추적 중","en":"Run stage is being tracked","zh-CN":"正在追踪执行阶段"},
|
|
118
118
|
"runtime.open_task": {"ko":"작업 열기","en":"Open task","zh-CN":"打开任务"},
|
|
119
|
-
"runtime.loop_flow_label": {"ko":"입력, 판단, 실행,
|
|
120
|
-
"runtime.loop_flow_state": {"ko":"
|
|
119
|
+
"runtime.loop_flow_label": {"ko":"최근 이벤트에서 추정한 입력, 판단, 실행, 결과 확인 단계","en":"Input, decision, action, and result-check stages inferred from recent events","zh-CN":"根据最近事件推测的输入、判断、执行与结果确认阶段"},
|
|
120
|
+
"runtime.loop_flow_state": {"ko":"최근 이벤트 문구로 추정한 현재 위치는 {phase} 단계입니다.","en":"The current stage inferred from recent event text is {phase}.","zh-CN":"根据最近事件文本推测,当前处于{phase}阶段。"},
|
|
121
121
|
"runtime.phase_input": {"ko":"입력","en":"Input","zh-CN":"输入"},
|
|
122
|
-
"runtime.phase_input_detail": {"ko":"목표 ·
|
|
122
|
+
"runtime.phase_input_detail": {"ko":"목표 · 이전 정보","en":"Goal · prior information","zh-CN":"目标 · 前置信息"},
|
|
123
123
|
"runtime.phase_decide": {"ko":"판단","en":"Decide","zh-CN":"判断"},
|
|
124
|
-
"runtime.phase_decide_detail": {"ko":"계획 ·
|
|
124
|
+
"runtime.phase_decide_detail": {"ko":"계획 · 판단 과정","en":"Plan · reasoning process","zh-CN":"计划 · 判断过程"},
|
|
125
125
|
"runtime.phase_act": {"ko":"실행","en":"Act","zh-CN":"执行"},
|
|
126
|
-
"runtime.phase_act_detail": {"ko":"
|
|
127
|
-
"runtime.phase_observe": {"ko":"
|
|
128
|
-
"runtime.phase_observe_detail": {"ko":"결과 ·
|
|
129
|
-
"runtime.phase_repeat": {"ko":"다음
|
|
126
|
+
"runtime.phase_act_detail": {"ko":"명령 실행 · 도움 AI 요청","en":"Run commands · ask helper AI","zh-CN":"执行命令 · 请求协助 AI"},
|
|
127
|
+
"runtime.phase_observe": {"ko":"결과 확인","en":"Check results","zh-CN":"检查结果"},
|
|
128
|
+
"runtime.phase_observe_detail": {"ko":"결과 · 확인","en":"Result · check","zh-CN":"结果 · 检查"},
|
|
129
|
+
"runtime.phase_repeat": {"ko":"다음 이벤트 반영","en":"Update from next event","zh-CN":"根据下一事件更新"},
|
|
130
130
|
"runtime.phase_done": {"ko":"완료","en":"Done","zh-CN":"完成"},
|
|
131
131
|
"runtime.phase_active": {"ko":"현재","en":"Current","zh-CN":"当前"},
|
|
132
132
|
"runtime.phase_queued": {"ko":"다음","en":"Next","zh-CN":"下一步"},
|
|
133
|
-
"runtime.current_phase": {"ko":"현재 단계","en":"Current
|
|
133
|
+
"runtime.current_phase": {"ko":"현재 추정 단계","en":"Current inferred stage","zh-CN":"当前推测阶段"},
|
|
134
134
|
"runtime.now_working": {"ko":"지금 하는 일","en":"Working on now","zh-CN":"当前工作"},
|
|
135
|
-
"runtime.last_signal_time": {"ko":"최근
|
|
136
|
-
"runtime.latest_signal": {"ko":"최근
|
|
135
|
+
"runtime.last_signal_time": {"ko":"최근 이벤트 · {time}","en":"Latest event · {time}","zh-CN":"最近事件 · {time}"},
|
|
136
|
+
"runtime.latest_signal": {"ko":"최근 이벤트","en":"Latest event","zh-CN":"最近事件"},
|
|
137
137
|
"runtime.running_time": {"ko":"실행 시간","en":"Runtime","zh-CN":"运行时间"},
|
|
138
|
-
"runtime.iteration": {"ko":"반복
|
|
138
|
+
"runtime.iteration": {"ko":"반복 실행 횟수","en":"Repeat-run count","zh-CN":"重复执行次数"},
|
|
139
139
|
"runtime.iteration_value": {"ko":"{count}회차","en":"#{count}","zh-CN":"第 {count} 轮"},
|
|
140
|
-
"runtime.iteration_observed": {"ko":"
|
|
141
|
-
"runtime.iteration_scheduled": {"ko":"
|
|
140
|
+
"runtime.iteration_observed": {"ko":"반복 횟수 미보고","en":"Iteration count not reported","zh-CN":"未报告循环次数"},
|
|
141
|
+
"runtime.iteration_scheduled": {"ko":"예약에서 시작됨","en":"Started from a schedule","zh-CN":"由计划任务启动"},
|
|
142
142
|
"runtime.subagents": {"ko":"도움 AI","en":"Helper AI","zh-CN":"协助 AI"},
|
|
143
143
|
"runtime.subagents_running": {"ko":"{running}/{total} 실행","en":"{running}/{total} running","zh-CN":"{running}/{total} 运行中"},
|
|
144
144
|
"runtime.subagents_total": {"ko":"{count}개 연결","en":"{count} linked","zh-CN":"已连接 {count} 个"},
|
|
145
145
|
"runtime.just_started": {"ko":"방금 시작","en":"Just started","zh-CN":"刚刚开始"},
|
|
146
146
|
"runtime.elapsed_minutes": {"ko":"{count}분 경과","en":"{count}m elapsed","zh-CN":"已运行 {count} 分钟"},
|
|
147
147
|
"runtime.elapsed_hours": {"ko":"{count}시간 경과","en":"{count}h elapsed","zh-CN":"已运行 {count} 小时"},
|
|
148
|
-
"runtime.no_active_loop": {"ko":"현재
|
|
149
|
-
"runtime.no_active_loop_detail": {"ko":"
|
|
148
|
+
"runtime.no_active_loop": {"ko":"현재 단계 추적 중인 AI 작업 없음","en":"No AI run stage is being tracked","zh-CN":"当前没有正在追踪阶段的 AI 任务"},
|
|
149
|
+
"runtime.no_active_loop_detail": {"ko":"예약에서 시작된 작업이나 반복 목표가 있는 AI 작업의 추정 단계가 여기에 나타납니다.","en":"Inferred stages appear here for work started from a schedule or work with a repeating goal.","zh-CN":"由计划启动或包含重复目标的 AI 任务,其推测阶段会显示在这里。"},
|
|
150
150
|
"quality.clear_conditions": {"ko":"조건 지우기","en":"Clear conditions","zh-CN":"清除条件"},
|
|
151
151
|
"quality.clear_draft": {"ko":"초안 지우기","en":"Clear draft","zh-CN":"清除草稿"},
|
|
152
152
|
"quality.command.action": {"ko":"빠른 작업","en":"Quick action","zh-CN":"快捷操作"},
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"quality.copy_failed": {"ko":"복사하지 못했습니다.","en":"Could not copy.","zh-CN":"复制失败。"},
|
|
157
157
|
"quality.copy_success": {"ko":"클립보드에 복사했습니다.","en":"Copied to the clipboard.","zh-CN":"已复制到剪贴板。"},
|
|
158
158
|
"quality.copy_task_id": {"ko":"전체 작업 ID 복사","en":"Copy full task ID","zh-CN":"复制完整任务 ID"},
|
|
159
|
-
"quality.copy_workspace": {"ko":"시작
|
|
159
|
+
"quality.copy_workspace": {"ko":"작업 시작 폴더 전체 경로 복사","en":"Copy full work-origin folder path","zh-CN":"复制任务起始文件夹完整路径"},
|
|
160
160
|
"quality.disabled_reason": {"ko":"현재 조건에서는 사용할 수 없습니다.","en":"Unavailable for the current state.","zh-CN":"当前状态不可用。"},
|
|
161
161
|
"quality.draft_cleared": {"ko":"새 작업 초안을 지웠습니다.","en":"New task draft cleared.","zh-CN":"已清除新任务草稿。"},
|
|
162
162
|
"quality.nav_count": {"ko":"{label} · {count}개","en":"{label} · {count}","zh-CN":"{label} · {count} 个"},
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
"quality.unit.tasks": {"ko":"작업","en":"tasks","zh-CN":"项任务"},
|
|
165
165
|
"quality.unit.runs": {"ko":"실행","en":"runs","zh-CN":"项运行"},
|
|
166
166
|
"quality.unit.sessions": {"ko":"세션","en":"sessions","zh-CN":"个会话"},
|
|
167
|
-
"quality.unit.groups": {"ko":"
|
|
167
|
+
"quality.unit.groups": {"ko":"세션","en":"sessions","zh-CN":"个会话"},
|
|
168
168
|
"quality.unit.items": {"ko":"항목","en":"items","zh-CN":"项"},
|
|
169
169
|
"quality.quick_close": {"ko":"빠른 이동 닫기","en":"Close quick navigation","zh-CN":"关闭快速导航"},
|
|
170
170
|
"quality.quick_commands": {"ko":"빠른 이동 명령","en":"Quick navigation commands","zh-CN":"快速导航命令"},
|
|
@@ -193,9 +193,9 @@
|
|
|
193
193
|
"quality.terminal_draft_cleared": {"ko":"작성 중인 명령을 지웠습니다.","en":"Command draft cleared.","zh-CN":"已清除命令草稿。"},
|
|
194
194
|
"quality.terminal_sessions": {"ko":"터미널 세션","en":"Terminal sessions","zh-CN":"终端会话"},
|
|
195
195
|
"quality.tmux_panes": {"ko":"tmux 칸","en":"tmux panes","zh-CN":"tmux 窗格"},
|
|
196
|
-
"quality.workspace_added": {"ko":"
|
|
197
|
-
"quality.workspace_filter": {"ko":"
|
|
198
|
-
"quality.workspace_removed": {"ko":"{name}
|
|
196
|
+
"quality.workspace_added": {"ko":"폴더 필터를 추가했습니다. 현재 {count}개가 고정되어 있습니다.","en":"Folder filter added. {count} are now pinned.","zh-CN":"已添加文件夹筛选器。当前固定了 {count} 个。"},
|
|
197
|
+
"quality.workspace_filter": {"ko":"작업 시작 폴더별 AI 세션 필터","en":"AI-session filter by work origin folder","zh-CN":"按任务起始文件夹筛选 AI 会话"},
|
|
198
|
+
"quality.workspace_removed": {"ko":"{name} 폴더 필터 고정을 해제했습니다.","en":"Unpinned the {name} folder filter.","zh-CN":"已取消固定 {name} 文件夹筛选器。"},
|
|
199
199
|
"settings.update.view": {"ko":"업데이트 보기","en":"View update","zh-CN":"查看更新"},
|
|
200
200
|
"terminal.direct_control": {"ko":"명령창 직접 다루기","en":"Direct terminal control","zh-CN":"直接控制终端"},
|
|
201
201
|
"terminal.window_layout": {"ko":"창 배치","en":"Window layout","zh-CN":"窗口布局"},
|
|
@@ -208,13 +208,13 @@
|
|
|
208
208
|
"graph.running_in_split_terminal": {"ko":"분할 터미널에서 실행","en":"Running in a split terminal","zh-CN":"在分屏终端中运行"},
|
|
209
209
|
"graph.standard_run": {"ko":"일반 실행","en":"Standard run","zh-CN":"常规运行"},
|
|
210
210
|
"graph.tmux_not_used": {"ko":"TMUX 미사용","en":"TMUX not used","zh-CN":"未使用 TMUX"},
|
|
211
|
-
"workspace.unknown": {"ko":"
|
|
212
|
-
"workspace.remove_named": {"ko":"{name}
|
|
213
|
-
"project.all": {"ko":"모든 프로젝트","en":"All
|
|
214
|
-
"project.empty": {"ko":"세션이
|
|
215
|
-
"project.filter_named": {"ko":"{name}
|
|
216
|
-
"project.origin": {"ko":"시작
|
|
217
|
-
"project.origin_named": {"ko":"시작
|
|
211
|
+
"workspace.unknown": {"ko":"작업 시작 폴더 미상","en":"Unknown work-origin folder","zh-CN":"任务起始文件夹未知"},
|
|
212
|
+
"workspace.remove_named": {"ko":"{name} 폴더 필터 고정 해제","en":"Unpin the {name} folder filter","zh-CN":"取消固定 {name} 文件夹筛选器"},
|
|
213
|
+
"project.all": {"ko":"모든 프로젝트 폴더","en":"All project folders","zh-CN":"所有项目文件夹"},
|
|
214
|
+
"project.empty": {"ko":"AI 세션이 감지되면 작업 시작 폴더별로 자동 분류됩니다.","en":"Detected AI sessions are grouped automatically by their work-origin folder.","zh-CN":"检测到 AI 会话后,将按任务起始文件夹自动分组。"},
|
|
215
|
+
"project.filter_named": {"ko":"{name} 폴더에서 시작한 AI 세션 {count}개 보기","en":"Show {count} AI sessions started from the {name} folder","zh-CN":"查看从 {name} 文件夹启动的 {count} 个 AI 会话"},
|
|
216
|
+
"project.origin": {"ko":"작업 시작 폴더","en":"Work origin folder","zh-CN":"任务起始文件夹"},
|
|
217
|
+
"project.origin_named": {"ko":"작업 시작 폴더 · {name}","en":"Work origin folder · {name}","zh-CN":"任务起始文件夹 · {name}"},
|
|
218
218
|
"bootstrap.module_missing": {"ko":"앱 모듈을 찾지 못했습니다: {name}","en":"App module not found: {name}","zh-CN":"找不到应用模块:{name}"},
|
|
219
219
|
"terminal.windows_shell": {"ko":"Windows 명령창","en":"Windows shell","zh-CN":"Windows 命令行"},
|
|
220
220
|
"activity.waiting_for_result": {"ko":"실행 중인 작업 결과를 기다리는 중{wait}","en":"Waiting for the running task result{wait}","zh-CN":"正在等待运行中任务的结果{wait}"},
|
|
@@ -234,13 +234,13 @@
|
|
|
234
234
|
"agent.resume_check_failed": {"ko":"세션 재개 가능 여부를 확인하지 못했습니다.","en":"Could not determine whether this session can be resumed.","zh-CN":"无法确认此会话是否可以恢复。"},
|
|
235
235
|
"agent.desktop_app": {"ko":"{provider} 데스크톱 앱","en":"{provider} desktop app","zh-CN":"{provider} 桌面应用"},
|
|
236
236
|
"agent.desktop": {"ko":"데스크톱","en":"desktop","zh-CN":"桌面"},
|
|
237
|
-
"agent.direct_status": {"ko":"
|
|
237
|
+
"agent.direct_status": {"ko":"지금 입력 가능 · {target}","en":"Ready for input now · {target}","zh-CN":"现在可输入 · {target}"},
|
|
238
238
|
"agent.choose_terminal_count": {"ko":"{count}개 터미널 중 선택","en":"choose from {count} terminals","zh-CN":"从 {count} 个终端中选择"},
|
|
239
|
-
"agent.handoff_status": {"ko":"
|
|
240
|
-
"agent.resume_status": {"ko":"원래
|
|
241
|
-
"agent.origin_resume_status": {"ko":"쉬는 데스크톱 작업 · 백그라운드
|
|
242
|
-
"agent.connect_status": {"ko":"
|
|
243
|
-
"agent.origin_status": {"ko":"
|
|
239
|
+
"agent.handoff_status": {"ko":"외부에서 실행 중 · 관리 터미널로 전환 가능","en":"Running externally · can switch to a managed terminal","zh-CN":"正在外部运行 · 可切换到托管终端"},
|
|
240
|
+
"agent.resume_status": {"ko":"원래 터미널 종료됨 · 같은 AI 대화를 새 터미널에서 재개 가능","en":"Original terminal ended · the same AI conversation can resume in a new terminal","zh-CN":"原终端已结束 · 可在新终端恢复同一 AI 对话"},
|
|
241
|
+
"agent.origin_resume_status": {"ko":"쉬는 데스크톱 작업 · 새 백그라운드 터미널에서 재개 가능","en":"Idle desktop task · can resume in a new background terminal","zh-CN":"桌面任务已空闲 · 可在新的后台终端恢复"},
|
|
242
|
+
"agent.connect_status": {"ko":"현재는 보기만 가능 · 연결용 시작 명령이 필요","en":"View-only for now · a connection start command is required","zh-CN":"目前仅可查看 · 需要连接启动命令"},
|
|
243
|
+
"agent.origin_status": {"ko":"현재는 보기만 가능 · 원래 앱에서 입력","en":"View-only here · enter input in the original app","zh-CN":"此处仅可查看 · 请在原应用中输入"},
|
|
244
244
|
"agent.direct_help": {"ko":"기존 터미널에 바로 보냅니다. 앱 창을 닫아도 백그라운드에서 세션을 계속 유지합니다.","en":"Sends directly to the existing terminal. The session stays active in the background after this window closes.","zh-CN":"直接发送到现有终端。关闭此窗口后,会话仍会在后台保持运行。"},
|
|
245
245
|
"agent.handoff_help": {"ko":"같은 세션 ID와 대화 내역을 LoadToAgent 관리 터미널로 이어받고 백그라운드에서 유지합니다.","en":"Hands the same session ID and conversation history to a LoadToAgent-managed terminal and keeps it in the background.","zh-CN":"将相同的会话 ID 和对话记录接管到 LoadToAgent 管理的终端,并在后台保持运行。"},
|
|
246
246
|
"agent.resume_help": {"ko":"기존 세션 ID와 대화 맥락을 복구하고, 앱 창을 닫아도 백그라운드에서 유지합니다.","en":"Restores the existing session ID and context, then keeps it active in the background after the app window closes.","zh-CN":"恢复现有会话 ID 和对话上下文,并在应用窗口关闭后继续在后台运行。"},
|
|
@@ -255,12 +255,12 @@
|
|
|
255
255
|
"agent.sending": {"ko":"보내는 중…","en":"Sending…","zh-CN":"正在发送…"},
|
|
256
256
|
"agent.send_now": {"ko":"바로 보내기 ↵","en":"Send now ↵","zh-CN":"立即发送 ↵"},
|
|
257
257
|
"agent.restoring": {"ko":"복구하는 중…","en":"Restoring…","zh-CN":"正在恢复…"},
|
|
258
|
-
"agent.restore_and_send": {"ko":"같은
|
|
258
|
+
"agent.restore_and_send": {"ko":"같은 AI 대화를 새 터미널에서 재개하고 보내기 ↵","en":"Resume the AI conversation in a new terminal and send ↵","zh-CN":"在新终端恢复同一 AI 对话并发送 ↵"},
|
|
259
259
|
"agent.handing_off": {"ko":"이어받는 중…","en":"Handing off…","zh-CN":"正在接管…"},
|
|
260
|
-
"agent.handoff_and_send": {"ko":"관리 터미널로
|
|
260
|
+
"agent.handoff_and_send": {"ko":"관리 터미널로 전환하고 보내기 ↵","en":"Switch to a managed terminal and send ↵","zh-CN":"切换到托管终端并发送 ↵"},
|
|
261
261
|
"agent.connecting": {"ko":"연결하는 중…","en":"Connecting…","zh-CN":"正在连接…"},
|
|
262
|
-
"agent.background_and_send": {"ko":"백그라운드
|
|
263
|
-
"agent.copy_bridge": {"ko":"
|
|
262
|
+
"agent.background_and_send": {"ko":"백그라운드 터미널에서 재개하고 보내기 ↵","en":"Resume in a background terminal and send ↵","zh-CN":"在后台终端恢复并发送 ↵"},
|
|
263
|
+
"agent.copy_bridge": {"ko":"연결용 시작 명령 복사","en":"Copy connection start command","zh-CN":"复制连接启动命令"},
|
|
264
264
|
"agent.command_example": {"ko":"예: 이전 작업에 이어서 테스트를 실행하고 결과를 알려줘","en":"Example: Continue the previous work, run the tests, and report the results","zh-CN":"示例:继续之前的工作,运行测试并告知结果"},
|
|
265
265
|
"agent.command_title": {"ko":"이 AI에게 바로 지시하기","en":"Send an instruction to this AI","zh-CN":"直接向此 AI 发送指令"},
|
|
266
266
|
"agent.command_sr": {"ko":"AI에게 보낼 터미널 지시","en":"Terminal instruction to send to the AI","zh-CN":"要发送给 AI 的终端指令"},
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
"run.recheck_installation": {"ko":"설치 상태 다시 확인","en":"Check installation again","zh-CN":"重新检查安装状态"},
|
|
304
304
|
"run.ai_installation_required": {"ko":"AI 설치가 필요합니다","en":"An AI CLI must be installed","zh-CN":"需要安装 AI CLI"},
|
|
305
305
|
"run.preparing": {"ko":"AI 작업을 준비하는 중…","en":"Preparing the AI task…","zh-CN":"正在准备 AI 任务…"},
|
|
306
|
-
"drawer.subagent_title": {"ko":"{name} ·
|
|
306
|
+
"drawer.subagent_title": {"ko":"{name} · 도움 AI 작업 기록","en":"{name} · Helper-AI work history","zh-CN":"{name} · 协助 AI 工作记录"},
|
|
307
307
|
"drawer.stop_requested": {"ko":"중지 요청 중…","en":"Requesting stop…","zh-CN":"正在请求停止…"},
|
|
308
308
|
"drawer.stop_run": {"ko":"■ 실행 중지","en":"■ Stop run","zh-CN":"■ 停止运行"},
|
|
309
309
|
"drawer.continue_background_terminal": {"ko":"백그라운드 터미널로 이어가기","en":"Continue in a background terminal","zh-CN":"在后台终端中继续"},
|
|
@@ -355,13 +355,13 @@
|
|
|
355
355
|
"drawer.last_total_help": {"ko":"가장 최근 한 번의 사용량","en":"Usage for the most recent turn","zh-CN":"最近一轮的用量"},
|
|
356
356
|
"drawer.token_note": {"ko":"{source}입니다. 토큰은 AI가 글을 읽고 쓰는 양을 세는 단위이고, 기억 공간은 AI가 한 번에 기억할 수 있는 양입니다.","en":"Source: {source}. Tokens measure how much text an AI reads and writes; context is how much it can remember at once.","zh-CN":"来源:{source}。令牌用于衡量 AI 读写文本的数量;上下文表示 AI 一次能够记住的内容量。"},
|
|
357
357
|
"drawer.child_to_main": {"ko":"{child} → 메인 AI","en":"{child} → Main AI","zh-CN":"{child} → 主 AI"},
|
|
358
|
-
"drawer.main_to_child": {"ko":"메인 AI →
|
|
358
|
+
"drawer.main_to_child": {"ko":"메인 AI → 도움 AI","en":"Main AI → Helper AI","zh-CN":"主 AI → 协助 AI"},
|
|
359
359
|
"drawer.coordination_events": {"ko":"메인 AI와 주고받은 지시·결과 {count}건","en":"{count} instructions and results exchanged with the main AI","zh-CN":"与主 AI 交换的指令和结果:{count} 条"},
|
|
360
360
|
"drawer.subagent_history_reconstructed": {"ko":"별도 세션 로그가 없어 협업 기록에서 복원한 작업 결과입니다.","en":"No separate session log was available, so this result was reconstructed from collaboration history.","zh-CN":"没有独立的会话日志,因此此结果根据协作记录恢复。"},
|
|
361
|
-
"drawer.subagent_history_actual": {"ko":"이
|
|
362
|
-
"drawer.subagent_work_history": {"ko":"
|
|
361
|
+
"drawer.subagent_history_actual": {"ko":"이 도움 AI 세션에 실제로 저장된 작업 지시와 답변을 시간순으로 표시합니다.","en":"Shows the instructions and responses actually saved in this helper-AI session, in chronological order.","zh-CN":"按时间顺序显示此协助 AI 会话中实际保存的指令和回答。"},
|
|
362
|
+
"drawer.subagent_work_history": {"ko":"도움 AI 실제 작업 기록","en":"Actual helper-AI work history","zh-CN":"协助 AI 实际工作记录"},
|
|
363
363
|
"drawer.assignment": {"ko":"작업 지시","en":"Assignment","zh-CN":"任务指令"},
|
|
364
|
-
"drawer.sub_ai": {"ko":"
|
|
364
|
+
"drawer.sub_ai": {"ko":"도움 AI","en":"Helper AI","zh-CN":"协助 AI"},
|
|
365
365
|
"drawer.work_history": {"ko":"작업 기록","en":"Work history","zh-CN":"工作记录"},
|
|
366
366
|
"session.me": {"ko":"나","en":"Me","zh-CN":"我"},
|
|
367
367
|
"session.tool": {"ko":"도구","en":"Tool","zh-CN":"工具"},
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
"session.output_tokens": {"ko":"AI가 쓴 글","en":"Output","zh-CN":"输出"},
|
|
381
381
|
"session.cached_tokens": {"ko":"다시 쓴 기억","en":"Cached input","zh-CN":"缓存输入"},
|
|
382
382
|
"session.total_tokens": {"ko":"전체 사용","en":"Total usage","zh-CN":"总用量"},
|
|
383
|
-
"session.subagents_created": {"ko":"
|
|
383
|
+
"session.subagents_created": {"ko":"도움 AI {count}개 누적 생성","en":"{count} helper AI created","zh-CN":"累计创建 {count} 个协助 AI"},
|
|
384
384
|
"session.local_history": {"ko":"내 PC의 작업 기록","en":"Work history on this PC","zh-CN":"此电脑上的工作记录"},
|
|
385
385
|
"bootstrap.open_in_app": {"ko":"LoadToAgent 프로그램에서 열면 이 컴퓨터의 AI 작업 기록을 불러옵니다.","en":"Open this page in LoadToAgent to load AI work history from this computer.","zh-CN":"请在 LoadToAgent 应用中打开此页面,以加载此电脑上的 AI 工作记录。"},
|
|
386
386
|
"bootstrap.opened_attention_list": {"ko":"확인이 필요한 세션 목록을 열었습니다.","en":"Opened the list of sessions that need your review.","zh-CN":"已打开需要您确认的会话列表。"},
|
|
@@ -421,11 +421,11 @@
|
|
|
421
421
|
"app.nav.home": {"ko":"홈","en":"Home","zh-CN":"首页"},
|
|
422
422
|
"app.nav.label": {"ko":"화면 선택","en":"Choose view","zh-CN":"选择页面"},
|
|
423
423
|
"app.nav.more": {"ko":"더보기","en":"More","zh-CN":"更多"},
|
|
424
|
-
"app.nav.needs_review": {"ko":"
|
|
425
|
-
"app.nav.runtime": {"ko":"
|
|
426
|
-
"app.nav.session_terminal": {"ko":"
|
|
424
|
+
"app.nav.needs_review": {"ko":"확인할 일","en":"Items to check","zh-CN":"待确认事项"},
|
|
425
|
+
"app.nav.runtime": {"ko":"예약·실행 단계","en":"Schedules & stages","zh-CN":"计划与阶段"},
|
|
426
|
+
"app.nav.session_terminal": {"ko":"AI 세션 터미널","en":"AI session terminal","zh-CN":"AI 会话终端"},
|
|
427
427
|
"app.nav.settings": {"ko":"설정","en":"Settings","zh-CN":"设置"},
|
|
428
|
-
"app.nav.tmux": {"ko":"
|
|
428
|
+
"app.nav.tmux": {"ko":"tmux 터미널 관리","en":"tmux terminal management","zh-CN":"tmux 终端管理"},
|
|
429
429
|
"common.active": {"ko":"{count}개 유지 중","en":"{count} active","zh-CN":"{count} 个保持中"},
|
|
430
430
|
"common.agents": {"ko":"{count}명","en":"{count} agents","zh-CN":"{count} 个智能体"},
|
|
431
431
|
"common.cancel": {"ko":"취소","en":"Cancel","zh-CN":"取消"},
|
|
@@ -456,22 +456,22 @@
|
|
|
456
456
|
"graph.assigned_ai": {"ko":"일을 맡은 AI","en":"AI in charge","zh-CN":"负责工作的 AI"},
|
|
457
457
|
"graph.assigned_name_suffix": {"ko":" · 담당 {name}","en":" · Assigned: {name}","zh-CN":" · 负责:{name}"},
|
|
458
458
|
"graph.assigned_task": {"ko":"담당 작업{source}","en":"Assigned task{source}","zh-CN":"负责的任务{source}"},
|
|
459
|
-
"graph.assigned_to_subagent": {"ko":"{task}을
|
|
459
|
+
"graph.assigned_to_subagent": {"ko":"{task}을 도움 AI에게 배정했습니다.","en":"Assigned {task} to a helper AI.","zh-CN":"已将{task}分配给协助 AI。"},
|
|
460
460
|
"graph.assigning_ai": {"ko":"이 일을 맡긴 AI","en":"AI that assigned this work","zh-CN":"分配此工作的 AI"},
|
|
461
461
|
"graph.assignment_details": {"ko":"담당 내용","en":"Assignment","zh-CN":"负责内容"},
|
|
462
462
|
"graph.back_to_main_ai": {"ko":"메인 AI로 돌아가기","en":"Back to main AI","zh-CN":"返回主 AI"},
|
|
463
463
|
"graph.back_to_previous_ai": {"ko":"이전 AI로 돌아가기","en":"Back to previous AI","zh-CN":"返回上一个 AI"},
|
|
464
464
|
"graph.background_running": {"ko":"백그라운드 실행","en":"Running in background","zh-CN":"后台运行"},
|
|
465
465
|
"graph.background_task": {"ko":"백그라운드 작업","en":"Background task","zh-CN":"后台任务"},
|
|
466
|
-
"graph.capacity_source_unknown": {"ko":"
|
|
467
|
-
"graph.central_ai": {"ko":"이 작업의
|
|
468
|
-
"graph.central_task": {"ko":"
|
|
466
|
+
"graph.capacity_source_unknown": {"ko":"런타임 설정에서 한도를 확인하지 못함","en":"Limit not found in runtime settings","zh-CN":"未在运行时设置中找到上限"},
|
|
467
|
+
"graph.central_ai": {"ko":"이 작업의 메인 AI","en":"Main AI for this work","zh-CN":"此任务的主 AI"},
|
|
468
|
+
"graph.central_task": {"ko":"메인 작업","en":"Main work","zh-CN":"主任务"},
|
|
469
469
|
"graph.click_left_to_go_back": {"ko":"왼쪽을 눌러 이전으로 돌아가요","en":"Select the left side to go back","zh-CN":"点击左侧返回上一级"},
|
|
470
470
|
"graph.codex_runtime": {"ko":"Codex 런타임","en":"Codex runtime","zh-CN":"Codex 运行时"},
|
|
471
471
|
"graph.collapse": {"ko":"접기 ↑","en":"Collapse ↑","zh-CN":"收起 ↑"},
|
|
472
472
|
"graph.communication_description": {"ko":"누가 일을 맡겼고, 언제 시작했으며, 어떤 결과를 돌려줬는지 시간순으로 표시","en":"Shows who assigned work, when it started, and what results were returned, in chronological order","zh-CN":"按时间顺序显示任务由谁分配、何时开始以及返回了哪些结果"},
|
|
473
473
|
"graph.communication_short_description": {"ko":"배정·추가 지시·결과 반환 기록","en":"Assignments, follow-ups, and returned results","zh-CN":"分配、追加指示与结果返回记录"},
|
|
474
|
-
"graph.communication_title": {"ko":"메인 AI ↔
|
|
474
|
+
"graph.communication_title": {"ko":"메인 AI ↔ 도움 AI 소통","en":"Main AI ↔ helper-AI communication","zh-CN":"主 AI ↔ 协助 AI 通信"},
|
|
475
475
|
"graph.copy_command": {"ko":"명령 복사","en":"Copy command","zh-CN":"复制命令"},
|
|
476
476
|
"graph.copy_output": {"ko":"출력 복사","en":"Copy output","zh-CN":"复制输出"},
|
|
477
477
|
"graph.completed_available_below": {"ko":"완료된 기록은 아래에서 필요할 때만 펼쳐볼 수 있습니다.","en":"Completed records can be expanded below when needed.","zh-CN":"需要时可在下方展开已完成的记录。"},
|
|
@@ -480,7 +480,7 @@
|
|
|
480
480
|
"graph.completed_records": {"ko":"작업 완료 기록","en":"Completed records","zh-CN":"已完成记录"},
|
|
481
481
|
"graph.completed_records_collapsed": {"ko":"완료 기록은 삭제하지 않고 기본으로 접어 보관","en":"Completed records are retained and collapsed by default","zh-CN":"已完成记录会保留并默认收起"},
|
|
482
482
|
"graph.completed_result": {"ko":"완료 결과","en":"Completed result","zh-CN":"完成结果"},
|
|
483
|
-
"graph.completed_subagents": {"ko":"완료된
|
|
483
|
+
"graph.completed_subagents": {"ko":"완료된 도움 AI {count}개","en":"{count} completed helper AI","zh-CN":"{count} 个已完成的协助 AI"},
|
|
484
484
|
"graph.created_in_task": {"ko":"이 작업에서 누적 생성","en":"Created in this task","zh-CN":"此任务累计创建"},
|
|
485
485
|
"graph.current_goal": {"ko":"지금 목표","en":"Current goal","zh-CN":"当前目标"},
|
|
486
486
|
"graph.current_work": {"ko":"지금 하는 일","en":"Current work","zh-CN":"当前工作"},
|
|
@@ -488,8 +488,8 @@
|
|
|
488
488
|
"graph.delegated_helper_ai": {"ko":"도움을 나눠 맡은 AI","en":"AI handling delegated work","zh-CN":"承担分派工作的 AI"},
|
|
489
489
|
"graph.detected_from_tmux": {"ko":"TMUX 프로세스에서 직접 감지","en":"Detected directly from a TMUX process","zh-CN":"直接从 TMUX 进程检测"},
|
|
490
490
|
"graph.ended": {"ko":"종료됨","en":"Ended","zh-CN":"已结束"},
|
|
491
|
-
"graph.execution_activity": {"ko":"
|
|
492
|
-
"graph.execution_activity_description": {"ko":"이 AI가 시작한 명령과 백그라운드
|
|
491
|
+
"graph.execution_activity": {"ko":"명령·백그라운드 실행","en":"Command and background runs","zh-CN":"命令与后台执行"},
|
|
492
|
+
"graph.execution_activity_description": {"ko":"이 AI가 시작한 일반 명령과 백그라운드 명령을 실행 ID별로 추적","en":"Regular and background commands started by this AI, tracked by run ID","zh-CN":"按执行 ID 跟踪此 AI 启动的普通命令与后台命令"},
|
|
493
493
|
"graph.execution_activity_summary": {"ko":"실행 중 {running} · 전체 기록 {total}","en":"{running} running · {total} total","zh-CN":"运行中 {running} · 共 {total} 条"},
|
|
494
494
|
"graph.execution_command": {"ko":"실행 명령","en":"Command","zh-CN":"执行命令"},
|
|
495
495
|
"graph.execution_completed": {"ko":"완료","en":"Completed","zh-CN":"已完成"},
|
|
@@ -507,7 +507,7 @@
|
|
|
507
507
|
"graph.execution_started": {"ko":"시작","en":"Started","zh-CN":"开始"},
|
|
508
508
|
"graph.execution_status_label": {"ko":"상태","en":"Status","zh-CN":"状态"},
|
|
509
509
|
"graph.execution_updated": {"ko":"최근 갱신","en":"Last updated","zh-CN":"最近更新"},
|
|
510
|
-
"graph.execution_unit_summary": {"ko":"
|
|
510
|
+
"graph.execution_unit_summary": {"ko":"도움 AI {subagents} · 명령/백그라운드 실행 {executions}","en":"{subagents} helper AI · {executions} command/background runs","zh-CN":"{subagents} 个协助 AI · {executions} 个命令/后台执行"},
|
|
511
511
|
"graph.execution_workdir": {"ko":"작업 폴더","en":"Working directory","zh-CN":"工作目录"},
|
|
512
512
|
"graph.event_basis": {"ko":"spawn/완료 이벤트 기준","en":"Based on spawn/completion events","zh-CN":"基于生成/完成事件"},
|
|
513
513
|
"graph.expand": {"ko":"펼쳐 보기 ↓","en":"Expand ↓","zh-CN":"展开 ↓"},
|
|
@@ -530,40 +530,40 @@
|
|
|
530
530
|
"graph.model_unknown": {"ko":"모델 정보 없음","en":"Model information unavailable","zh-CN":"无模型信息"},
|
|
531
531
|
"graph.name_unknown": {"ko":"이름 미확인","en":"Name unknown","zh-CN":"名称未知"},
|
|
532
532
|
"graph.named_session": {"ko":"{name} 세션","en":"{name} session","zh-CN":"{name} 会话"},
|
|
533
|
-
"graph.no_active_subagents": {"ko":"현재 작업 중인
|
|
534
|
-
"graph.no_communication_events": {"ko":"이 세션 로그에서는
|
|
533
|
+
"graph.no_active_subagents": {"ko":"현재 작업 중인 도움 AI가 없습니다","en":"No helper AI are currently working","zh-CN":"当前没有正在工作的协助 AI"},
|
|
534
|
+
"graph.no_communication_events": {"ko":"이 세션 로그에서는 AI 사이의 통신 이벤트가 확인되지 않았습니다.","en":"No communication events between AI were found in this session log.","zh-CN":"此会话日志中未发现 AI 之间的通信事件。"},
|
|
535
535
|
"graph.no_delegated_tasks": {"ko":"아직 다른 AI에게 나눠 맡긴 일이 없습니다.","en":"No work has been delegated to another AI yet.","zh-CN":"尚未将工作分派给其他 AI。"},
|
|
536
536
|
"graph.no_standard_ai": {"ko":"일반 실행 AI가 없습니다","en":"No standard AI sessions","zh-CN":"没有普通运行的 AI"},
|
|
537
537
|
"graph.open_in_tmux": {"ko":"TMUX에서 열기 →","en":"Open in TMUX →","zh-CN":"在 TMUX 中打开 →"},
|
|
538
538
|
"graph.open_tmux_overview": {"ko":"TMUX 전체 화면 →","en":"Open full TMUX view →","zh-CN":"打开完整 TMUX 页面 →"},
|
|
539
|
-
"graph.open_tmux_workspace": {"ko":"
|
|
540
|
-
"graph.open_tmux_workspace_count": {"ko":"
|
|
539
|
+
"graph.open_tmux_workspace": {"ko":"tmux 터미널 관리","en":"tmux terminal management","zh-CN":"tmux 终端管理"},
|
|
540
|
+
"graph.open_tmux_workspace_count": {"ko":"tmux 터미널 관리 · 세션 {count}개","en":"tmux terminal management · {count} sessions","zh-CN":"tmux 终端管理 · {count} 个会话"},
|
|
541
541
|
"graph.open_tmux_pane": {"ko":"{session} TMUX 칸 열기","en":"Open TMUX pane in {session}","zh-CN":"打开 {session} 的 TMUX 窗格"},
|
|
542
|
-
"graph.observed_execution_units": {"ko":"
|
|
542
|
+
"graph.observed_execution_units": {"ko":"감지된 AI·명령 실행","en":"Detected AI and command runs","zh-CN":"检测到的 AI 与命令执行"},
|
|
543
543
|
"graph.pane_number": {"ko":"칸 {number}","en":"Pane {number}","zh-CN":"窗格 {number}"},
|
|
544
544
|
"graph.recent_of_total_events": {"ko":"최근 {recent} / 전체 {total}건","en":"Latest {recent} / {total} total","zh-CN":"最近 {recent} 条 / 共 {total} 条"},
|
|
545
545
|
"graph.recent_work_completed": {"ko":"최근 작업 완료","en":"Recent work completed","zh-CN":"最近工作已完成"},
|
|
546
|
-
"graph.retained_count": {"ko":"현재
|
|
547
|
-
"graph.retained_count_unobserved": {"ko":"현재 목록
|
|
546
|
+
"graph.retained_count": {"ko":"현재 런타임의 도움 AI 목록에 {count}개 남아 있음","en":"{count} remain in the runtime's helper-AI list","zh-CN":"当前运行时的协助 AI 列表中保留 {count} 个"},
|
|
547
|
+
"graph.retained_count_unobserved": {"ko":"현재 도움 AI 목록 수를 확인하지 못함","en":"Current helper-AI list count not confirmed","zh-CN":"未确认当前协助 AI 列表数量"},
|
|
548
548
|
"graph.running_count": {"ko":"{count}개 진행 중","en":"{count} running","zh-CN":"{count} 个进行中"},
|
|
549
549
|
"graph.runtime_count_explanation": {"ko":"일반 실행 AI {standard}개와 TMUX AI {tmux}개입니다. 작업 중 도움 AI {helpers}개는 이 합계에 포함됩니다.","en":"{standard} standard AI and {tmux} TMUX AI are running. The {helpers} active helper AI are included in this total.","zh-CN":"当前有 {standard} 个普通 AI 和 {tmux} 个 TMUX AI 在运行,其中包含 {helpers} 个工作中的协助 AI。"},
|
|
550
|
-
"graph.runtime_execution_count": {"ko":"실행 중
|
|
550
|
+
"graph.runtime_execution_count": {"ko":"실행 중 일반 명령 {shell}개 · 백그라운드 명령 {background}개","en":"{shell} regular commands · {background} background commands running","zh-CN":"正在运行普通命令 {shell} 个 · 后台命令 {background} 个"},
|
|
551
551
|
"graph.runtime_unknown": {"ko":"실행 환경 미상","en":"Runtime unavailable","zh-CN":"运行环境未知"},
|
|
552
|
-
"graph.running_background": {"ko":"실행 중 백그라운드","en":"Background running","zh-CN":"
|
|
553
|
-
"graph.running_shell": {"ko":"실행 중
|
|
552
|
+
"graph.running_background": {"ko":"실행 중 백그라운드 명령","en":"Background commands running","zh-CN":"正在运行的后台命令"},
|
|
553
|
+
"graph.running_shell": {"ko":"실행 중 일반 명령","en":"Regular commands running","zh-CN":"正在运行的普通命令"},
|
|
554
554
|
"graph.runtime_start_confirmed": {"ko":"런타임에서 실행 시작을 확인했습니다.","en":"The runtime confirmed execution started.","zh-CN":"运行时已确认开始执行。"},
|
|
555
555
|
"graph.selected_ai": {"ko":"지금 선택한 AI","en":"Selected AI","zh-CN":"当前所选 AI"},
|
|
556
556
|
"graph.selected_pane": {"ko":"현재 선택된 칸","en":"Selected pane","zh-CN":"当前所选窗格"},
|
|
557
|
-
"graph.session_runtime_limit": {"ko":"
|
|
557
|
+
"graph.session_runtime_limit": {"ko":"런타임 설정에서 확인한 값","en":"Value confirmed from runtime settings","zh-CN":"从运行时设置确认的值"},
|
|
558
558
|
"graph.shared_goal": {"ko":"공유 목표","en":"Shared goal","zh-CN":"共享目标"},
|
|
559
559
|
"graph.show_compact": {"ko":"간단히 보기","en":"Show less","zh-CN":"简略显示"},
|
|
560
560
|
"graph.show_remaining_tasks": {"ko":"나머지 {count}개 일도 보기","en":"Show {count} more tasks","zh-CN":"再显示 {count} 个任务"},
|
|
561
|
-
"graph.simultaneous_capacity": {"ko":"
|
|
561
|
+
"graph.simultaneous_capacity": {"ko":"설정상 동시 도움 AI 한도","en":"Configured concurrent helper-AI limit","zh-CN":"设置的协助 AI 并发上限"},
|
|
562
562
|
"graph.standard_ai": {"ko":"일반 실행 AI","en":"Standard AI","zh-CN":"普通运行 AI"},
|
|
563
563
|
"graph.standard_runtime_description": {"ko":"데스크톱 앱·외부 터미널에서 실행 중인 메인 AI","en":"Main AI running in desktop apps or external terminals","zh-CN":"在桌面应用或外部终端中运行的主 AI"},
|
|
564
564
|
"graph.standard_sessions": {"ko":"일반 실행 세션","en":"Standard sessions","zh-CN":"普通运行会话"},
|
|
565
|
-
"graph.shell_background": {"ko":"백그라운드
|
|
566
|
-
"graph.shell_foreground": {"ko":"
|
|
565
|
+
"graph.shell_background": {"ko":"백그라운드 명령 실행","en":"Background command run","zh-CN":"后台命令执行"},
|
|
566
|
+
"graph.shell_foreground": {"ko":"일반 명령 실행","en":"Regular command run","zh-CN":"普通命令执行"},
|
|
567
567
|
"graph.session_overview": {"ko":"실행 현황","en":"Session overview","zh-CN":"会话概览"},
|
|
568
568
|
"graph.execution_sessions": {"ko":"실행 세션","en":"Running sessions","zh-CN":"运行会话"},
|
|
569
569
|
"graph.execution_sessions_description": {"ko":"AI 작업과 대화 흐름만 표시합니다. tmux 자원과 명령은 tmux 탭에서 관리합니다.","en":"Shows AI work and conversation flow only. Manage TMUX resources and commands in the TMUX tab.","zh-CN":"仅显示 AI 工作与对话流程。请在 TMUX 标签页管理资源和命令。"},
|
|
@@ -572,10 +572,10 @@
|
|
|
572
572
|
"graph.main_sessions": {"ko":"메인 실행 세션","en":"Main sessions","zh-CN":"主运行会话"},
|
|
573
573
|
"graph.starting_point": {"ko":"작업 시작점","en":"Starting point","zh-CN":"任务起点"},
|
|
574
574
|
"graph.status_only_recorded": {"ko":"내용 없이 상태만 기록되었습니다.","en":"Only a status was recorded, without content.","zh-CN":"仅记录了状态,没有内容。"},
|
|
575
|
-
"graph.sub_ai": {"ko":"
|
|
576
|
-
"graph.subagent_sessions": {"ko":"
|
|
575
|
+
"graph.sub_ai": {"ko":"도움 AI","en":"Helper AI","zh-CN":"协助 AI"},
|
|
576
|
+
"graph.subagent_sessions": {"ko":"도움 AI 세션","en":"Helper-AI sessions","zh-CN":"协助 AI 会话"},
|
|
577
577
|
"graph.subagent_visibility_summary": {"ko":"진행·대기 {ongoing}개 바로 표시 · 완료 {completed}개 기본 숨김","en":"{ongoing} active or waiting shown · {completed} completed hidden by default","zh-CN":"直接显示 {ongoing} 个进行中或等待中 · 默认隐藏 {completed} 个已完成"},
|
|
578
|
-
"graph.subagents_created": {"ko":"
|
|
578
|
+
"graph.subagents_created": {"ko":"도움 AI {count}개 누적 생성","en":"{count} helper AI created in total","zh-CN":"累计创建 {count} 个协助 AI"},
|
|
579
579
|
"graph.summary_shown": {"ko":"요약 표시 · 전체 내용은 대화 상세에서 확인","en":"Summary shown · Open conversation details for the full text","zh-CN":"显示摘要 · 在对话详情中查看完整内容"},
|
|
580
580
|
"graph.target_unknown": {"ko":"대상 미상","en":"Unknown target","zh-CN":"目标未知"},
|
|
581
581
|
"graph.task_list": {"ko":"작업 목록","en":"Task list","zh-CN":"任务列表"},
|
|
@@ -583,14 +583,14 @@
|
|
|
583
583
|
"graph.this_task": {"ko":"이 작업","en":"this task","zh-CN":"此任务"},
|
|
584
584
|
"graph.tmux_ai": {"ko":"TMUX AI","en":"TMUX AI","zh-CN":"TMUX AI"},
|
|
585
585
|
"graph.tmux_only": {"ko":"TMUX 전용","en":"TMUX only","zh-CN":"仅限 TMUX"},
|
|
586
|
-
"graph.tmux_runtime_description": {"ko":"Linux
|
|
586
|
+
"graph.tmux_runtime_description": {"ko":"Linux tmux 세션·창·분할 칸에서 실행 중인 AI","en":"AI running in persistent Linux tmux sessions, windows, and panes","zh-CN":"在持续保持的 Linux tmux 会话、窗口和窗格中运行的 AI"},
|
|
587
587
|
"graph.tmux_session": {"ko":"TMUX 세션","en":"TMUX session","zh-CN":"TMUX 会话"},
|
|
588
588
|
"graph.tmux_sessions": {"ko":"TMUX 세션","en":"TMUX sessions","zh-CN":"TMUX 会话"},
|
|
589
589
|
"graph.tmux_task": {"ko":"{provider} TMUX 작업","en":"{provider} TMUX task","zh-CN":"{provider} TMUX 工作"},
|
|
590
590
|
"graph.user_request": {"ko":"사용자 요청","en":"User request","zh-CN":"用户请求"},
|
|
591
591
|
"graph.view_ai_flow": {"ko":"AI 흐름 보기","en":"View AI flow","zh-CN":"查看 AI 流程"},
|
|
592
|
-
"graph.view_child_flow": {"ko":"{task}의 하위
|
|
593
|
-
"graph.view_child_subagents": {"ko":"하위
|
|
592
|
+
"graph.view_child_flow": {"ko":"{task}의 하위 도움 AI 흐름 보기","en":"View child helper-AI flow for {task}","zh-CN":"查看{task}的下级协助 AI 流程"},
|
|
593
|
+
"graph.view_child_subagents": {"ko":"하위 도움 AI {count}개 보기 →","en":"View {count} child helper AI →","zh-CN":"查看 {count} 个下级协助 AI →"},
|
|
594
594
|
"graph.view_conversation": {"ko":"대화 내용 보기","en":"View conversation","zh-CN":"查看对话"},
|
|
595
595
|
"graph.view_detailed_flow": {"ko":"상세 흐름 보기","en":"View detailed flow","zh-CN":"查看详细流程"},
|
|
596
596
|
"graph.view_main_ai_conversation": {"ko":"메인 AI와의 대화 보기 →","en":"View conversation with main AI →","zh-CN":"查看与主 AI 的对话 →"},
|
|
@@ -650,6 +650,11 @@
|
|
|
650
650
|
"terminal.background_kept": {"ko":"백그라운드 유지","en":"Kept in background","zh-CN":"在后台保持"},
|
|
651
651
|
"terminal.bound_ai_session": {"ko":"기존 AI 세션 유지 중","en":"Keeping existing AI session","zh-CN":"正在保持现有 AI 会话"},
|
|
652
652
|
"terminal.clear_selection": {"ko":"선택 해제","en":"Clear selection","zh-CN":"取消选择"},
|
|
653
|
+
"terminal.close_view": {"ko":"터미널 화면 닫기","en":"Close terminal view","zh-CN":"关闭终端视图"},
|
|
654
|
+
"terminal.detach_tmux_input": {"ko":"직접 조작 연결 해제","en":"Detach direct control","zh-CN":"断开直接控制"},
|
|
655
|
+
"terminal.end_ai_session": {"ko":"AI 세션 종료","en":"End AI session","zh-CN":"结束 AI 会话"},
|
|
656
|
+
"terminal.view_closed_ai_kept": {"ko":"터미널 화면만 닫았습니다. AI 세션과 실행 중인 작업은 계속 유지됩니다.","en":"Closed only the terminal view. The AI session and its running work are still active.","zh-CN":"仅关闭了终端视图。AI 会话及其正在运行的任务仍保持活动。"},
|
|
657
|
+
"terminal.recovered_after_host_restart": {"ko":"호스트 중단 뒤 새 프로세스로 복구됨","en":"Recovered with a new process after host interruption","zh-CN":"主机中断后已通过新进程恢复"},
|
|
653
658
|
"terminal.command.continue_ai_placeholder": {"ko":"이전 대화에 이어서 AI에게 지시할 내용을 입력하세요","en":"Enter instructions for the AI that continue the previous conversation","zh-CN":"请输入接续之前对话的 AI 指令"},
|
|
654
659
|
"terminal.command.executed_in_split": {"ko":"선택한 나눠진 명령창에서 실행했습니다.","en":"Ran the command in the selected split terminal.","zh-CN":"已在所选分屏终端中运行命令。"},
|
|
655
660
|
"terminal.command.required": {"ko":"보낼 명령을 입력하세요.","en":"Enter a command to send.","zh-CN":"请输入要发送的命令。"},
|
|
@@ -676,7 +681,7 @@
|
|
|
676
681
|
"terminal.subagents.current": {"ko":"현재 단계","en":"Current step","zh-CN":"当前步骤"},
|
|
677
682
|
"terminal.subagents.description": {"ko":"메인 AI가 맡긴 작업과 최근 진행 기록","en":"Delegated work and recent progress","zh-CN":"主 AI 分配的任务和最近进度"},
|
|
678
683
|
"terminal.subagents.no_updates": {"ko":"아직 세부 진행 기록이 없습니다.","en":"No detailed progress has been recorded yet.","zh-CN":"尚无详细进度记录。"},
|
|
679
|
-
"terminal.subagents.title": {"ko":"
|
|
684
|
+
"terminal.subagents.title": {"ko":"도움 AI 작업 진행","en":"Helper-AI progress","zh-CN":"协助 AI 工作进度"},
|
|
680
685
|
"terminal.linux_shell_title": {"ko":"{distro} 셸","en":"{distro} shell","zh-CN":"{distro} Shell"},
|
|
681
686
|
"terminal.new_local_session": {"ko":"+ {platform} 세션","en":"+ {platform} session","zh-CN":"+ {platform} 会话"},
|
|
682
687
|
"terminal.opened": {"ko":"{platform} 명령창을 열었습니다.","en":"Opened a {platform} terminal.","zh-CN":"已打开 {platform} 终端。"},
|
|
@@ -688,6 +693,7 @@
|
|
|
688
693
|
"terminal.resume.unsupported_provider": {"ko":"{provider} CLI의 세션 ID 재개 방식이 공식 문서에서 확인되지 않았습니다.","en":"An officially documented session-ID resume method was not found for the {provider} CLI.","zh-CN":"在官方文档中找不到 {provider} CLI 使用会话 ID 恢复的方法。"},
|
|
689
694
|
"terminal.sending": {"ko":"보내는 중","en":"Sending","zh-CN":"正在发送"},
|
|
690
695
|
"terminal.session.confirm_end": {"ko":"{title} 세션과 실행 중인 프로세스를 끝낼까요?\n이 작업은 터미널을 숨기는 것이 아니라 실제 세션을 종료합니다.","en":"End the {title} session and its running process?\nThis ends the actual session rather than merely hiding the terminal.","zh-CN":"要结束 {title} 会话及其正在运行的进程吗?\n此操作会真正结束会话,而不是仅隐藏终端。"},
|
|
696
|
+
"terminal.session.confirm_end_ai": {"ko":"{title} AI 세션과 실행 중인 작업을 완전히 종료할까요?\n터미널 화면만 닫으려면 ‘터미널 화면 닫기’를 사용하세요.","en":"Completely end the {title} AI session and its running work?\nUse ‘Close terminal view’ to hide only the terminal.","zh-CN":"要完全结束 {title} AI 会话及其正在运行的任务吗?\n若只想隐藏终端,请使用“关闭终端视图”。"},
|
|
691
697
|
"terminal.session.ended": {"ko":"터미널 세션을 종료했습니다.","en":"Terminal session ended.","zh-CN":"终端会话已结束。"},
|
|
692
698
|
"terminal.session.restarted": {"ko":"명령창을 다시 시작했습니다.","en":"Terminal restarted.","zh-CN":"终端已重新启动。"},
|
|
693
699
|
"terminal.signal.cleared": {"ko":"화면을 정리했습니다.","en":"Screen cleared.","zh-CN":"屏幕已清空。"},
|
|
@@ -707,9 +713,10 @@
|
|
|
707
713
|
"terminal.view.focus_off": {"ko":"터미널 전체 보기로 돌아왔습니다.","en":"Returned to all terminal panels.","zh-CN":"已返回全部终端面板。"},
|
|
708
714
|
"terminal.tmux.attached": {"ko":"화면에 연결됨","en":"Attached to screen","zh-CN":"已连接到界面"},
|
|
709
715
|
"terminal.tmux.attached_for_input": {"ko":"키보드로 직접 조작할 수 있게 연결했습니다.","en":"Attached for direct keyboard control.","zh-CN":"已连接,可直接用键盘操作。"},
|
|
716
|
+
"terminal.tmux.detached_input": {"ko":"tmux 작업은 유지하고 직접 조작 연결만 해제했습니다.","en":"Detached direct control while keeping the tmux workspace running.","zh-CN":"已断开直接控制,tmux 工作区仍在运行。"},
|
|
710
717
|
"terminal.tmux.confirm_close_pane": {"ko":"{pane} 명령창을 닫을까요?","en":"Close terminal {pane}?","zh-CN":"要关闭终端 {pane} 吗?"},
|
|
711
718
|
"terminal.tmux.confirm_close_window": {"ko":"{window} 창과 안에 있는 명령창을 모두 닫을까요?","en":"Close window {window} and all terminals inside it?","zh-CN":"要关闭窗口 {window} 及其中的所有终端吗?"},
|
|
712
|
-
"terminal.tmux.confirm_end_workspace": {"ko":"{workspace}
|
|
719
|
+
"terminal.tmux.confirm_end_workspace": {"ko":"{workspace} tmux 세션과 모든 프로세스를 종료할까요?","en":"End the {workspace} tmux session and all its processes?","zh-CN":"要结束 {workspace} tmux 会话及其中所有进程吗?"},
|
|
713
720
|
"terminal.tmux.ended_pane": {"ko":"종료된 tmux 칸","en":"Ended tmux pane","zh-CN":"已结束的 tmux 窗格"},
|
|
714
721
|
"terminal.tmux.connected": {"ko":"tmux 연결됨","en":"tmux connected","zh-CN":"tmux 已连接"},
|
|
715
722
|
"terminal.tmux.layout_changed": {"ko":"창 배치를 변경했습니다.","en":"Window layout changed.","zh-CN":"窗口布局已更改。"},
|
|
@@ -718,16 +725,16 @@
|
|
|
718
725
|
"terminal.tmux.pane_closed": {"ko":"선택한 명령창을 닫았습니다.","en":"Selected terminal closed.","zh-CN":"所选终端已关闭。"},
|
|
719
726
|
"terminal.tmux.pane_split": {"ko":"선택한 명령창을 나눴습니다.","en":"Selected terminal split.","zh-CN":"所选终端已分屏。"},
|
|
720
727
|
"terminal.tmux.prompt_window_name": {"ko":"새 창 이름","en":"New window name","zh-CN":"新窗口名称"},
|
|
721
|
-
"terminal.tmux.prompt_workspace_name": {"ko":"새
|
|
722
|
-
"terminal.tmux.refreshed": {"ko":"
|
|
728
|
+
"terminal.tmux.prompt_workspace_name": {"ko":"새 tmux 세션 이름","en":"New tmux session name","zh-CN":"新 tmux 会话名称"},
|
|
729
|
+
"terminal.tmux.refreshed": {"ko":"tmux 세션을 새로고침했습니다.","en":"tmux sessions refreshed.","zh-CN":"已刷新 tmux 会话。"},
|
|
723
730
|
"terminal.tmux.running_background": {"ko":"뒤에서 실행 중","en":"Running in background","zh-CN":"正在后台运行"},
|
|
724
731
|
"terminal.tmux.window_closed": {"ko":"창 전체를 닫았습니다.","en":"Entire window closed.","zh-CN":"整个窗口已关闭。"},
|
|
725
732
|
"terminal.tmux.window_created": {"ko":"새 창을 만들었습니다.","en":"New window created.","zh-CN":"新窗口已创建。"},
|
|
726
|
-
"terminal.tmux.workspace_count": {"ko":"
|
|
727
|
-
"terminal.tmux.workspace_create_failed": {"ko":"새 tmux
|
|
728
|
-
"terminal.tmux.workspace_created": {"ko":"새
|
|
729
|
-
"terminal.tmux.workspace_ended": {"ko":"
|
|
730
|
-
"terminal.tmux.workspace_renamed": {"ko":"
|
|
733
|
+
"terminal.tmux.workspace_count": {"ko":"tmux 세션 {count}개","en":"{count} tmux sessions","zh-CN":"{count} 个 tmux 会话"},
|
|
734
|
+
"terminal.tmux.workspace_create_failed": {"ko":"새 tmux 세션을 만들지 못했습니다.","en":"Could not create the new tmux session.","zh-CN":"无法创建新的 tmux 会话。"},
|
|
735
|
+
"terminal.tmux.workspace_created": {"ko":"새 tmux 세션을 만들었습니다.","en":"New tmux session created.","zh-CN":"已创建新的 tmux 会话。"},
|
|
736
|
+
"terminal.tmux.workspace_ended": {"ko":"tmux 세션을 종료했습니다.","en":"tmux session ended.","zh-CN":"tmux 会话已结束。"},
|
|
737
|
+
"terminal.tmux.workspace_renamed": {"ko":"tmux 세션 이름을 변경했습니다.","en":"tmux session renamed.","zh-CN":"tmux 会话已重命名。"},
|
|
731
738
|
"terminal.type.command_prompt": {"ko":"명령 프롬프트","en":"Command Prompt","zh-CN":"命令提示符"},
|
|
732
739
|
"terminal.type.session": {"ko":"세션","en":"session","zh-CN":"会话"},
|
|
733
740
|
"terminal.type.terminal": {"ko":"터미널","en":"Terminal","zh-CN":"终端"},
|
|
@@ -769,9 +776,9 @@
|
|
|
769
776
|
"tmux.subagents.view_conversation": {"ko":"대화 보기 ↗","en":"View conversation ↗","zh-CN":"查看对话 ↗"},
|
|
770
777
|
"tmux.subagents.view_conversation_aria": {"ko":"{role} · {assignment} 대화 보기","en":"View conversation for {role} · {assignment}","zh-CN":"查看 {role} · {assignment} 的对话"},
|
|
771
778
|
"tmux.subagents.working_count": {"ko":"{count}개 작업 중","en":"{count} working","zh-CN":"{count} 个工作中"},
|
|
772
|
-
"tmux.summary": {"ko":"{sessions}개
|
|
779
|
+
"tmux.summary": {"ko":"tmux 세션 {sessions}개 · {panes}개 칸에서 AI가 일하는 중","en":"{sessions} tmux sessions · AI working in {panes} panes","zh-CN":"{sessions} 个 tmux 会话 · AI 正在 {panes} 个窗格中工作"},
|
|
773
780
|
"tmux.view_conversation": {"ko":"대화 내용 보기 ↗","en":"View conversation ↗","zh-CN":"查看对话 ↗"},
|
|
774
|
-
"tmux.workspace": {"ko":"
|
|
781
|
+
"tmux.workspace": {"ko":"tmux 세션","en":"tmux sessions","zh-CN":"tmux 会话"},
|
|
775
782
|
"tmux.local_environment": {"ko":"로컬 환경","en":"Local environment","zh-CN":"本地环境"},
|
|
776
783
|
"ui.10_minute_quick_start": {"ko":"10분 시작 가이드","en":"10-minute quick start","zh-CN":"10 分钟快速入门"},
|
|
777
784
|
"ui.a_new_update_is_available": {"ko":"새 업데이트가 있습니다.","en":"A new update is available.","zh-CN":"有新的更新可用。"},
|
|
@@ -781,17 +788,17 @@
|
|
|
781
788
|
"ui.active_ai": {"ko":"활동 AI","en":"Active AI","zh-CN":"活跃 AI"},
|
|
782
789
|
"ui.active_now": {"ko":"지금 진행 중","en":"Active now","zh-CN":"正在进行"},
|
|
783
790
|
"ui.active_tasks": {"ko":"진행 중인 작업","en":"Active tasks","zh-CN":"进行中的任务"},
|
|
784
|
-
"ui.active_work_and_items_needing_your_review_appear_first_find": {"ko":"진행 중인 일과
|
|
791
|
+
"ui.active_work_and_items_needing_your_review_appear_first_find": {"ko":"진행 중인 일과 최근 24시간 안에 활동한 세션을 보여줍니다. 하루가 지난 기록은 목록에서 숨깁니다.","en":"Shows active work and sessions with activity in the last 24 hours. Records older than one day are hidden.","zh-CN":"显示正在进行的任务和最近 24 小时内有活动的会话。超过一天的记录将被隐藏。"},
|
|
785
792
|
"ui.activity": {"ko":"활동","en":"Activity","zh-CN":"活动"},
|
|
786
793
|
"ui.add_tests": {"ko":"테스트 추가","en":"Add tests","zh-CN":"添加测试"},
|
|
787
794
|
"ui.add_window": {"ko":"창 추가","en":"Add window","zh-CN":"添加窗口"},
|
|
788
|
-
"ui.add_workspace": {"ko":"
|
|
795
|
+
"ui.add_workspace": {"ko":"폴더 필터 추가","en":"Add folder filter","zh-CN":"添加文件夹筛选器"},
|
|
789
796
|
"ui.advanced_settings": {"ko":"고급 설정","en":"Advanced settings","zh-CN":"高级设置"},
|
|
790
797
|
"ui.advanced_tools_and_settings": {"ko":"고급 기능과 설정","en":"Advanced tools and settings","zh-CN":"高级功能与设置"},
|
|
791
798
|
"ui.advanced_tools_to_open_only_when_needed": {"ko":"필요할 때만 여는 고급 기능이에요.","en":"Advanced tools to open only when needed.","zh-CN":"仅在需要时打开的高级功能。"},
|
|
792
799
|
"ui.advanced_work": {"ko":"고급 작업","en":"Advanced work","zh-CN":"高级工作"},
|
|
793
800
|
"ui.advanced_work_tools": {"ko":"고급 작업 도구","en":"Advanced work tools","zh-CN":"高级工作工具"},
|
|
794
|
-
"ui.agent_navigation_path": {"ko":"
|
|
801
|
+
"ui.agent_navigation_path": {"ko":"AI 작업 탐색 경로","en":"AI work navigation path","zh-CN":"AI 任务导航路径"},
|
|
795
802
|
"ui.ai_cli_connections_were_checked_again": {"ko":"AI CLI 연결 상태를 다시 확인했습니다.","en":"AI CLI connections were checked again.","zh-CN":"已重新检查 AI CLI 连接状态。"},
|
|
796
803
|
"ui.ai_conversation_history": {"ko":"AI 대화 기록","en":"AI conversation history","zh-CN":"AI 对话记录"},
|
|
797
804
|
"ui.ai_provider_filter": {"ko":"AI 제공사 필터","en":"AI provider filter","zh-CN":"AI 提供商筛选"},
|
|
@@ -811,14 +818,14 @@
|
|
|
811
818
|
"ui.assign_to_ai": {"ko":"AI에게 맡기기","en":"Assign to AI","zh-CN":"交给 AI"},
|
|
812
819
|
"ui.assign_work_to_ai": {"ko":"AI에게 일 맡기기","en":"Assign work to AI","zh-CN":"向 AI 分配工作"},
|
|
813
820
|
"ui.assistance": {"ko":"도움","en":"Assistance","zh-CN":"协助"},
|
|
814
|
-
"ui.available": {"ko":"
|
|
815
|
-
"ui.available_ai": {"ko":"
|
|
821
|
+
"ui.available": {"ko":"CLI 설치 감지","en":"CLI detected","zh-CN":"已检测到 CLI"},
|
|
822
|
+
"ui.available_ai": {"ko":"설치가 감지된 AI CLI","en":"Detected AI CLI installations","zh-CN":"检测到安装的 AI CLI"},
|
|
816
823
|
"ui.back_to_all": {"ko":"전체 목록으로","en":"Back to all","zh-CN":"返回全部列表"},
|
|
817
824
|
"ui.back_to_task_list": {"ko":"작업 목록으로","en":"Back to task list","zh-CN":"返回任务列表"},
|
|
818
825
|
"ui.basics_completed": {"ko":"기본 사용법 완료","en":"Basics completed","zh-CN":"基础使用已完成"},
|
|
819
826
|
"ui.browse": {"ko":"폴더 찾기","en":"Browse","zh-CN":"浏览"},
|
|
820
827
|
"ui.change_the_search_filters_or_assign_a_new_task_to": {"ko":"검색 조건을 바꾸거나 AI에게 새 일을 맡겨보세요.","en":"Change the search filters or assign a new task to AI.","zh-CN":"请更改搜索条件或向 AI 分配新任务。"},
|
|
821
|
-
"ui.check_ai_connections_again": {"ko":"AI
|
|
828
|
+
"ui.check_ai_connections_again": {"ko":"AI CLI 설치 상태 다시 확인","en":"Check AI CLI installation status again","zh-CN":"重新检查 AI CLI 安装状态"},
|
|
822
829
|
"ui.check_ai_readiness_then_start_your_first_task": {"ko":"AI 준비 상태를 확인한 뒤 첫 작업을 시작해보세요.","en":"Check AI readiness, then start your first task.","zh-CN":"检查 AI 准备状态后,开始第一个任务。"},
|
|
823
830
|
"ui.check_failed": {"ko":"확인 실패","en":"Check failed","zh-CN":"检查失败"},
|
|
824
831
|
"ui.check_progress": {"ko":"진행 상황 확인","en":"Check progress","zh-CN":"查看进度"},
|
|
@@ -846,9 +853,9 @@
|
|
|
846
853
|
"ui.clear": {"ko":"화면 정리","en":"Clear","zh-CN":"清屏"},
|
|
847
854
|
"ui.clear_terminal_screen": {"ko":"터미널 화면 정리","en":"Clear terminal screen","zh-CN":"清理终端屏幕"},
|
|
848
855
|
"ui.clear_the_search_or_change_the_ai_and_workspace_filters": {"ko":"검색어를 지우거나 AI와 작업 폴더 필터를 바꿔보세요.","en":"Clear the search or change the AI and workspace filters.","zh-CN":"请清除搜索词,或更改 AI 和工作文件夹筛选条件。"},
|
|
849
|
-
"ui.cli_found": {"ko":"
|
|
856
|
+
"ui.cli_found": {"ko":"CLI 설치 감지","en":"CLI installation detected","zh-CN":"已检测到 CLI 安装"},
|
|
850
857
|
"ui.close_entire_window": {"ko":"창 전체 닫기","en":"Close entire window","zh-CN":"关闭整个窗口"},
|
|
851
|
-
"ui.close_multi_window_workspace_dialog": {"ko":"
|
|
858
|
+
"ui.close_multi_window_workspace_dialog": {"ko":"tmux 세션 만들기 창 닫기","en":"Close the create-tmux-session dialog","zh-CN":"关闭创建 tmux 会话窗口"},
|
|
852
859
|
"ui.close_new_task_dialog": {"ko":"새 작업 창 닫기","en":"Close new task dialog","zh-CN":"关闭新任务窗口"},
|
|
853
860
|
"ui.close_selected_pane": {"ko":"선택한 칸 닫기","en":"Close selected pane","zh-CN":"关闭所选窗格"},
|
|
854
861
|
"ui.collapse_conversation_panel": {"ko":"대화 영역 접기","en":"Collapse conversation panel","zh-CN":"收起对话区域"},
|
|
@@ -874,20 +881,20 @@
|
|
|
874
881
|
"ui.could_not_prepare_the_update_file": {"ko":"업데이트 파일을 준비하지 못했습니다.","en":"Could not prepare the update file.","zh-CN":"无法准备更新文件。"},
|
|
875
882
|
"ui.could_not_send_the_stop_request": {"ko":"중지 요청을 보내지 못했습니다.","en":"Could not send the stop request.","zh-CN":"无法发送停止请求。"},
|
|
876
883
|
"ui.could_not_start_the_task": {"ko":"실행을 시작하지 못했습니다.","en":"Could not start the task.","zh-CN":"无法启动任务。"},
|
|
877
|
-
"ui.create_multi_window_workspace": {"ko":"
|
|
878
|
-
"ui.create_tmux_workspace": {"ko":"+
|
|
879
|
-
"ui.create_workspace": {"ko":"
|
|
884
|
+
"ui.create_multi_window_workspace": {"ko":"tmux 세션 만들기","en":"Create tmux session","zh-CN":"创建 tmux 会话"},
|
|
885
|
+
"ui.create_tmux_workspace": {"ko":"+ tmux 세션 만들기","en":"+ Create tmux session","zh-CN":"+ 创建 tmux 会话"},
|
|
886
|
+
"ui.create_workspace": {"ko":"tmux 세션 만들기","en":"Create tmux session","zh-CN":"创建 tmux 会话"},
|
|
880
887
|
"ui.describe_the_task": {"ko":"할 일 적기","en":"Describe the task","zh-CN":"填写任务"},
|
|
881
888
|
"ui.describe_the_task_then_choose_which_ai_will_work_in": {"ko":"할 일을 먼저 적고, 어떤 AI가 어디서 작업할지 선택하세요.","en":"Describe the task, then choose which AI will work in which folder.","zh-CN":"先描述任务,再选择由哪个 AI 在哪个文件夹中工作。"},
|
|
882
889
|
"ui.desktop_installer": {"ko":"데스크톱 설치 파일","en":"Desktop installer","zh-CN":"桌面安装版本"},
|
|
883
|
-
"ui.direct_input_available": {"ko":"
|
|
890
|
+
"ui.direct_input_available": {"ko":"지금 입력 가능","en":"Ready for input now","zh-CN":"现在可输入"},
|
|
884
891
|
"ui.download_the_update_from_settings": {"ko":"설정에서 업데이트 파일을 받을 수 있습니다.","en":"Download the update from Settings.","zh-CN":"可在设置中下载更新文件。"},
|
|
885
892
|
"ui.downloading": {"ko":"다운로드 중","en":"Downloading","zh-CN":"正在下载"},
|
|
886
893
|
"ui.downloading_2": {"ko":"다운로드 중…","en":"Downloading…","zh-CN":"下载中…"},
|
|
887
894
|
"ui.downloading_the_update_file": {"ko":"업데이트 파일을 받고 있습니다.","en":"Downloading the update file.","zh-CN":"正在下载更新文件。"},
|
|
888
895
|
"ui.drafts_and_prereleases_are_excluded_only_tags_newer_than_the": {"ko":"초안과 프리릴리스는 제외하고, 패키지 버전보다 높은 태그만 안내합니다.","en":"Drafts and prereleases are excluded; only tags newer than the installed package are shown.","zh-CN":"排除草稿和预发布版本,仅提示高于当前软件包版本的标签。"},
|
|
889
896
|
"ui.end_session": {"ko":"세션 종료","en":"End session","zh-CN":"结束会话"},
|
|
890
|
-
"ui.end_workspace": {"ko":"
|
|
897
|
+
"ui.end_workspace": {"ko":"tmux 세션 종료","en":"End tmux session","zh-CN":"结束 tmux 会话"},
|
|
891
898
|
"ui.ended_pane": {"ko":"종료된 칸","en":"Ended pane","zh-CN":"已结束窗格"},
|
|
892
899
|
"ui.ended_session": {"ko":"종료된 세션","en":"Ended session","zh-CN":"已结束会话"},
|
|
893
900
|
"ui.enter_a_command_to_run": {"ko":"실행할 명령을 입력하세요","en":"Enter a command to run","zh-CN":"输入要运行的命令"},
|
|
@@ -899,7 +906,7 @@
|
|
|
899
906
|
"ui.execution": {"ko":"실행","en":"Execution","zh-CN":"执行"},
|
|
900
907
|
"ui.file_verification": {"ko":"파일 검증","en":"File verification","zh-CN":"文件验证"},
|
|
901
908
|
"ui.file_verified": {"ko":"파일 검증 완료","en":"File verified","zh-CN":"文件验证完成"},
|
|
902
|
-
"ui.find_items_to_review": {"ko":"
|
|
909
|
+
"ui.find_items_to_review": {"ko":"내 응답과 상태 신호 확인","en":"Check my responses and status signals","zh-CN":"查看我的回复与状态信号"},
|
|
903
910
|
"ui.find_task_ai_or_folder": {"ko":"작업 이름, AI, 폴더 찾기","en":"Find task, AI, or folder","zh-CN":"查找任务、AI 或文件夹"},
|
|
904
911
|
"ui.first_10_minutes": {"ko":"첫 10분 코스","en":"First 10 minutes","zh-CN":"前 10 分钟入门"},
|
|
905
912
|
"ui.fix_a_bug": {"ko":"오류 수정","en":"Fix a bug","zh-CN":"修复错误"},
|
|
@@ -917,7 +924,7 @@
|
|
|
917
924
|
"ui.interrupt": {"ko":"실행 중단","en":"Interrupt","zh-CN":"中断执行"},
|
|
918
925
|
"ui.interrupt_the_running_command": {"ko":"현재 실행 중인 명령 중단","en":"Interrupt the running command","zh-CN":"中断当前运行的命令"},
|
|
919
926
|
"ui.items": {"ko":"개","en":"items","zh-CN":"个"},
|
|
920
|
-
"ui.items_marked_needs_review_need_a_response_or_choice": {"ko":"
|
|
927
|
+
"ui.items_marked_needs_review_need_a_response_or_choice": {"ko":"내가 답할 요청과 AI 상태 위험 신호를 구분해서 확인해요.","en":"Review requests needing your response separately from AI status risk signals.","zh-CN":"将需要您回复的请求与 AI 状态风险信号分开查看。"},
|
|
921
928
|
"ui.keep_the_app_open_until_the_download_finishes": {"ko":"다운로드가 끝날 때까지 앱을 종료하지 마세요.","en":"Keep the app open until the download finishes.","zh-CN":"下载完成前请勿退出应用。"},
|
|
922
929
|
"ui.language": {"ko":"언어","en":"Language","zh-CN":"语言"},
|
|
923
930
|
"ui.latest_github_tag": {"ko":"GitHub 최신 태그","en":"Latest GitHub tag","zh-CN":"GitHub 最新标签"},
|
|
@@ -932,8 +939,8 @@
|
|
|
932
939
|
"ui.main_tasks": {"ko":"메인 작업","en":"Main tasks","zh-CN":"主要任务"},
|
|
933
940
|
"ui.main_window_on_left": {"ko":"중요 창 왼쪽","en":"Main window on left","zh-CN":"主窗口在左"},
|
|
934
941
|
"ui.main_window_on_top": {"ko":"중요 창 위쪽","en":"Main window on top","zh-CN":"主窗口在上"},
|
|
935
|
-
"ui.manage_multi_terminal_work_in_one_place": {"ko":"
|
|
936
|
-
"ui.manage_multiple_terminals_together": {"ko":"
|
|
942
|
+
"ui.manage_multi_terminal_work_in_one_place": {"ko":"tmux 세션과 분할 터미널을 한곳에서 관리하세요.","en":"Manage tmux sessions and split terminals in one place.","zh-CN":"在一处管理 tmux 会话与分屏终端。"},
|
|
943
|
+
"ui.manage_multiple_terminals_together": {"ko":"tmux 세션·창·분할 칸 관리","en":"Manage tmux sessions, windows, and panes","zh-CN":"管理 tmux 会话、窗口与窗格"},
|
|
937
944
|
"ui.manual_update": {"ko":"수동 업데이트","en":"Manual update","zh-CN":"手动更新"},
|
|
938
945
|
"ui.model": {"ko":"사용 모델","en":"Model","zh-CN":"使用模型"},
|
|
939
946
|
"ui.most_recently_active": {"ko":"최근에 움직인 순서","en":"Most recently active","zh-CN":"最近活动优先"},
|
|
@@ -942,14 +949,14 @@
|
|
|
942
949
|
"ui.new_ai_task": {"ko":"새 AI 작업","en":"New AI Task","zh-CN":"新建 AI 任务"},
|
|
943
950
|
"ui.new_tasks_will_show_their_progress_here_immediately": {"ko":"새 일을 맡기면 진행 상황이 이곳에 바로 표시됩니다.","en":"New tasks will show their progress here immediately.","zh-CN":"分配新任务后,进度会立即显示在此处。"},
|
|
944
951
|
"ui.no_ai_cli_is_ready_follow_the_official_setup_guide": {"ko":"준비된 AI CLI가 없습니다. 공식 설치 안내를 따라 설치·로그인한 뒤 다시 확인해 주세요.","en":"No AI CLI is ready. Follow the official setup guide, sign in, and check again.","zh-CN":"没有可用的 AI CLI。请按照官方安装指南安装并登录,然后重新检查。"},
|
|
945
|
-
"ui.no_project": {"ko":"
|
|
952
|
+
"ui.no_project": {"ko":"작업 시작 폴더 정보 없음","en":"Work-origin folder unavailable","zh-CN":"缺少任务起始文件夹信息"},
|
|
946
953
|
"ui.no_release_notes_were_provided_for_this_release": {"ko":"이 릴리스에 작성된 변경 사항이 없습니다.","en":"No release notes were provided for this release.","zh-CN":"此版本未提供更新说明。"},
|
|
947
954
|
"ui.no_search_results": {"ko":"검색 결과가 없습니다","en":"No search results","zh-CN":"没有搜索结果"},
|
|
948
955
|
"ui.no_tasks_are_currently_active": {"ko":"현재 진행 중인 작업이 없습니다","en":"No tasks are currently active","zh-CN":"当前没有进行中的任务"},
|
|
949
|
-
"ui.no_tasks_are_waiting_for_your_response_or_choice": {"ko":"지금
|
|
956
|
+
"ui.no_tasks_are_waiting_for_your_response_or_choice": {"ko":"지금 응답하거나 상태를 확인할 작업이 없습니다.","en":"No work currently needs your response or a status check.","zh-CN":"目前没有需要您回复或检查状态的任务。"},
|
|
950
957
|
"ui.no_tasks_to_show_yet": {"ko":"아직 보여줄 작업이 없습니다","en":"No tasks to show yet","zh-CN":"暂无可显示的任务"},
|
|
951
958
|
"ui.not_checked": {"ko":"확인 전","en":"Not checked","zh-CN":"尚未检查"},
|
|
952
|
-
"ui.only_tasks_waiting_for_your_response_or_choice_are_shown": {"ko":"
|
|
959
|
+
"ui.only_tasks_waiting_for_your_response_or_choice_are_shown": {"ko":"최근 24시간 안에 활동한 세션 중 내 응답이 필요하거나 현재 실행 위험 신호가 있는 작업만 표시합니다.","en":"Shows only sessions active in the last 24 hours that need your response or have a current run-risk signal.","zh-CN":"仅显示最近 24 小时内有活动且需要您回复或存在当前执行风险信号的会话。"},
|
|
953
960
|
"ui.only_work_using_tmux_appears_here_regular_terminals_are_kept": {"ko":"tmux를 사용하는 작업만 모아 봅니다. 일반 명령창은 이 화면에 섞이지 않습니다.","en":"Only work using tmux appears here. Regular terminals are kept separate.","zh-CN":"此处仅显示使用 tmux 的工作,普通终端不会混入。"},
|
|
954
961
|
"ui.open_a_task": {"ko":"작업 열어보기 →","en":"Open a task →","zh-CN":"打开任务 →"},
|
|
955
962
|
"ui.open_a_task_to_see_who_started_it_and_what": {"ko":"일을 누르면 누가 시작했고, 다른 AI에게 어떤 도움을 맡겼는지 쉽게 볼 수 있습니다.","en":"Open a task to see who started it and what help was delegated to other AI.","zh-CN":"点击任务即可查看由谁发起,以及向其他 AI 分配了哪些协助。"},
|
|
@@ -970,13 +977,13 @@
|
|
|
970
977
|
"ui.ready_for_commands": {"ko":"명령 전송 가능","en":"Ready for commands","zh-CN":"可发送命令"},
|
|
971
978
|
"ui.ready_to_check_for_updates": {"ko":"업데이트 확인을 준비하고 있습니다.","en":"Ready to check for updates.","zh-CN":"准备检查更新。"},
|
|
972
979
|
"ui.ready_to_install": {"ko":"설치 준비 완료","en":"Ready to install","zh-CN":"已准备安装"},
|
|
973
|
-
"ui.recent_conversations_and_tasks": {"ko":"최근 대화와 작업","en":"
|
|
980
|
+
"ui.recent_conversations_and_tasks": {"ko":"최근 24시간 대화와 작업","en":"Conversations and work from the last 24 hours","zh-CN":"最近 24 小时的对话与任务"},
|
|
974
981
|
"ui.recent_workspaces": {"ko":"최근 작업 폴더","en":"Recent workspaces","zh-CN":"最近的工作文件夹"},
|
|
975
982
|
"ui.refresh": {"ko":"↻ 새로고침","en":"↻ Refresh","zh-CN":"↻ 刷新"},
|
|
976
983
|
"ui.regular_terminals_are_hidden": {"ko":"일반 명령창은 표시하지 않음","en":"Regular terminals are hidden","zh-CN":"不显示普通终端"},
|
|
977
984
|
"ui.release_notes": {"ko":"변경 사항","en":"Release notes","zh-CN":"更新内容"},
|
|
978
985
|
"ui.remove_from_list": {"ko":"목록에서 제거","en":"Remove from list","zh-CN":"从列表中移除"},
|
|
979
|
-
"ui.rename_workspace": {"ko":"
|
|
986
|
+
"ui.rename_workspace": {"ko":"tmux 세션 이름 바꾸기","en":"Rename tmux session","zh-CN":"重命名 tmux 会话"},
|
|
980
987
|
"ui.research": {"ko":"자료 조사","en":"Research","zh-CN":"资料调查"},
|
|
981
988
|
"ui.restart": {"ko":"다시 시작","en":"Restart","zh-CN":"重新启动"},
|
|
982
989
|
"ui.review": {"ko":"검토","en":"Review","zh-CN":"审查"},
|
|
@@ -996,7 +1003,7 @@
|
|
|
996
1003
|
"ui.selects_the_windows_installer_or_macos_dmg_that_matches_the": {"ko":"운영체제와 CPU에 맞는 Windows 설치 파일 또는 macOS DMG를 선택합니다.","en":"Selects the Windows installer or macOS DMG that matches the OS and CPU.","zh-CN":"选择与操作系统和 CPU 匹配的 Windows 安装文件或 macOS DMG。"},
|
|
997
1004
|
"ui.send_command_to_terminal": {"ko":"터미널에 명령 보내기","en":"Send command to terminal","zh-CN":"向终端发送命令"},
|
|
998
1005
|
"ui.send_to_tmux_terminal": {"ko":"tmux 명령창에 보내기","en":"Send to tmux terminal","zh-CN":"发送到 tmux 终端"},
|
|
999
|
-
"ui.session_not_linked_to_a_specific_project": {"ko":"
|
|
1006
|
+
"ui.session_not_linked_to_a_specific_project": {"ko":"작업 시작 폴더 정보가 없는 AI 세션","en":"AI session without work-origin folder information","zh-CN":"缺少任务起始文件夹信息的 AI 会话"},
|
|
1000
1007
|
"ui.sessions_stay_open_when_you_change_views": {"ko":"세션은 화면을 옮겨도 유지됩니다.","en":"Sessions stay open when you change views.","zh-CN":"切换页面时会话仍会保持。"},
|
|
1001
1008
|
"ui.setup_required": {"ko":"설치 필요","en":"Setup required","zh-CN":"需要安装"},
|
|
1002
1009
|
"ui.sha256_size_check": {"ko":"SHA-256 · 크기 확인","en":"SHA-256 · Size check","zh-CN":"SHA-256 · 大小校验"},
|
|
@@ -1013,7 +1020,7 @@
|
|
|
1013
1020
|
"ui.stop_request_sent": {"ko":"중지 요청을 보냈습니다.","en":"Stop request sent.","zh-CN":"已发送停止请求。"},
|
|
1014
1021
|
"ui.stopped": {"ko":"중지됨","en":"Stopped","zh-CN":"已停止"},
|
|
1015
1022
|
"ui.task_for_ai": {"ko":"AI에게 맡길 일","en":"Task for AI","zh-CN":"交给 AI 的任务"},
|
|
1016
|
-
"ui.tasks_needing_review": {"ko":"
|
|
1023
|
+
"ui.tasks_needing_review": {"ko":"최근 24시간 확인할 일","en":"Items to check from the last 24 hours","zh-CN":"最近 24 小时的待确认事项"},
|
|
1017
1024
|
"ui.temporarily_idle": {"ko":"잠시 쉬는 중","en":"Temporarily idle","zh-CN":"暂时空闲"},
|
|
1018
1025
|
"ui.testing": {"ko":"시험","en":"Testing","zh-CN":"测试"},
|
|
1019
1026
|
"ui.the_installed_version_matches_the_latest_stable_github_release": {"ko":"설치된 버전이 GitHub의 최신 정식 릴리스와 같습니다.","en":"The installed version matches the latest stable GitHub release.","zh-CN":"已安装版本与 GitHub 最新正式版本一致。"},
|
|
@@ -1025,7 +1032,7 @@
|
|
|
1025
1032
|
"ui.this_conversation_is_connected_to_the_terminal_on_the_right": {"ko":"이 대화가 오른쪽 터미널과 연결되어 있습니다","en":"This conversation is connected to the terminal on the right","zh-CN":"此对话已连接到右侧终端"},
|
|
1026
1033
|
"ui.this_operating_system_requires_a_manual_update": {"ko":"이 운영체제는 수동 업데이트가 필요합니다.","en":"This operating system requires a manual update.","zh-CN":"此操作系统需要手动更新。"},
|
|
1027
1034
|
"ui.this_request_appears_to_need_file_changes_without_edit_permission": {"ko":"이 요청은 파일 수정이 필요해 보여요. 위의 수정 허용을 켜지 않으면 AI가 코드 변경 없이 검토만 합니다.","en":"This request appears to need file changes. Without edit permission, the AI will only review the code.","zh-CN":"此请求似乎需要修改文件。若不启用修改权限,AI 将仅审查代码而不会更改。"},
|
|
1028
|
-
"ui.this_view_is_only_for_existing_tmux_workflows_home_and": {"ko":"tmux를 이미 사용하는 경우에만 필요한 화면입니다. 일반 작업은 홈과 세션 터미널만으로 충분합니다.","en":"This view is only for existing tmux workflows. Home and Session Terminal cover regular work.","zh-CN":"此页面仅适用于已使用 tmux
|
|
1035
|
+
"ui.this_view_is_only_for_existing_tmux_workflows_home_and": {"ko":"tmux를 이미 사용하는 경우에만 필요한 화면입니다. 일반 작업은 홈과 AI 세션 터미널만으로 충분합니다.","en":"This view is only for existing tmux workflows. Home and AI Session Terminal cover regular work.","zh-CN":"此页面仅适用于已使用 tmux 的工作流。普通工作使用首页和 AI 会话终端即可。"},
|
|
1029
1036
|
"ui.tiled": {"ko":"바둑판","en":"Tiled","zh-CN":"平铺"},
|
|
1030
1037
|
"ui.tmux_controls": {"ko":"tmux 전용 조작","en":"tmux controls","zh-CN":"tmux 专用操作"},
|
|
1031
1038
|
"ui.tmux_environment": {"ko":"tmux 환경","en":"tmux environment","zh-CN":"tmux 环境"},
|
|
@@ -1048,10 +1055,10 @@
|
|
|
1048
1055
|
"ui.version_status": {"ko":"버전 상태","en":"Version status","zh-CN":"版本状态"},
|
|
1049
1056
|
"ui.view_active_work": {"ko":"진행 중 보기 →","en":"View active work →","zh-CN":"查看进行中 →"},
|
|
1050
1057
|
"ui.view_all_on_github": {"ko":"GitHub에서 전체 보기 ↗","en":"View all on GitHub ↗","zh-CN":"在 GitHub 查看全部 ↗"},
|
|
1051
|
-
"ui.view_multi_terminal_work": {"ko":"
|
|
1052
|
-
"ui.view_review_items": {"ko":"
|
|
1058
|
+
"ui.view_multi_terminal_work": {"ko":"tmux 터미널 관리 보기","en":"View tmux terminal management","zh-CN":"查看 tmux 终端管理"},
|
|
1059
|
+
"ui.view_review_items": {"ko":"확인할 일 보기 →","en":"View items to check →","zh-CN":"查看待确认事项 →"},
|
|
1053
1060
|
"ui.view_update": {"ko":"업데이트 보기","en":"View update","zh-CN":"查看更新"},
|
|
1054
|
-
"ui.waiting_for_review": {"ko":"내
|
|
1061
|
+
"ui.waiting_for_review": {"ko":"내 응답 기다림","en":"Waiting for my response","zh-CN":"等待我的回复"},
|
|
1055
1062
|
"ui.waiting_for_selection": {"ko":"선택 대기","en":"Waiting for selection","zh-CN":"等待选择"},
|
|
1056
1063
|
"ui.what_should_the_ai_work_on": {"ko":"무슨 일을 맡길까요?","en":"What should the AI work on?","zh-CN":"要让 AI 做什么?"},
|
|
1057
1064
|
"ui.when_enabled_the_ai_can_directly_edit_files_in_the": {"ko":"켜면 선택한 폴더의 파일을 직접 수정합니다.","en":"When enabled, the AI can directly edit files in the selected folder.","zh-CN":"启用后,AI 可直接修改所选文件夹中的文件。"},
|
|
@@ -1059,75 +1066,81 @@
|
|
|
1059
1066
|
"ui.window_layout": {"ko":"창 배치","en":"Window layout","zh-CN":"窗口布局"},
|
|
1060
1067
|
"ui.windows_session": {"ko":"+ Windows 세션","en":"+ Windows session","zh-CN":"+ Windows 会话"},
|
|
1061
1068
|
"ui.work_assigned_to_ai": {"ko":"AI들이 맡은 일","en":"Work assigned to AI","zh-CN":"AI 负责的工作"},
|
|
1062
|
-
"ui.work_grouped_with_tmux": {"ko":"tmux
|
|
1069
|
+
"ui.work_grouped_with_tmux": {"ko":"tmux 세션과 분할 터미널","en":"tmux sessions and split terminals","zh-CN":"tmux 会话与分屏终端"},
|
|
1063
1070
|
"ui.working": {"ko":"일하는 중","en":"Working","zh-CN":"工作中"},
|
|
1064
|
-
"ui.
|
|
1065
|
-
"ui.
|
|
1071
|
+
"ui.work_folder": {"ko":"작업 폴더","en":"Work folder","zh-CN":"工作文件夹"},
|
|
1072
|
+
"ui.workspace_name": {"ko":"tmux 세션 이름","en":"tmux session name","zh-CN":"tmux 会话名称"},
|
|
1073
|
+
"ui.workspaces": {"ko":"프로젝트 폴더 필터","en":"Project-folder filters","zh-CN":"项目文件夹筛选器"},
|
|
1066
1074
|
"ui.you_are_up_to_date": {"ko":"현재 최신 버전입니다.","en":"You are up to date.","zh-CN":"当前已是最新版本。"},
|
|
1067
1075
|
"ui.you_completed_the_basics_you_can_reopen_this_guide_anytime": {"ko":"기본 사용법을 모두 익혔어요. 언제든 다시 열어볼 수 있습니다.","en":"You completed the basics. You can reopen this guide anytime.","zh-CN":"您已掌握基础操作,随时可以重新打开本指南。"},
|
|
1068
1076
|
"ui.your_turn": {"ko":"내 차례","en":"Your turn","zh-CN":"轮到您了"},
|
|
1069
|
-
"management.action_required": {"ko":"
|
|
1077
|
+
"management.action_required": {"ko":"내 응답 기다림","en":"Waiting for my response","zh-CN":"等待我的回复"},
|
|
1070
1078
|
"management.advanced_tools": {"ko":"고급 도구","en":"Advanced tools","zh-CN":"高级工具"},
|
|
1071
|
-
"management.approve": {"ko":"
|
|
1072
|
-
"management.artifacts": {"ko":"
|
|
1079
|
+
"management.approve": {"ko":"승인 메시지 보내기","en":"Send approval message","zh-CN":"发送批准消息"},
|
|
1080
|
+
"management.artifacts": {"ko":"로그에서 찾은 산출물 후보","en":"Artifact references found in logs","zh-CN":"日志中发现的产物引用"},
|
|
1073
1081
|
"management.attention.approval": {"ko":"승인 필요","en":"Approval required","zh-CN":"需要批准"},
|
|
1074
1082
|
"management.attention.decision": {"ko":"결정 필요","en":"Decision required","zh-CN":"需要决定"},
|
|
1075
1083
|
"management.attention.error": {"ko":"오류 해결 필요","en":"Error needs resolution","zh-CN":"需要解决错误"},
|
|
1076
1084
|
"management.attention.input": {"ko":"입력 필요","en":"Input required","zh-CN":"需要输入"},
|
|
1077
|
-
"management.attention.none": {"ko":"
|
|
1085
|
+
"management.attention.none": {"ko":"내가 할 일 없음","en":"Nothing for me to do","zh-CN":"我无需处理"},
|
|
1078
1086
|
"management.attention.paused": {"ko":"일시정지됨","en":"Paused","zh-CN":"已暂停"},
|
|
1079
1087
|
"management.attention.response": {"ko":"답변 필요","en":"Response required","zh-CN":"需要回复"},
|
|
1080
1088
|
"management.blocker": {"ko":"현재 차단 요인","en":"Current blocker","zh-CN":"当前阻塞项"},
|
|
1081
|
-
"management.check.failed": {"ko":"실패","en":"
|
|
1082
|
-
"management.check.passed": {"ko":"통과","en":"
|
|
1083
|
-
"management.check.running": {"ko":"실행 중","en":"
|
|
1089
|
+
"management.check.failed": {"ko":"기록상 실패","en":"Logged as failed","zh-CN":"记录为失败"},
|
|
1090
|
+
"management.check.passed": {"ko":"기록상 통과","en":"Logged as passed","zh-CN":"记录为通过"},
|
|
1091
|
+
"management.check.running": {"ko":"로그상 실행 중","en":"Logged as running","zh-CN":"日志显示运行中"},
|
|
1092
|
+
"management.check.unknown": {"ko":"결과 상태 기록 없음","en":"Result status not recorded","zh-CN":"未记录结果状态"},
|
|
1084
1093
|
"management.control_failed": {"ko":"실행 제어 요청을 처리하지 못했습니다.","en":"The run control request failed.","zh-CN":"执行控制请求失败。"},
|
|
1085
1094
|
"management.control_pause_sent": {"ko":"작업을 일시정지했습니다.","en":"The run was paused.","zh-CN":"任务已暂停。"},
|
|
1086
1095
|
"management.control_resume_sent": {"ko":"작업을 다시 시작했습니다.","en":"The run was resumed.","zh-CN":"任务已恢复。"},
|
|
1087
|
-
"management.control_retry_sent": {"ko":"
|
|
1096
|
+
"management.control_retry_sent": {"ko":"같은 조건으로 새 실행을 시작했습니다.","en":"A new run started with the same conditions.","zh-CN":"已使用相同条件开始新任务。"},
|
|
1088
1097
|
"management.control_stop_sent": {"ko":"중지 요청을 보냈습니다.","en":"The stop request was sent.","zh-CN":"已发送停止请求。"},
|
|
1089
1098
|
"management.control_unavailable": {"ko":"이 실행에서는 해당 제어를 사용할 수 없습니다.","en":"That control is unavailable for this run.","zh-CN":"此任务不支持该控制。"},
|
|
1090
1099
|
"management.controls": {"ko":"실행 제어","en":"Run controls","zh-CN":"执行控制"},
|
|
1091
1100
|
"management.controls_description": {"ko":"이 세션에서 안전하게 지원되는 동작","en":"Actions safely supported by this session","zh-CN":"此会话安全支持的操作"},
|
|
1092
|
-
"management.deny": {"ko":"
|
|
1093
|
-
"management.detected": {"ko":"로그에서
|
|
1094
|
-
"management.evidence.high": {"ko":"
|
|
1095
|
-
"management.evidence.inferred": {"ko":"
|
|
1096
|
-
"management.evidence.low": {"ko":"
|
|
1097
|
-
"management.evidence.medium": {"ko":"
|
|
1098
|
-
"management.evidence.observed": {"ko":"
|
|
1099
|
-
"management.evidence.unverified": {"ko":"완료
|
|
1100
|
-
"management.evidence_completion": {"ko":"완료
|
|
1101
|
-
"management.evidence_hierarchy": {"ko":"관계
|
|
1102
|
-
"management.evidence_status": {"ko":"상태
|
|
1103
|
-
"management.evidence_title": {"ko":"
|
|
1104
|
-
"management.health.attention": {"ko":"
|
|
1105
|
-
"management.health.critical": {"ko":"
|
|
1106
|
-
"management.health.healthy": {"ko":"
|
|
1107
|
-
"management.health.unknown": {"ko":"
|
|
1108
|
-
"management.filter_all": {"ko":"
|
|
1101
|
+
"management.deny": {"ko":"거절 메시지 보내기","en":"Send rejection message","zh-CN":"发送拒绝消息"},
|
|
1102
|
+
"management.detected": {"ko":"로그에서 언급됨","en":"Referenced in logs","zh-CN":"日志中提及"},
|
|
1103
|
+
"management.evidence.high": {"ko":"상태·관계 직접 확인","en":"Status & relationship directly confirmed","zh-CN":"状态与关系已直接确认"},
|
|
1104
|
+
"management.evidence.inferred": {"ko":"활동 기록으로 추정","en":"Inferred from activity logs","zh-CN":"根据活动记录推测"},
|
|
1105
|
+
"management.evidence.low": {"ko":"직접 확인 정보 부족","en":"Insufficient directly confirmed data","zh-CN":"直接确认的信息不足"},
|
|
1106
|
+
"management.evidence.medium": {"ko":"일부 정보만 직접 확인","en":"Some data directly confirmed","zh-CN":"仅部分信息已直接确认"},
|
|
1107
|
+
"management.evidence.observed": {"ko":"직접 이벤트 확인","en":"Direct event confirmed","zh-CN":"已确认直接事件"},
|
|
1108
|
+
"management.evidence.unverified": {"ko":"완료 신호 미확인","en":"Completion signal not confirmed","zh-CN":"未确认完成信号"},
|
|
1109
|
+
"management.evidence_completion": {"ko":"완료 신호","en":"Completion signal","zh-CN":"完成信号"},
|
|
1110
|
+
"management.evidence_hierarchy": {"ko":"부모·도움 AI 관계 확인","en":"Parent/helper relationship check","zh-CN":"父任务与协助 AI 关系确认"},
|
|
1111
|
+
"management.evidence_status": {"ko":"상태 확인 방식","en":"Status confirmation method","zh-CN":"状态确认方式"},
|
|
1112
|
+
"management.evidence_title": {"ko":"상태 정보 확인 수준","en":"Status-information confirmation level","zh-CN":"状态信息确认程度"},
|
|
1113
|
+
"management.health.attention": {"ko":"내 응답 필요","en":"My response needed","zh-CN":"需要我的回复"},
|
|
1114
|
+
"management.health.critical": {"ko":"위험 신호 · 긴급","en":"Risk signal · urgent","zh-CN":"风险信号 · 紧急"},
|
|
1115
|
+
"management.health.healthy": {"ko":"감지 신호 없음","en":"No signals detected","zh-CN":"未检测到信号"},
|
|
1116
|
+
"management.health.unknown": {"ko":"상태 정보 불확실","en":"Status information uncertain","zh-CN":"状态信息不确定"},
|
|
1117
|
+
"management.filter_all": {"ko":"최근 24시간 확인 항목","en":"Items from the last 24 hours","zh-CN":"最近 24 小时的待确认事项"},
|
|
1118
|
+
"management.filter_group_response": {"ko":"내 응답","en":"My response","zh-CN":"我的回复"},
|
|
1119
|
+
"management.filter_group_risk": {"ko":"상태 위험 신호","en":"Status risk signals","zh-CN":"状态风险信号"},
|
|
1120
|
+
"management.filter_group_information": {"ko":"정보 확인 수준","en":"Information confirmation","zh-CN":"信息确认程度"},
|
|
1109
1121
|
"management.filter_results": {"ko":"{filter} 필터를 선택했습니다. 결과 {count}개를 표시합니다.","en":"Selected {filter}. Showing {count} results.","zh-CN":"已选择{filter},显示 {count} 条结果。"},
|
|
1110
|
-
"management.health.warning": {"ko":"주의","en":"
|
|
1111
|
-
"management.health_title": {"ko":"
|
|
1112
|
-
"management.inbox_description": {"ko":"
|
|
1122
|
+
"management.health.warning": {"ko":"위험 신호 · 주의","en":"Risk signal · warning","zh-CN":"风险信号 · 注意"},
|
|
1123
|
+
"management.health_title": {"ko":"감지된 상태 신호","en":"Detected status signals","zh-CN":"检测到的状态信号"},
|
|
1124
|
+
"management.inbox_description": {"ko":"최근 24시간 안에 활동한 세션 중 내가 답해야 할 요청과 현재 실행 위험 신호만 모았습니다.","en":"Collects only response requests and current run-risk signals from sessions active in the last 24 hours.","zh-CN":"仅汇总最近 24 小时内有活动的会话中的回复请求和当前执行风险信号。"},
|
|
1113
1125
|
"management.inbox_empty": {"ko":"지금 처리할 일이 없습니다","en":"Nothing needs action now","zh-CN":"目前无需处理"},
|
|
1114
|
-
"management.inbox_empty_detail": {"ko":"
|
|
1115
|
-
"management.inbox_eyebrow": {"ko":"
|
|
1116
|
-
"management.inbox_label": {"ko":"
|
|
1117
|
-
"management.inbox_title": {"ko":"
|
|
1118
|
-
"management.last_signal": {"ko":"마지막
|
|
1119
|
-
"management.no_artifacts": {"ko":"
|
|
1120
|
-
"management.no_checks": {"ko":"
|
|
1126
|
+
"management.inbox_empty_detail": {"ko":"최근 세션에 내 응답 요청이나 현재 실행 위험 신호가 생기면 이곳에 나타납니다.","en":"A recent session appears here when it needs your response or has a current run-risk signal.","zh-CN":"最近的会话需要您回复或出现当前执行风险信号时会显示在这里。"},
|
|
1127
|
+
"management.inbox_eyebrow": {"ko":"확인 항목","en":"ITEMS TO CHECK","zh-CN":"待确认事项"},
|
|
1128
|
+
"management.inbox_label": {"ko":"최근 24시간의 응답 요청과 현재 실행 위험 신호","en":"Response requests and current run-risk signals from the last 24 hours","zh-CN":"最近 24 小时的回复请求与当前执行风险信号"},
|
|
1129
|
+
"management.inbox_title": {"ko":"최근 24시간 확인할 일","en":"Items to check from the last 24 hours","zh-CN":"最近 24 小时的待确认事项"},
|
|
1130
|
+
"management.last_signal": {"ko":"마지막 활동 {time}","en":"Last activity {time}","zh-CN":"最后活动 {time}"},
|
|
1131
|
+
"management.no_artifacts": {"ko":"로그에서 파일 경로·커밋·테스트 산출물 언급을 아직 찾지 못했습니다.","en":"No file path, commit, or test-artifact reference has been found in logs yet.","zh-CN":"日志中尚未发现文件路径、提交或测试产物引用。"},
|
|
1132
|
+
"management.no_checks": {"ko":"로그에서 테스트 실행과 관련된 기록을 아직 찾지 못했습니다.","en":"No test-run-related record has been found in logs yet.","zh-CN":"日志中尚未发现与测试运行相关的记录。"},
|
|
1121
1133
|
"management.no_current_step": {"ko":"현재 단계 정보 없음","en":"Current step unavailable","zh-CN":"当前步骤不可用"},
|
|
1122
|
-
"management.no_health_signals": {"ko":"현재 감지된
|
|
1123
|
-
"management.operations_clear": {"ko":"
|
|
1124
|
-
"management.operations_description": {"ko":"
|
|
1134
|
+
"management.no_health_signals": {"ko":"현재 감지된 상태 신호가 없습니다.","en":"No status signals are currently detected.","zh-CN":"当前未检测到状态信号。"},
|
|
1135
|
+
"management.operations_clear": {"ko":"최근 24시간 세션에 새 응답 요청이나 현재 실행 위험 신호가 없습니다.","en":"No response request or current run-risk signal exists in sessions from the last 24 hours.","zh-CN":"最近 24 小时的会话中没有回复请求或当前执行风险信号。"},
|
|
1136
|
+
"management.operations_description": {"ko":"최근 24시간 안에 활동한 메인 작업과 도움 AI에서 실제 응답 요청과 현재 실행 위험만 표시합니다.","en":"Shows only real response requests and current run risks from main work and helper AI active in the last 24 hours.","zh-CN":"仅显示最近 24 小时内有活动的主任务与协助 AI 的实际回复请求和当前执行风险。"},
|
|
1125
1137
|
"management.operations_eyebrow": {"ko":"운영 상태","en":"OPERATIONS","zh-CN":"运行状态"},
|
|
1126
|
-
"management.operations_label": {"ko":"
|
|
1127
|
-
"management.operations_review_count": {"ko":"
|
|
1138
|
+
"management.operations_label": {"ko":"AI 작업의 응답 요청과 상태 신호","en":"AI-work response requests and status signals","zh-CN":"AI 任务的回复请求与状态信号"},
|
|
1139
|
+
"management.operations_review_count": {"ko":"확인 항목","en":"Items to check","zh-CN":"待确认事项"},
|
|
1128
1140
|
"management.operations_view_all": {"ko":"모두 보기","en":"View all","zh-CN":"查看全部"},
|
|
1129
|
-
"management.operations_severity_buckets": {"ko":"
|
|
1130
|
-
"management.operations_title": {"ko":"
|
|
1141
|
+
"management.operations_severity_buckets": {"ko":"최근 24시간 안에 활동한 메인 작업과 도움 AI의 응답 요청 및 현재 실행 위험 수. 한 작업이 여러 항목에 포함될 수 있습니다.","en":"Response requests and current run risks for main work and helper AI active in the last 24 hours. One item may appear in more than one category.","zh-CN":"最近 24 小时内有活动的主任务与协助 AI 的回复请求和当前执行风险数量。同一任务可能出现在多个类别中。"},
|
|
1142
|
+
"management.operations_title": {"ko":"최근 24시간 응답과 실행 위험","en":"Responses and run risks from the last 24 hours","zh-CN":"最近 24 小时的回复与执行风险"},
|
|
1143
|
+
"management.recent_clear": {"ko":"최근 24시간 · 확인 불필요","en":"Last 24 hours · no check needed","zh-CN":"最近 24 小时 · 无需确认"},
|
|
1131
1144
|
"management.outcome": {"ko":"완료·결과 요약","en":"Outcome summary","zh-CN":"完成与结果摘要"},
|
|
1132
1145
|
"management.outcome.cancelled": {"ko":"사용자가 중지한 작업","en":"Run cancelled by the user","zh-CN":"用户已停止任务"},
|
|
1133
1146
|
"management.outcome.completed": {"ko":"완료된 작업","en":"Completed work","zh-CN":"已完成任务"},
|
|
@@ -1135,36 +1148,36 @@
|
|
|
1135
1148
|
"management.outcome.in-progress": {"ko":"진행 중인 작업","en":"Work in progress","zh-CN":"进行中的任务"},
|
|
1136
1149
|
"management.outcome_pending": {"ko":"최종 결과가 아직 기록되지 않았습니다.","en":"A final outcome has not been recorded yet.","zh-CN":"尚未记录最终结果。"},
|
|
1137
1150
|
"management.pause": {"ko":"일시정지","en":"Pause","zh-CN":"暂停"},
|
|
1138
|
-
"management.progress": {"ko":"
|
|
1139
|
-
"management.progress_steps": {"ko":"{completed}/{total}
|
|
1151
|
+
"management.progress": {"ko":"최근 실행 이벤트","en":"Recent run events","zh-CN":"最近的执行事件"},
|
|
1152
|
+
"management.progress_steps": {"ko":"완료 기록 {completed}/{total}","en":"{completed}/{total} logged as completed","zh-CN":"记录为完成 {completed}/{total}"},
|
|
1140
1153
|
"management.quick.approve_text": {"ko":"승인합니다. 현재 계획대로 계속 진행해 주세요.","en":"Approved. Continue with the current plan.","zh-CN":"批准。请按当前计划继续。"},
|
|
1141
1154
|
"management.quick.deny_text": {"ko":"승인하지 않습니다. 현재 작업을 중단하고 대안을 제안해 주세요.","en":"Not approved. Stop this action and propose an alternative.","zh-CN":"不批准。请停止当前操作并提出替代方案。"},
|
|
1142
|
-
"management.reassign": {"ko":"다른 AI로
|
|
1143
|
-
"management.reassign_prompt": {"ko":"{provider}에서 진행하던
|
|
1144
|
-
"management.reassign_unavailable": {"ko":"
|
|
1155
|
+
"management.reassign": {"ko":"다른 AI로 새 작업 만들기","en":"Create new work with another AI","zh-CN":"使用其他 AI 创建新任务"},
|
|
1156
|
+
"management.reassign_prompt": {"ko":"{provider}에서 진행하던 요청을 새 AI 작업으로 시작합니다. 작업 폴더의 현재 상태를 먼저 확인한 뒤 완료해 주세요.\n\n원래 목표: {task}","en":"Start a new AI run for the request previously handled by {provider}. Inspect the current work-folder state first, then complete it.\n\nOriginal goal: {task}","zh-CN":"为此前由 {provider} 处理的请求启动新的 AI 任务。请先检查当前工作文件夹状态,再完成任务。\n\n原始目标:{task}"},
|
|
1157
|
+
"management.reassign_unavailable": {"ko":"설치가 감지되고 화면에 표시 중인 다른 AI CLI가 없어 새 작업을 만들 수 없습니다.","en":"No other detected and visible AI CLI is available for a new run.","zh-CN":"没有其他已检测且当前显示的 AI CLI 可用于创建新任务。"},
|
|
1145
1158
|
"management.requested_action": {"ko":"필요한 조치","en":"Requested action","zh-CN":"所需操作"},
|
|
1146
1159
|
"management.response_needed": {"ko":"다음 단계로 진행하려면 답변이 필요합니다.","en":"A response is needed before work can continue.","zh-CN":"继续前需要回复。"},
|
|
1147
1160
|
"management.resume": {"ko":"다시 시작","en":"Resume","zh-CN":"恢复"},
|
|
1148
|
-
"management.retry": {"ko":"
|
|
1149
|
-
"management.review_detail": {"ko":"
|
|
1150
|
-
"management.risk_total": {"ko":"
|
|
1151
|
-
"management.signal.context-critical": {"ko":"
|
|
1152
|
-
"management.signal.context-warning": {"ko":"
|
|
1153
|
-
"management.signal.low-confidence": {"ko":"
|
|
1154
|
-
"management.signal.orphan-agent": {"ko":"부모
|
|
1161
|
+
"management.retry": {"ko":"같은 조건으로 새로 실행","en":"Start a new run with the same conditions","zh-CN":"使用相同条件重新运行"},
|
|
1162
|
+
"management.review_detail": {"ko":"상태 정보와 상세 보기","en":"View status information and details","zh-CN":"查看状态信息与详情"},
|
|
1163
|
+
"management.risk_total": {"ko":"상태·AI 기억 한도 신호","en":"Status and AI memory-limit signals","zh-CN":"状态与 AI 记忆上限信号"},
|
|
1164
|
+
"management.signal.context-critical": {"ko":"AI 기억 한도 90% 이상 사용","en":"AI memory limit at or above 90%","zh-CN":"AI 记忆上限使用率达到 90% 以上"},
|
|
1165
|
+
"management.signal.context-warning": {"ko":"AI 기억 한도 75% 이상 사용","en":"AI memory limit at or above 75%","zh-CN":"AI 记忆上限使用率达到 75% 以上"},
|
|
1166
|
+
"management.signal.low-confidence": {"ko":"상태·관계 직접 확인 정보 부족","en":"Insufficient directly confirmed status/relationship data","zh-CN":"状态与关系的直接确认信息不足"},
|
|
1167
|
+
"management.signal.orphan-agent": {"ko":"부모 작업 연결 정보 없음","en":"Parent-work link information unavailable","zh-CN":"缺少父任务关联信息"},
|
|
1155
1168
|
"management.signal.repeated-failures": {"ko":"반복 실패 감지","en":"Repeated failures detected","zh-CN":"检测到重复失败"},
|
|
1156
1169
|
"management.signal.run-failed": {"ko":"실행 실패","en":"Run failed","zh-CN":"执行失败"},
|
|
1157
1170
|
"management.signal.run-paused": {"ko":"실행 일시정지","en":"Run paused","zh-CN":"执行已暂停"},
|
|
1158
|
-
"management.signal.stale": {"ko":"
|
|
1159
|
-
"management.signal.stalled": {"ko":"
|
|
1160
|
-
"management.signal.waiting-too-long": {"ko":"사용자
|
|
1161
|
-
"management.signal_unavailable": {"ko":"
|
|
1171
|
+
"management.signal.stale": {"ko":"2분 이상 새 활동 없음","en":"No new activity for 2+ minutes","zh-CN":"2 分钟以上无新活动"},
|
|
1172
|
+
"management.signal.stalled": {"ko":"10분 이상 새 활동 없음","en":"No new activity for 10+ minutes","zh-CN":"10 分钟以上无新活动"},
|
|
1173
|
+
"management.signal.waiting-too-long": {"ko":"사용자 응답 대기 시간 초과","en":"User-response wait threshold exceeded","zh-CN":"等待用户回复已超时"},
|
|
1174
|
+
"management.signal_unavailable": {"ko":"최근 활동 시각 정보 없음","en":"Recent activity time unavailable","zh-CN":"缺少最近活动时间信息"},
|
|
1162
1175
|
"management.status.paused": {"ko":"일시정지","en":"Paused","zh-CN":"已暂停"},
|
|
1163
1176
|
"management.stop": {"ko":"실행 중지","en":"Stop run","zh-CN":"停止执行"},
|
|
1164
1177
|
"management.summary": {"ko":"관리 요약","en":"Management summary","zh-CN":"管理摘要"},
|
|
1165
|
-
"management.unverified": {"ko":"
|
|
1166
|
-
"management.verification_checks": {"ko":"
|
|
1167
|
-
"management.verified": {"ko":"완료
|
|
1178
|
+
"management.unverified": {"ko":"완료 신호 미확인","en":"Completion signal not confirmed","zh-CN":"未确认完成信号"},
|
|
1179
|
+
"management.verification_checks": {"ko":"로그에 기록된 테스트 실행","en":"Test runs recorded in logs","zh-CN":"日志中记录的测试运行"},
|
|
1180
|
+
"management.verified": {"ko":"완료 신호 수신","en":"Completion signal received","zh-CN":"已收到完成信号"},
|
|
1168
1181
|
"update.available_version": {"ko":"새 버전 v{version}을 사용할 수 있습니다.","en":"Version v{version} is available.","zh-CN":"新版本 v{version} 可用。"},
|
|
1169
1182
|
"update.current_version": {"ko":"설치된 v{version}이 GitHub의 최신 정식 버전과 같습니다.","en":"Installed v{version} matches the latest stable GitHub release.","zh-CN":"已安装的 v{version} 与 GitHub 最新正式版本一致。"},
|
|
1170
1183
|
"update.published": {"ko":"{date} 공개","en":"Published {date}","zh-CN":"发布于 {date}"},
|