@codingame/monaco-vscode-issue-service-override 2.2.2 → 3.0.0

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-issue-service-override",
3
- "version": "2.2.2",
3
+ "version": "3.0.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,6 +18,6 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@2.2.2"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@3.0.0"
22
22
  }
23
23
  }
@@ -1,5 +1,5 @@
1
1
  import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
2
- import { localizeWithPath } from 'vscode/vscode/vs/nls';
2
+ import { localize2WithPath, localizeWithPath } from 'vscode/vscode/vs/nls';
3
3
  import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
4
4
  import { MenuRegistry, MenuId } from 'vscode/vscode/vs/platform/actions/common/actions';
5
5
  import { CommandsRegistry } from 'vscode/vscode/vs/platform/commands/common/commands';
@@ -71,14 +71,11 @@ let BaseIssueContribution = class BaseIssueContribution {
71
71
  });
72
72
  const reportIssue = {
73
73
  id: OpenIssueReporterActionId,
74
- title: {
75
- value: ( localizeWithPath(
76
- 'vs/workbench/contrib/issue/common/issue.contribution',
77
- { key: 'reportIssueInEnglish', comment: ['Translate this to "Report Issue in English" in all languages please!'] },
78
- "Report Issue..."
79
- )),
80
- original: 'Report Issue...'
81
- },
74
+ title: ( localize2WithPath(
75
+ 'vs/workbench/contrib/issue/common/issue.contribution',
76
+ { key: 'reportIssueInEnglish', comment: ['Translate this to "Report Issue in English" in all languages please!'] },
77
+ "Report Issue..."
78
+ )),
82
79
  category: Categories.Help
83
80
  };
84
81
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, { command: reportIssue });