Skip to content

Commit 1013818

Browse files
justschenCopilot
andauthored
Update extensions/copilot/src/extension/chatSessions/copilotcli/node/exitPlanModeHandler.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent a4af5cf commit 1013818

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

extensions/copilot/src/extension/chatSessions/copilotcli/node/exitPlanModeHandler.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ import { IToolsService } from '../../../tools/common/toolsService';
1717
type ExitPlanModeActionType = Parameters<NonNullable<SessionOptions['onExitPlanMode']>>[0]['actions'][number];
1818

1919
const actionDescriptions: Record<ExitPlanModeActionType, { label: string; description: string }> = {
20-
'autopilot': { label: 'Implement with Autopilot', description: l10n.t('Auto-approve all tool calls and continue until the task is done.') },
21-
'autopilot_fleet': { label: 'Implement with Autopilot Fleet', description: l10n.t('Auto-approve all tool calls, including fleet management actions, and continue until the task is done.') },
22-
'interactive': { label: 'Implement Plan', description: l10n.t('Implement the plan, asking for input and approval for each action.') },
23-
'exit_only': { label: 'Approve Plan Only', description: l10n.t('Approve the plan without executing it. I will implement it myself.') },
20+
'autopilot': { label: l10n.t("Implement with Autopilot"), description: l10n.t('Auto-approve all tool calls and continue until the task is done.') },
21+
'autopilot_fleet': { label: l10n.t("Implement with Autopilot Fleet"), description: l10n.t('Auto-approve all tool calls, including fleet management actions, and continue until the task is done.') },
22+
'interactive': { label: l10n.t("Implement Plan"), description: l10n.t('Implement the plan, asking for input and approval for each action.') },
23+
'exit_only': { label: l10n.t("Approve Plan Only"), description: l10n.t('Approve the plan without executing it. I will implement it myself.') },
2424
};
2525

2626
/**

0 commit comments

Comments
 (0)