@codingame/monaco-vscode-configuration-service-override 7.1.1 → 8.0.1

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-configuration-service-override",
3
- "version": "7.1.1",
3
+ "version": "8.0.1",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@7.1.1",
30
- "@codingame/monaco-vscode-files-service-override": "7.1.1"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@8.0.1",
30
+ "@codingame/monaco-vscode-files-service-override": "8.0.1"
31
31
  }
32
32
  }
@@ -354,7 +354,7 @@ jsonRegistry.registerSchema('vscode://schemas/workspaceConfig', {
354
354
  },
355
355
  name: {
356
356
  type: 'string',
357
- description: ( localize(3637, "An optional name for the folder. "))
357
+ description: ( localize(3636, "An optional name for the folder. "))
358
358
  }
359
359
  },
360
360
  required: ['uri']
@@ -96,7 +96,7 @@ registerAction2(class extends Action2 {
96
96
  constructor() {
97
97
  super({
98
98
  id: 'workbench.action.openWorkspaceFromEditor',
99
- title: ( localize2(3653, "Open Workspace")),
99
+ title: ( localize2(3650, "Open Workspace")),
100
100
  f1: false,
101
101
  menu: {
102
102
  id: MenuId.EditorContent,
@@ -203,8 +203,8 @@ let ConfigurationEditing = class ConfigurationEditing {
203
203
  }
204
204
  }
205
205
  onConfigurationFileDirtyError(error, operation, scopes) {
206
- const openStandAloneConfigurationActionLabel = operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY ? ( localize(8752, "Open Tasks Configuration"))
207
- : operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY ? ( localize(8752, "Open Launch Configuration"))
206
+ const openStandAloneConfigurationActionLabel = operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY ? ( localize(8750, "Open Tasks Configuration"))
207
+ : operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY ? ( localize(8751, "Open Launch Configuration"))
208
208
  : null;
209
209
  if (openStandAloneConfigurationActionLabel) {
210
210
  this.notificationService.prompt(Severity$1.Error, error.message, [{
@@ -225,7 +225,7 @@ let ConfigurationEditing = class ConfigurationEditing {
225
225
  run: () => this.writeConfiguration(operation.target, { key: operation.key, value: operation.value }, { handleDirtyFile: 'save', scopes })
226
226
  },
227
227
  {
228
- label: ( localize(8753, "Open Settings")),
228
+ label: ( localize(8752, "Open Settings")),
229
229
  run: () => this.openSettings(operation)
230
230
  }]);
231
231
  }