@codingame/monaco-vscode-host-service-override 26.1.1 → 26.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-host-service-override",
3
- "version": "26.1.1",
3
+ "version": "26.1.2",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - host service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "26.1.1"
18
+ "@codingame/monaco-vscode-api": "26.1.2"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -446,24 +446,24 @@ let BrowserHostService = class BrowserHostService extends Disposable {
446
446
  await this.dialogService.prompt({
447
447
  type: Severity.Warning,
448
448
  message: workspace ? ( localize(
449
- 14502,
449
+ 14692,
450
450
  "The browser blocked opening a new tab or window for '{0}'. Press 'Retry' to try again.",
451
451
  this.getRecentLabel(workspace)
452
452
  )) : ( localize(
453
- 14503,
453
+ 14693,
454
454
  "The browser blocked opening a new tab or window. Press 'Retry' to try again."
455
455
  )),
456
456
  custom: {
457
457
  markdownDetails: [{
458
458
  markdown: ( new MarkdownString(( localize(
459
- 14504,
459
+ 14694,
460
460
  "Please allow pop-ups for this website in your [browser settings]({0}).",
461
461
  "https://aka.ms/allow-vscode-popup"
462
462
  )), true))
463
463
  }]
464
464
  },
465
465
  buttons: [{
466
- label: ( localize(14505, "&&Retry")),
466
+ label: ( localize(14695, "&&Retry")),
467
467
  run: () => this.workspaceProvider.open(workspace, options)
468
468
  }],
469
469
  cancelButton: true