@codingame/monaco-vscode-user-data-profile-service-override 10.1.1 → 10.1.2

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-user-data-profile-service-override",
3
- "version": "10.1.1",
3
+ "version": "10.1.2",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,6 +26,6 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@10.1.1"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@10.1.2"
30
30
  }
31
31
  }
@@ -168,7 +168,7 @@ let ExtensionsResource = class ExtensionsResource {
168
168
  return;
169
169
  }
170
170
  progress?.(( localize(
171
- 8912,
171
+ 8910,
172
172
  "Installing extension {0}...",
173
173
  installExtensionInfo.extension.displayName ?? installExtensionInfo.extension.identifier.id
174
174
  )));
@@ -261,7 +261,7 @@ class ExtensionsResourceTreeItem {
261
261
  constructor() {
262
262
  this.type = "extensions" ;
263
263
  this.handle = "extensions" ;
264
- this.label = { label: ( localize(8913, "Extensions")) };
264
+ this.label = { label: ( localize(8911, "Extensions")) };
265
265
  this.collapsibleState = TreeItemCollapsibleState.Expanded;
266
266
  this.contextValue = "extensions" ;
267
267
  this.excludedExtensions = ( (new Set()));
@@ -275,7 +275,7 @@ class ExtensionsResourceTreeItem {
275
275
  handle: e.identifier.id.toLowerCase(),
276
276
  parent: this,
277
277
  label: { label: e.displayName || e.identifier.id },
278
- description: e.applicationScoped ? ( localize(8914, "All Profiles")) : undefined,
278
+ description: e.applicationScoped ? ( localize(8912, "All Profiles")) : undefined,
279
279
  collapsibleState: TreeItemCollapsibleState.None,
280
280
  checkbox: that.checkbox ? {
281
281
  get isChecked() { return !( (that.excludedExtensions.has(e.identifier.id.toLowerCase()))); },
@@ -287,9 +287,9 @@ class ExtensionsResourceTreeItem {
287
287
  that.excludedExtensions.add(e.identifier.id.toLowerCase());
288
288
  }
289
289
  },
290
- tooltip: ( localize(8915, "Select {0} Extension", e.displayName || e.identifier.id)),
290
+ tooltip: ( localize(8913, "Select {0} Extension", e.displayName || e.identifier.id)),
291
291
  accessibilityInformation: {
292
- label: ( localize(8915, "Select {0} Extension", e.displayName || e.identifier.id)),
292
+ label: ( localize(8913, "Select {0} Extension", e.displayName || e.identifier.id)),
293
293
  }
294
294
  } : undefined,
295
295
  themeIcon: Codicon.extensions,
@@ -92,7 +92,7 @@ let SnippetsResourceTreeItem = class SnippetsResourceTreeItem {
92
92
  this.uriIdentityService = uriIdentityService;
93
93
  this.type = "snippets" ;
94
94
  this.handle = ( (this.profile.snippetsHome.toString()));
95
- this.label = { label: ( localize(8910, "Snippets")) };
95
+ this.label = { label: ( localize(8914, "Snippets")) };
96
96
  this.collapsibleState = TreeItemCollapsibleState.Collapsed;
97
97
  this.excludedSnippets = ( (new ResourceSet()));
98
98
  }
@@ -120,7 +120,7 @@ let SnippetsResourceTreeItem = class SnippetsResourceTreeItem {
120
120
  },
121
121
  accessibilityInformation: {
122
122
  label: ( localize(
123
- 8911,
123
+ 8915,
124
124
  "Select Snippet {0}",
125
125
  this.uriIdentityService.extUri.basename(resource)
126
126
  )),