@codingame/monaco-vscode-notifications-service-override 11.0.2 → 11.1.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-notifications-service-override",
3
- "version": "11.0.2",
3
+ "version": "11.1.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@11.0.2",
30
- "@codingame/monaco-vscode-notifications-workbench-common": "11.0.2"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@11.1.1",
30
+ "@codingame/monaco-vscode-notifications-workbench-common": "11.1.1"
31
31
  }
32
32
  }
@@ -159,7 +159,7 @@ let NotificationService = class NotificationService extends Disposable {
159
159
  (new NoOpNotification())
160
160
  );
161
161
  }
162
- const neverShowAgainAction = toDispose.add(( (new Action('workbench.notification.neverShowAgain', ( localize(3123, "Don't Show Again")), undefined, true, async () => {
162
+ const neverShowAgainAction = toDispose.add(( (new Action('workbench.notification.neverShowAgain', ( localize(2641, "Don't Show Again")), undefined, true, async () => {
163
163
  handle.close();
164
164
  this.storageService.store(id, true, scope, 0 );
165
165
  }))));
@@ -202,7 +202,7 @@ let NotificationService = class NotificationService extends Disposable {
202
202
  );
203
203
  }
204
204
  const neverShowAgainChoice = {
205
- label: ( localize(3123, "Don't Show Again")),
205
+ label: ( localize(2641, "Don't Show Again")),
206
206
  run: () => this.storageService.store(id, true, scope, 0 ),
207
207
  isSecondary: options.neverShowAgain.isSecondary
208
208
  };