diff --git a/src/vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet.ts b/src/vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet.ts index 03f55ac359708..e42370ce4fa58 100644 --- a/src/vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet.ts +++ b/src/vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet.ts @@ -32,8 +32,8 @@ export class SurroundWithSnippetEditorAction extends SnippetEditorAction { static readonly options = { id: 'editor.action.surroundWithSnippet', title: { - value: localize('label', 'More...'), - original: 'More...' + value: localize('label', 'Surround With Snippet...'), + original: 'Surround With Snippet...' } }; diff --git a/src/vs/workbench/contrib/snippets/browser/snippetCodeActionProvider.ts b/src/vs/workbench/contrib/snippets/browser/snippetCodeActionProvider.ts index b99af9f5749ae..a061cca559350 100644 --- a/src/vs/workbench/contrib/snippets/browser/snippetCodeActionProvider.ts +++ b/src/vs/workbench/contrib/snippets/browser/snippetCodeActionProvider.ts @@ -25,7 +25,7 @@ class SurroundWithSnippetCodeActionProvider implements CodeActionProvider { private static readonly _overflowCommandCodeAction: CodeAction = { kind: CodeActionKind.SurroundWith.value, - title: SurroundWithSnippetEditorAction.options.title.value, + title: localize('more', "More..."), command: { id: SurroundWithSnippetEditorAction.options.id, title: SurroundWithSnippetEditorAction.options.title.value,