@codingame/monaco-vscode-snippets-service-override 2.2.0-next.3 → 2.2.0-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-snippets-service-override",
3
- "version": "2.2.0-next.3",
3
+ "version": "2.2.0-next.5",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,8 +18,8 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@2.2.0-next.3",
21
+ "vscode": "npm:@codingame/monaco-vscode-api@2.2.0-next.5",
22
22
  "vscode-marked": "npm:marked@=3.0.2",
23
- "@codingame/monaco-vscode-files-service-override": "2.2.0-next.3"
23
+ "@codingame/monaco-vscode-files-service-override": "2.2.0-next.5"
24
24
  }
25
25
  }
@@ -22,9 +22,9 @@ class SurroundWithSnippetEditorAction extends SnippetEditorAction {
22
22
  value: ( localizeWithPath(
23
23
  'vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet',
24
24
  'label',
25
- 'More...'
25
+ 'Surround With Snippet...'
26
26
  )),
27
- original: 'More...'
27
+ original: 'Surround With Snippet...'
28
28
  }
29
29
  }; }
30
30
  constructor() {
@@ -16,7 +16,11 @@ let SurroundWithSnippetCodeActionProvider = class SurroundWithSnippetCodeActionP
16
16
  static { this._MAX_CODE_ACTIONS = 4; }
17
17
  static { this._overflowCommandCodeAction = {
18
18
  kind: CodeActionKind.SurroundWith.value,
19
- title: SurroundWithSnippetEditorAction.options.title.value,
19
+ title: ( localizeWithPath(
20
+ 'vs/workbench/contrib/snippets/browser/snippetCodeActionProvider',
21
+ 'more',
22
+ "More..."
23
+ )),
20
24
  command: {
21
25
  id: SurroundWithSnippetEditorAction.options.id,
22
26
  title: SurroundWithSnippetEditorAction.options.title.value,