@codingame/monaco-vscode-notifications-service-override 23.0.3 → 23.0.4

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": "23.0.3",
3
+ "version": "23.0.4",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - notifications service-override",
6
6
  "keywords": [],
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-494be54c-bd37-5b3c-af70-02f086e28768-common": "23.0.3",
19
- "@codingame/monaco-vscode-api": "23.0.3"
18
+ "@codingame/monaco-vscode-494be54c-bd37-5b3c-af70-02f086e28768-common": "23.0.4",
19
+ "@codingame/monaco-vscode-api": "23.0.4"
20
20
  },
21
21
  "main": "index.js",
22
22
  "module": "index.js",
@@ -141,7 +141,7 @@ let NotificationService = class NotificationService extends Disposable {
141
141
  if (this.storageService.getBoolean(id, scope)) {
142
142
  return ( new NoOpNotification());
143
143
  }
144
- const neverShowAgainAction = toDispose.add(( new Action('workbench.notification.neverShowAgain', ( localize(13971, "Don't Show Again")), undefined, true, async () => {
144
+ const neverShowAgainAction = toDispose.add(( new Action('workbench.notification.neverShowAgain', ( localize(13974, "Don't Show Again")), undefined, true, async () => {
145
145
  handle.close();
146
146
  this.storageService.store(id, true, scope, StorageTarget.USER);
147
147
  })));
@@ -181,7 +181,7 @@ let NotificationService = class NotificationService extends Disposable {
181
181
  return ( new NoOpNotification());
182
182
  }
183
183
  const neverShowAgainChoice = {
184
- label: ( localize(13971, "Don't Show Again")),
184
+ label: ( localize(13974, "Don't Show Again")),
185
185
  run: () => this.storageService.store(id, true, scope, StorageTarget.USER),
186
186
  isSecondary: options.neverShowAgain.isSecondary
187
187
  };