@codingame/monaco-vscode-notifications-service-override 33.0.9 → 34.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-notifications-service-override",
3
- "version": "33.0.9",
3
+ "version": "34.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - notifications service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "33.0.9"
18
+ "@codingame/monaco-vscode-api": "34.0.0"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -187,7 +187,7 @@ let NotificationService = class NotificationService extends Disposable {
187
187
  if (this.storageService.getBoolean(id, scope)) {
188
188
  return ( new NoOpNotification());
189
189
  }
190
- const neverShowAgainAction = toDispose.add(( new Action("workbench.notification.neverShowAgain", ( localize(16960, "Don't Show Again")), undefined, true, async () => {
190
+ const neverShowAgainAction = toDispose.add(( new Action("workbench.notification.neverShowAgain", ( localize(17175, "Don't Show Again")), undefined, true, async () => {
191
191
  handle.close();
192
192
  this.storageService.store(id, true, scope, StorageTarget.USER);
193
193
  })));
@@ -226,7 +226,7 @@ let NotificationService = class NotificationService extends Disposable {
226
226
  return ( new NoOpNotification());
227
227
  }
228
228
  const neverShowAgainChoice = {
229
- label: ( localize(16960, "Don't Show Again")),
229
+ label: ( localize(17175, "Don't Show Again")),
230
230
  run: () => this.storageService.store(id, true, scope, StorageTarget.USER),
231
231
  isSecondary: options.neverShowAgain.isSecondary
232
232
  };