From ae2ed183fb3f9f324d0d0f8ea1a9c5f7adc0863a Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 26 Jan 2026 17:47:48 +0000 Subject: [PATCH] Replace concatenated localize calls with single localize for gutter indicator menu (#286693) * Initial plan * Replace concatenated localize calls with a single localize call Co-authored-by: benibenj <44439583+benibenj@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: benibenj <44439583+benibenj@users.noreply.github.com> --- .../browser/view/inlineEdits/components/gutterIndicatorMenu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.ts b/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.ts index 3994b43264b..52015f27148 100644 --- a/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.ts +++ b/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.ts @@ -69,7 +69,7 @@ export class GutterIndicatorMenuContent { const gotoAndAccept = option(createOptionArgs({ id: 'gotoAndAccept', - title: `${localize('goto', "Go To")} / ${localize('accept', "Accept")}`, + title: localize('gotoAndAccept', "Go To / Accept"), icon: Codicon.check, commandId: inlineSuggestCommitId, }));