@codingame/monaco-vscode-notifications-service-override 8.0.3 → 8.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": "8.0.3",
3
+ "version": "8.0.4",
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@8.0.3"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@8.0.4"
30
30
  }
31
31
  }
@@ -161,7 +161,7 @@ let NotificationService = class NotificationService extends Disposable {
161
161
  (new NoOpNotification())
162
162
  );
163
163
  }
164
- const neverShowAgainAction = toDispose.add(( (new Action('workbench.notification.neverShowAgain', ( localize(3126, "Don't Show Again")), undefined, true, async () => {
164
+ const neverShowAgainAction = toDispose.add(( (new Action('workbench.notification.neverShowAgain', ( localize(3124, "Don't Show Again")), undefined, true, async () => {
165
165
  handle.close();
166
166
  this.storageService.store(id, true, scope, StorageTarget.USER);
167
167
  }))));
@@ -204,7 +204,7 @@ let NotificationService = class NotificationService extends Disposable {
204
204
  );
205
205
  }
206
206
  const neverShowAgainChoice = {
207
- label: ( localize(3126, "Don't Show Again")),
207
+ label: ( localize(3124, "Don't Show Again")),
208
208
  run: () => this.storageService.store(id, true, scope, StorageTarget.USER),
209
209
  isSecondary: options.neverShowAgain.isSecondary
210
210
  };