diff --git a/src/workflow/panel/WorkflowsPanel.tsx b/src/workflow/panel/WorkflowsPanel.tsx index 84a332956..19e383bf9 100644 --- a/src/workflow/panel/WorkflowsPanel.tsx +++ b/src/workflow/panel/WorkflowsPanel.tsx @@ -117,14 +117,14 @@ export function WorkflowsPanel({ if (!focused) return; const canUseTool = context.canUseTool; if (!canUseTool) { - onDone('resume 需要 canUseTool 上下文,请在主会话中用 / resume 重试。'); + onDone('resume needs canUseTool context; run / resume from the main session.'); return; } void svc .launch({ resumeFromRunId: focused.runId, name: focused.workflowName }, context, canUseTool) - .catch(e => onDone(`resume 失败:${(e as Error).message}`)); + .catch(e => onDone(`resume failed: ${(e as Error).message}`)); }, - newRun: () => onDone('Tip: 用 / 启动命名 workflow,或通过 Workflow 工具带 name 参数。'), + newRun: () => onDone('Tip: start a named workflow with /, or pass name via the Workflow tool.'), quit: () => onDone(), }; useWorkflowKeyboard(handlers); @@ -182,7 +182,7 @@ export function WorkflowsPanel({ - Tab 切 run · ←/→ 切焦点 · ↑/↓ 移动 · x kill · r resume · q quit + Tab switch run · ←/→ focus · ↑/↓ move · x kill · r resume · q quit );