Skip to content

Commit 04ff05a

Browse files
committed
update localization
1 parent 2858195 commit 04ff05a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/core/package.nls.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,8 @@
312312
"AWS.amazonq.scans.noGitRepo": "Your workspace is not in a git repository. I'll review your project files for security issues, and your in-flight changes for code quality issues.",
313313
"AWS.amazonq.scans.severity": "Severity",
314314
"AWS.amazonq.scans.fileLocation": "File Location",
315+
"AWS.amazonq.scans.groupIssues": "Group Issues",
316+
"AWS.amazonq.scans.groupIssues.placeholder": "Select how to group code issues",
315317
"AWS.amazonq.featureDev.error.conversationIdNotFoundError": "Conversation id must exist before starting code generation",
316318
"AWS.amazonq.featureDev.error.contentLengthError": "The folder you selected is too large for me to use as context. Please choose a smaller folder to work on. For more information on quotas, see the <a href=\"https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/software-dev.html#quotas\" target=\"_blank\">Amazon Q Developer documentation.</a>",
317319
"AWS.amazonq.featureDev.error.illegalStateTransition": "Illegal transition between states, restart the conversation",

packages/core/src/codewhisperer/ui/prompters.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export function createCodeIssueGroupingStrategyPrompter(): QuickPickPrompter<Cod
2020
label: codeIssueGroupingStrategyLabel[strategy],
2121
})),
2222
{
23-
title: localize('aws.commands.amazonq.groupIssues', 'Group Issues'),
24-
placeholder: localize('aws.amazonq.codescan.groupIssues.placeholder', 'Select how to group code issues'),
23+
title: localize('AWS.amazonq.scans.groupIssues', 'Group Issues'),
24+
placeholder: localize('AWS.amazonq.scans.groupIssues.placeholder', 'Select how to group code issues'),
2525
}
2626
)
2727
prompter.quickPick.activeItems = prompter.quickPick.items.filter((item) => item.data === groupingStrategy)

0 commit comments

Comments
 (0)