Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@
"AWS.amazonq.opensettings:": "Open settings",
"AWS.amazonq.executeBash.run": "Run",
"AWS.amazonq.executeBash.reject": "Reject",
"AWS.amazonq.chat.directive.pairProgrammingModeOn": "You are using **pair programming mode**: Q can now list files, preview code diffs and allow you to run shell commands.",
"AWS.amazonq.chat.directive.pairProgrammingModeOff": "You turned off **pair programming mode**. Q will not include code diffs or run commands in the chat.",
"AWS.amazonq.chat.directive.pairProgrammingModeOn": "You are using **pair programming**: Q can now list files, preview code diffs and allow you to run shell commands.",
"AWS.amazonq.chat.directive.pairProgrammingModeOff": "You turned off **pair programming**. Q will not include code diffs or run commands in the chat.",
"AWS.amazonq.chat.directive.permission.readAndList": "I need permission to read files and list directories outside the workspace.",
"AWS.amazonq.chat.directive.runCommandToProceed": "Run the command to proceed.",
"AWS.toolkit.lambda.walkthrough.quickpickTitle": "Application Builder Walkthrough",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/src/amazonq/webview/ui/tabs/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ export class TabDataGenerator {
header: {
icon: 'code-block',
iconStatus: 'primary',
body: '## Pair programmer mode',
body: '## Pair Programmer',
},
fullWidth: true,
canBeDismissed: true,
body: 'Pair code with Amazon Q, your virtual pair programmer that can work alongside you autonomously making real-time code changes on your behalf. \n\n Switch off pair programmer mode to get read-only responses from Q.',
body: 'Amazon Q Developer chat can now write code and run shell commands on your behalf. Disable Pair Programmer if you prefer a read-only experience.',
}

const regionProfileCard: ChatItem | undefined =
Expand Down Expand Up @@ -115,7 +115,7 @@ Enter \`/\` to view quick actions. Use \`@\` to add saved prompts, files, folder
{
type: 'switch',
id: 'pair-programmer-mode',
tooltip: 'Enable or disable pair programmer mode',
tooltip: 'Enable or disable Pair Programmer',
value: 'true',
icon: 'code-block',
},
Expand Down