@codingame/monaco-vscode-issue-service-override 26.2.2 → 28.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-issue-service-override",
3
- "version": "26.2.2",
3
+ "version": "28.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - issue service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "26.2.2"
18
+ "@codingame/monaco-vscode-api": "28.0.0"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -116,17 +116,17 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
116
116
  fileOnMarketplace,
117
117
  fileOnProduct
118
118
  });
119
- this.createAction = this._register(( new Action("issueReporter.create", ( localize(8905, "Create on GitHub")), undefined, true, async () => {
119
+ this.createAction = this._register(( new Action("issueReporter.create", ( localize(9745, "Create on GitHub")), undefined, true, async () => {
120
120
  this.delayedSubmit.trigger(async () => {
121
121
  this.createIssue(true);
122
122
  });
123
123
  })));
124
- this.previewAction = this._register(( new Action("issueReporter.preview", ( localize(8906, "Preview on GitHub")), undefined, true, async () => {
124
+ this.previewAction = this._register(( new Action("issueReporter.preview", ( localize(9746, "Preview on GitHub")), undefined, true, async () => {
125
125
  this.delayedSubmit.trigger(async () => {
126
126
  this.createIssue(false);
127
127
  });
128
128
  })));
129
- this.privateAction = this._register(( new Action("issueReporter.privateCreate", ( localize(8907, "Create Internally")), undefined, true, async () => {
129
+ this.privateAction = this._register(( new Action("issueReporter.privateCreate", ( localize(9747, "Create Internally")), undefined, true, async () => {
130
130
  this.delayedSubmit.trigger(async () => {
131
131
  this.createIssue(true, true);
132
132
  });
@@ -226,7 +226,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
226
226
  filingNote.classList.add("internal-preview-message");
227
227
  container.appendChild(filingNote);
228
228
  }
229
- filingNote.textContent = escape(( localize(8908, "If your copilot debug logs contain private information:")));
229
+ filingNote.textContent = escape(( localize(9748, "If your copilot debug logs contain private information:")));
230
230
  }
231
231
  updatePublicGithubButton(container) {
232
232
  const issueReporterElement = this.getElementById("issue-reporter");
@@ -238,7 +238,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
238
238
  }
239
239
  if (!this.acknowledged && this.needsUpdate) {
240
240
  this.publicGithubButton = this._register(( new Button(container, unthemedButtonStyles)));
241
- this.publicGithubButton.label = ( localize(8909, "Confirm Version Acknowledgement"));
241
+ this.publicGithubButton.label = ( localize(9749, "Confirm Version Acknowledgement"));
242
242
  this.publicGithubButton.enabled = false;
243
243
  } else if (this.data.githubAccessToken && this.isPreviewEnabled()) {
244
244
  this.publicGithubButton = this._register(( new ButtonWithDropdown(container, {
@@ -250,21 +250,21 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
250
250
  this._register(this.publicGithubButton.onDidClick(() => {
251
251
  this.createAction.run();
252
252
  }));
253
- this.publicGithubButton.label = ( localize(8910, "Create on GitHub"));
253
+ this.publicGithubButton.label = ( localize(9750, "Create on GitHub"));
254
254
  this.publicGithubButton.enabled = true;
255
255
  } else if (this.data.githubAccessToken && !this.isPreviewEnabled()) {
256
256
  this.publicGithubButton = this._register(( new Button(container, unthemedButtonStyles)));
257
257
  this._register(this.publicGithubButton.onDidClick(() => {
258
258
  this.createAction.run();
259
259
  }));
260
- this.publicGithubButton.label = ( localize(8910, "Create on GitHub"));
260
+ this.publicGithubButton.label = ( localize(9750, "Create on GitHub"));
261
261
  this.publicGithubButton.enabled = true;
262
262
  } else {
263
263
  this.publicGithubButton = this._register(( new Button(container, unthemedButtonStyles)));
264
264
  this._register(this.publicGithubButton.onDidClick(() => {
265
265
  this.previewAction.run();
266
266
  }));
267
- this.publicGithubButton.label = ( localize(8911, "Preview on GitHub"));
267
+ this.publicGithubButton.label = ( localize(9751, "Preview on GitHub"));
268
268
  this.publicGithubButton.enabled = true;
269
269
  }
270
270
  const repoLink = this.getElementById("show-repo-name");
@@ -317,7 +317,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
317
317
  }));
318
318
  this.internalGithubButton.element.id = "internal-create-btn";
319
319
  this.internalGithubButton.element.classList.add("internal-create-subtle");
320
- this.internalGithubButton.label = ( localize(8912, "Create Internally"));
320
+ this.internalGithubButton.label = ( localize(9752, "Create Internally"));
321
321
  this.internalGithubButton.enabled = true;
322
322
  this.internalGithubButton.setTitle(this.data.privateUri.path.slice(1));
323
323
  }
@@ -398,7 +398,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
398
398
  const {
399
399
  selectedExtension
400
400
  } = this.issueReporterModel.getData();
401
- reset(extensionsSelector, this.makeOption("", ( localize(8913, "Select extension")), true), ...( extensionOptions.map(extension => makeOption(extension, selectedExtension))));
401
+ reset(extensionsSelector, this.makeOption("", ( localize(9753, "Select extension")), true), ...( extensionOptions.map(extension => makeOption(extension, selectedExtension))));
402
402
  if (!selectedExtension) {
403
403
  extensionsSelector.selectedIndex = 0;
404
404
  }
@@ -502,10 +502,10 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
502
502
  const info = containingElement && containingElement.lastElementChild;
503
503
  if (info && info.classList.contains("hidden")) {
504
504
  show(info);
505
- label.textContent = ( localize(8914, "hide"));
505
+ label.textContent = ( localize(9754, "hide"));
506
506
  } else {
507
507
  hide(info);
508
- label.textContent = ( localize(8915, "show"));
508
+ label.textContent = ( localize(9755, "show"));
509
509
  }
510
510
  }
511
511
  });
@@ -526,13 +526,13 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
526
526
  }
527
527
  const descriptionTextArea = this.getElementById("issue-title");
528
528
  if (value === IssueSource.VSCode) {
529
- descriptionTextArea.placeholder = ( localize(8916, "E.g Workbench is missing problems panel"));
529
+ descriptionTextArea.placeholder = ( localize(9756, "E.g Workbench is missing problems panel"));
530
530
  } else if (value === IssueSource.Extension) {
531
- descriptionTextArea.placeholder = ( localize(8917, "E.g. Missing alt text on extension readme image"));
531
+ descriptionTextArea.placeholder = ( localize(9757, "E.g. Missing alt text on extension readme image"));
532
532
  } else if (value === IssueSource.Marketplace) {
533
- descriptionTextArea.placeholder = ( localize(8918, "E.g Cannot disable installed extension"));
533
+ descriptionTextArea.placeholder = ( localize(9758, "E.g Cannot disable installed extension"));
534
534
  } else {
535
- descriptionTextArea.placeholder = ( localize(8919, "Please enter a title"));
535
+ descriptionTextArea.placeholder = ( localize(9759, "Please enter a title"));
536
536
  }
537
537
  let fileOnExtension, fileOnMarketplace, fileOnProduct = false;
538
538
  if (value === IssueSource.Extension) {
@@ -769,7 +769,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
769
769
  if (results.length) {
770
770
  const issues = $("div.issues-container");
771
771
  const issuesText = $("div.list-title");
772
- issuesText.textContent = ( localize(8920, "Similar issues"));
772
+ issuesText.textContent = ( localize(9760, "Similar issues"));
773
773
  this.numberOfSearchResultsDisplayed = results.length < 5 ? results.length : 5;
774
774
  for (let i = 0; i < this.numberOfSearchResultsDisplayed; i++) {
775
775
  const issue = results[i];
@@ -789,8 +789,8 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
789
789
  renderIcon(issue.state === "open" ? Codicon.issueOpened : Codicon.issueClosed)
790
790
  );
791
791
  const issueStateLabel = $("span.issue-state.label");
792
- issueStateLabel.textContent = issue.state === "open" ? ( localize(8921, "Open")) : ( localize(8922, "Closed"));
793
- issueState.title = issue.state === "open" ? ( localize(8921, "Open")) : ( localize(8922, "Closed"));
792
+ issueStateLabel.textContent = issue.state === "open" ? ( localize(9761, "Open")) : ( localize(9762, "Closed"));
793
+ issueState.title = issue.state === "open" ? ( localize(9761, "Open")) : ( localize(9762, "Closed"));
794
794
  issueState.appendChild(issueIcon);
795
795
  issueState.appendChild(issueStateLabel);
796
796
  item = $("div.issue", undefined, issueState, link);
@@ -811,7 +811,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
811
811
  const {
812
812
  issueType
813
813
  } = this.issueReporterModel.getData();
814
- reset(typeSelect, makeOption(IssueType.Bug, ( localize(8923, "Bug Report"))), makeOption(IssueType.FeatureRequest, ( localize(8924, "Feature Request"))), makeOption(IssueType.PerformanceIssue, ( localize(8925, "Performance Issue (freeze, slow, crash)"))));
814
+ reset(typeSelect, makeOption(IssueType.Bug, ( localize(9763, "Bug Report"))), makeOption(IssueType.FeatureRequest, ( localize(9764, "Feature Request"))), makeOption(IssueType.PerformanceIssue, ( localize(9765, "Performance Issue (freeze, slow, crash)"))));
815
815
  typeSelect.value = ( issueType.toString());
816
816
  this.setSourceOptions();
817
817
  }
@@ -844,14 +844,14 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
844
844
  }
845
845
  }
846
846
  sourceSelect.innerText = "";
847
- sourceSelect.append(this.makeOption("", ( localize(8926, "Select source")), true));
848
- sourceSelect.append(this.makeOption(IssueSource.VSCode, ( localize(8927, "Visual Studio Code")), false));
849
- sourceSelect.append(this.makeOption(IssueSource.Extension, ( localize(8928, "A VS Code extension")), false));
847
+ sourceSelect.append(this.makeOption("", ( localize(9766, "Select source")), true));
848
+ sourceSelect.append(this.makeOption(IssueSource.VSCode, ( localize(9767, "Visual Studio Code")), false));
849
+ sourceSelect.append(this.makeOption(IssueSource.Extension, ( localize(9768, "A VS Code extension")), false));
850
850
  if (this.product.reportMarketplaceIssueUrl) {
851
- sourceSelect.append(this.makeOption(IssueSource.Marketplace, ( localize(8929, "Extensions Marketplace")), false));
851
+ sourceSelect.append(this.makeOption(IssueSource.Marketplace, ( localize(9769, "Extensions Marketplace")), false));
852
852
  }
853
853
  if (issueType !== IssueType.FeatureRequest) {
854
- sourceSelect.append(this.makeOption(IssueSource.Unknown, ( localize(8930, "Don't know")), false));
854
+ sourceSelect.append(this.makeOption(IssueSource.Unknown, ( localize(9770, "Don't know")), false));
855
855
  }
856
856
  if (selected !== -1 && selected < sourceSelect.options.length) {
857
857
  sourceSelect.selectedIndex = selected;
@@ -907,7 +907,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
907
907
  const fileName = `extensionData_${formattedDate}_${formattedTime}.md`;
908
908
  const handleLinkClick = async () => {
909
909
  const downloadPath = await this.fileDialogService.showSaveDialog({
910
- title: ( localize(8931, "Save Extension Data")),
910
+ title: ( localize(9771, "Save Extension Data")),
911
911
  availableFileSystems: [Schemas.file],
912
912
  defaultUri: joinPath(await this.fileDialogService.defaultFilePath(Schemas.file), fileName)
913
913
  });
@@ -923,13 +923,13 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
923
923
  if (selectedExtension && this.nonGitHubIssueUrl) {
924
924
  hide(titleTextArea);
925
925
  hide(descriptionTextArea);
926
- reset(descriptionTitle, ( localize(8932, "This extension handles issues outside of VS Code")));
926
+ reset(descriptionTitle, ( localize(9772, "This extension handles issues outside of VS Code")));
927
927
  reset(descriptionSubtitle, ( localize(
928
- 8933,
928
+ 9773,
929
929
  "The '{0}' extension prefers to use an external issue reporter. To be taken to that issue reporting experience, click the button below.",
930
930
  selectedExtension.displayName
931
931
  )));
932
- this.publicGithubButton.label = ( localize(8934, "Open External Issue Reporter"));
932
+ this.publicGithubButton.label = ( localize(9774, "Open External Issue Reporter"));
933
933
  return;
934
934
  }
935
935
  if (fileOnExtension && selectedExtension?.data) {
@@ -956,9 +956,9 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
956
956
  show(extensionsBlock);
957
957
  }
958
958
  }
959
- reset(descriptionTitle, ( localize(8935, "Steps to Reproduce")) + " ", $("span.required-input", undefined, "*"));
959
+ reset(descriptionTitle, ( localize(9775, "Steps to Reproduce")) + " ", $("span.required-input", undefined, "*"));
960
960
  reset(descriptionSubtitle, ( localize(
961
- 8936,
961
+ 9776,
962
962
  "Share the steps needed to reliably reproduce the problem. Please include actual and expected results. We support GitHub-flavored Markdown. You will be able to edit your issue and add screenshots when we preview it on GitHub."
963
963
  )));
964
964
  } else if (issueType === IssueType.PerformanceIssue) {
@@ -974,15 +974,15 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
974
974
  } else if (!fileOnMarketplace) {
975
975
  show(extensionsBlock);
976
976
  }
977
- reset(descriptionTitle, ( localize(8935, "Steps to Reproduce")) + " ", $("span.required-input", undefined, "*"));
977
+ reset(descriptionTitle, ( localize(9775, "Steps to Reproduce")) + " ", $("span.required-input", undefined, "*"));
978
978
  reset(descriptionSubtitle, ( localize(
979
- 8937,
979
+ 9777,
980
980
  "When did this performance issue happen? Does it occur on startup or after a specific series of actions? We support GitHub-flavored Markdown. You will be able to edit your issue and add screenshots when we preview it on GitHub."
981
981
  )));
982
982
  } else if (issueType === IssueType.FeatureRequest) {
983
- reset(descriptionTitle, ( localize(8938, "Description")) + " ", $("span.required-input", undefined, "*"));
983
+ reset(descriptionTitle, ( localize(9778, "Description")) + " ", $("span.required-input", undefined, "*"));
984
984
  reset(descriptionSubtitle, ( localize(
985
- 8939,
985
+ 9779,
986
986
  "Please describe the feature you would like to see. We support GitHub-flavored Markdown. You will be able to edit your issue and add screenshots when we preview it on GitHub."
987
987
  )));
988
988
  }
@@ -1113,7 +1113,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
1113
1113
  throw ( new CancellationError());
1114
1114
  }
1115
1115
  return baseUrl + `&body=${encodeURIComponent(( localize(
1116
- 8940,
1116
+ 9780,
1117
1117
  "We have written the needed data into your clipboard because it was too large to send. Please paste."
1118
1118
  )))}`;
1119
1119
  }
@@ -1302,7 +1302,7 @@ let BaseIssueReporterService = class BaseIssueReporterService extends Disposable
1302
1302
  const target = this.window.document.querySelector(".block-extensions .block-info");
1303
1303
  if (target) {
1304
1304
  if (this.disableExtensions) {
1305
- reset(target, ( localize(8941, "Extensions are disabled")));
1305
+ reset(target, ( localize(9781, "Extensions are disabled")));
1306
1306
  return;
1307
1307
  }
1308
1308
  const themeExclusionStr = numThemeExtensions ? `\n(${numThemeExtensions} theme extensions excluded)` : "";
@@ -32,5 +32,5 @@ let WebIssueContribution = class WebIssueContribution extends BaseIssueContribut
32
32
  WebIssueContribution = ( __decorate([( __param(0, IProductService)), ( __param(1, IConfigurationService))], WebIssueContribution));
33
33
  ( Registry.as(Extensions$1.Workbench)).registerWorkbenchContribution(WebIssueContribution, LifecyclePhase.Restored);
34
34
  CommandsRegistry.registerCommand("_issues.getSystemStatus", accessor => {
35
- return localize(8942, "The --status argument is not yet supported in browsers.");
35
+ return localize(9782, "The --status argument is not yet supported in browsers.");
36
36
  });
@@ -157,17 +157,17 @@ let IssueFormService = class IssueFormService {
157
157
  await this.dialogService.prompt({
158
158
  type: Severity.Warning,
159
159
  message: ( localize(
160
- 8943,
160
+ 9783,
161
161
  "Your input will not be saved. Are you sure you want to close this window?"
162
162
  )),
163
163
  buttons: [{
164
- label: ( localize(8944, "&&Yes")),
164
+ label: ( localize(9784, "&&Yes")),
165
165
  run: () => {
166
166
  this.closeReporter();
167
167
  this.issueReporterWindow = null;
168
168
  }
169
169
  }, {
170
- label: ( localize(8945, "Cancel")),
170
+ label: ( localize(9785, "Cancel")),
171
171
  run: () => {}
172
172
  }]
173
173
  });
@@ -177,16 +177,16 @@ let IssueFormService = class IssueFormService {
177
177
  await this.dialogService.prompt({
178
178
  type: Severity.Warning,
179
179
  message: ( localize(
180
- 8946,
180
+ 9786,
181
181
  "There is too much data to send to GitHub directly. The data will be copied to the clipboard, please paste it into the GitHub issue page that is opened."
182
182
  )),
183
183
  buttons: [{
184
- label: ( localize(8947, "&&OK")),
184
+ label: ( localize(9787, "&&OK")),
185
185
  run: () => {
186
186
  result = true;
187
187
  }
188
188
  }, {
189
- label: ( localize(8945, "Cancel")),
189
+ label: ( localize(9785, "Cancel")),
190
190
  run: () => {
191
191
  result = false;
192
192
  }
@@ -2,18 +2,18 @@
2
2
  import { escape } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
3
3
  import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
4
 
5
- const sendSystemInfoLabel = escape(( localize(8948, "Include my system information")));
6
- const sendProcessInfoLabel = escape(( localize(8949, "Include my currently running processes")));
7
- const sendWorkspaceInfoLabel = escape(( localize(8950, "Include my workspace metadata")));
8
- const sendExtensionsLabel = escape(( localize(8951, "Include my enabled extensions")));
9
- const sendExperimentsLabel = escape(( localize(8952, "Include A/B experiment info")));
10
- const sendExtensionData = escape(( localize(8953, "Include additional extension info")));
5
+ const sendSystemInfoLabel = escape(( localize(9788, "Include my system information")));
6
+ const sendProcessInfoLabel = escape(( localize(9789, "Include my currently running processes")));
7
+ const sendWorkspaceInfoLabel = escape(( localize(9790, "Include my workspace metadata")));
8
+ const sendExtensionsLabel = escape(( localize(9791, "Include my enabled extensions")));
9
+ const sendExperimentsLabel = escape(( localize(9792, "Include A/B experiment info")));
10
+ const sendExtensionData = escape(( localize(9793, "Include additional extension info")));
11
11
  const acknowledgementsLabel = escape(( localize(
12
- 8954,
12
+ 9794,
13
13
  "I acknowledge that my VS Code version is not updated and this issue may be closed."
14
14
  )));
15
15
  const reviewGuidanceLabel = ( localize(
16
- 8955,
16
+ 9795,
17
17
  "Before you report an issue here please <a href=\"https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions\" target=\"_blank\">review the guidance we provide</a>. Please complete the form in English."
18
18
  ));
19
19
  var BaseHtml = () => `
@@ -23,40 +23,40 @@ var BaseHtml = () => `
23
23
  </span>
24
24
  </div>
25
25
  <div class="issue-reporter" id="issue-reporter">
26
- <div id="english" class="input-group hidden">${escape(( localize(8956, "Please complete the form in English.")))}</div>
26
+ <div id="english" class="input-group hidden">${escape(( localize(9796, "Please complete the form in English.")))}</div>
27
27
 
28
28
  <div id="review-guidance-help-text" class="input-group">${reviewGuidanceLabel}</div>
29
29
 
30
30
  <div class="section">
31
31
  <div class="input-group">
32
- <label class="inline-label" for="issue-type">${escape(( localize(8957, "This is a")))}</label>
32
+ <label class="inline-label" for="issue-type">${escape(( localize(9797, "This is a")))}</label>
33
33
  <select id="issue-type" class="inline-form-control">
34
34
  <!-- To be dynamically filled -->
35
35
  </select>
36
36
  </div>
37
37
 
38
38
  <div class="input-group" id="problem-source">
39
- <label class="inline-label" for="issue-source">${escape(( localize(8958, "For")))} <span class="required-input">*</span></label>
39
+ <label class="inline-label" for="issue-source">${escape(( localize(9798, "For")))} <span class="required-input">*</span></label>
40
40
  <select id="issue-source" class="inline-form-control" required>
41
41
  <!-- To be dynamically filled -->
42
42
  </select>
43
- <div id="issue-source-empty-error" class="validation-error hidden" role="alert">${escape(( localize(8959, "An issue source is required.")))}</div>
43
+ <div id="issue-source-empty-error" class="validation-error hidden" role="alert">${escape(( localize(9799, "An issue source is required.")))}</div>
44
44
  <div id="problem-source-help-text" class="instructions hidden">${escape(( localize(
45
- 8960,
45
+ 9800,
46
46
  "Try to reproduce the problem after {0}. If the problem only reproduces when extensions are active, it is likely an issue with an extension."
47
47
  ))).replace(
48
48
  "{0}",
49
- () => `<span tabIndex=0 role="button" id="disableExtensions" class="workbenchCommand">${escape(( localize(8961, "disabling all extensions and reloading the window")))}</span>`
49
+ () => `<span tabIndex=0 role="button" id="disableExtensions" class="workbenchCommand">${escape(( localize(9801, "disabling all extensions and reloading the window")))}</span>`
50
50
  )}
51
51
  </div>
52
52
 
53
53
  <div id="extension-selection">
54
- <label class="inline-label" for="extension-selector">${escape(( localize(8962, "Extension")))} <span class="required-input">*</span></label>
54
+ <label class="inline-label" for="extension-selector">${escape(( localize(9802, "Extension")))} <span class="required-input">*</span></label>
55
55
  <select id="extension-selector" class="inline-form-control">
56
56
  <!-- To be dynamically filled -->
57
57
  </select>
58
58
  <div id="extension-selection-validation-error" class="validation-error hidden" role="alert">${escape(( localize(
59
- 8963,
59
+ 9803,
60
60
  "The issue reporter is unable to create issues for this extension. Please visit {0} to report an issue."
61
61
  ))).replace(
62
62
  "{0}",
@@ -64,7 +64,7 @@ var BaseHtml = () => `
64
64
  )}</div>
65
65
  <div id="extension-selection-validation-error-no-url" class="validation-error hidden" role="alert">
66
66
  ${escape(( localize(
67
- 8964,
67
+ 9804,
68
68
  "The issue reporter is unable to create issues for this extension, as it does not specify a URL for reporting issues. Please check the marketplace page of this extension to see if other instructions are available."
69
69
  )))}
70
70
  </div>
@@ -72,10 +72,10 @@ var BaseHtml = () => `
72
72
  </div>
73
73
 
74
74
  <div id="issue-title-container" class="input-group">
75
- <label class="inline-label" for="issue-title">${escape(( localize(8965, "Title")))} <span class="required-input">*</span></label>
76
- <input id="issue-title" type="text" class="inline-form-control" placeholder="${escape(( localize(8966, "Please enter a title.")))}" required>
77
- <div id="issue-title-empty-error" class="validation-error hidden" role="alert">${escape(( localize(8967, "A title is required.")))}</div>
78
- <div id="issue-title-length-validation-error" class="validation-error hidden" role="alert">${escape(( localize(8968, "The title is too long.")))}</div>
75
+ <label class="inline-label" for="issue-title">${escape(( localize(9805, "Title")))} <span class="required-input">*</span></label>
76
+ <input id="issue-title" type="text" class="inline-form-control" placeholder="${escape(( localize(9806, "Please enter a title.")))}" required>
77
+ <div id="issue-title-empty-error" class="validation-error hidden" role="alert">${escape(( localize(9807, "A title is required.")))}</div>
78
+ <div id="issue-title-length-validation-error" class="validation-error hidden" role="alert">${escape(( localize(9808, "The title is too long.")))}</div>
79
79
  <small id="similar-issues">
80
80
  <!-- To be dynamically filled -->
81
81
  </small>
@@ -91,10 +91,10 @@ var BaseHtml = () => `
91
91
  <!-- To be dynamically filled -->
92
92
  </div>
93
93
  <div class="block-info-text">
94
- <textarea name="description" id="description" placeholder="${escape(( localize(8969, "Please enter details.")))}" required></textarea>
94
+ <textarea name="description" id="description" placeholder="${escape(( localize(9809, "Please enter details.")))}" required></textarea>
95
95
  </div>
96
- <div id="description-empty-error" class="validation-error hidden" role="alert">${escape(( localize(8970, "A description is required.")))}</div>
97
- <div id="description-short-error" class="validation-error hidden" role="alert">${escape(( localize(8971, "Please provide a longer description.")))}</div>
96
+ <div id="description-empty-error" class="validation-error hidden" role="alert">${escape(( localize(9810, "A description is required.")))}</div>
97
+ <div id="description-short-error" class="validation-error hidden" role="alert">${escape(( localize(9811, "Please provide a longer description.")))}</div>
98
98
  </div>
99
99
 
100
100
  <div class="system-info" id="block-container">
@@ -103,10 +103,10 @@ var BaseHtml = () => `
103
103
  <label class="extension-caption" id="extension-caption" for="includeExtensionData">
104
104
  ${sendExtensionData}
105
105
  <span id="ext-loading" hidden></span>
106
- <span class="ext-parens" hidden>(</span><a href="#" class="showInfo" id="extension-id">${escape(( localize(8972, "show")))}</a><span class="ext-parens" hidden>)</span>
107
- <a id="extension-data-download">${escape(( localize(8973, "Download Extension Data")))}</a>
106
+ <span class="ext-parens" hidden>(</span><a href="#" class="showInfo" id="extension-id">${escape(( localize(9812, "show")))}</a><span class="ext-parens" hidden>)</span>
107
+ <a id="extension-data-download">${escape(( localize(9813, "Download Extension Data")))}</a>
108
108
  </label>
109
- <pre class="block-info" id="extension-data" placeholder="${escape(( localize(8974, "Extension does not have additional data to include.")))}" style="white-space: pre-wrap; user-select: text;">
109
+ <pre class="block-info" id="extension-data" placeholder="${escape(( localize(9814, "Extension does not have additional data to include.")))}" style="white-space: pre-wrap; user-select: text;">
110
110
  <!-- To be dynamically filled -->
111
111
  </pre>
112
112
  </div>
@@ -115,7 +115,7 @@ var BaseHtml = () => `
115
115
  <input class="sendData" aria-label="${sendSystemInfoLabel}" type="checkbox" id="includeSystemInfo" checked/>
116
116
  <label class="caption" for="includeSystemInfo">
117
117
  ${sendSystemInfoLabel}
118
- (<a href="#" class="showInfo">${escape(( localize(8972, "show")))}</a>)
118
+ (<a href="#" class="showInfo">${escape(( localize(9812, "show")))}</a>)
119
119
  </label>
120
120
  <div class="block-info hidden" style="user-select: text;">
121
121
  <!-- To be dynamically filled -->
@@ -125,7 +125,7 @@ var BaseHtml = () => `
125
125
  <input class="sendData" aria-label="${sendProcessInfoLabel}" type="checkbox" id="includeProcessInfo" checked/>
126
126
  <label class="caption" for="includeProcessInfo">
127
127
  ${sendProcessInfoLabel}
128
- (<a href="#" class="showInfo">${escape(( localize(8972, "show")))}</a>)
128
+ (<a href="#" class="showInfo">${escape(( localize(9812, "show")))}</a>)
129
129
  </label>
130
130
  <pre class="block-info hidden" style="user-select: text;">
131
131
  <code>
@@ -137,7 +137,7 @@ var BaseHtml = () => `
137
137
  <input class="sendData" aria-label="${sendWorkspaceInfoLabel}" type="checkbox" id="includeWorkspaceInfo" checked/>
138
138
  <label class="caption" for="includeWorkspaceInfo">
139
139
  ${sendWorkspaceInfoLabel}
140
- (<a href="#" class="showInfo">${escape(( localize(8972, "show")))}</a>)
140
+ (<a href="#" class="showInfo">${escape(( localize(9812, "show")))}</a>)
141
141
  </label>
142
142
  <pre id="systemInfo" class="block-info hidden" style="user-select: text;">
143
143
  <code>
@@ -149,7 +149,7 @@ var BaseHtml = () => `
149
149
  <input class="sendData" aria-label="${sendExtensionsLabel}" type="checkbox" id="includeExtensions" checked/>
150
150
  <label class="caption" for="includeExtensions">
151
151
  ${sendExtensionsLabel}
152
- (<a href="#" class="showInfo">${escape(( localize(8972, "show")))}</a>)
152
+ (<a href="#" class="showInfo">${escape(( localize(9812, "show")))}</a>)
153
153
  </label>
154
154
  <div id="systemInfo" class="block-info hidden" style="user-select: text;">
155
155
  <!-- To be dynamically filled -->
@@ -159,7 +159,7 @@ var BaseHtml = () => `
159
159
  <input class="sendData" aria-label="${sendExperimentsLabel}" type="checkbox" id="includeExperiments" checked/>
160
160
  <label class="caption" for="includeExperiments">
161
161
  ${sendExperimentsLabel}
162
- (<a href="#" class="showInfo">${escape(( localize(8972, "show")))}</a>)
162
+ (<a href="#" class="showInfo">${escape(( localize(9812, "show")))}</a>)
163
163
  </label>
164
164
  <pre class="block-info hidden" style="user-select: text;">
165
165
  <!-- To be dynamically filled -->
@@ -60,7 +60,7 @@ let IssueWebReporter = class IssueWebReporter extends BaseIssueReporterService {
60
60
  });
61
61
  const descriptionTextArea = this.getElementById("issue-title");
62
62
  if (descriptionTextArea) {
63
- descriptionTextArea.placeholder = ( localize(8975, "Please enter a title"));
63
+ descriptionTextArea.placeholder = ( localize(9815, "Please enter a title"));
64
64
  }
65
65
  this.updateButtonStates();
66
66
  this.setSourceOptions();
@@ -102,13 +102,13 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
102
102
  throw ( new Error("invalid state"));
103
103
  }
104
104
  const res = await this.dialogService.confirm({
105
- message: ( localize(8976, "Troubleshoot Issue")),
105
+ message: ( localize(9816, "Troubleshoot Issue")),
106
106
  detail: ( localize(
107
- 8977,
107
+ 9817,
108
108
  "Issue troubleshooting is a process to help you identify the cause for an issue. The cause for an issue can be a misconfiguration, due to an extension, or be {0} itself.\n\nDuring the process the window reloads repeatedly. Each time you must confirm if you are still seeing the issue.",
109
109
  this.productService.nameLong
110
110
  )),
111
- primaryButton: ( localize(8978, "&&Troubleshoot Issue")),
111
+ primaryButton: ( localize(9818, "&&Troubleshoot Issue")),
112
112
  custom: true
113
113
  });
114
114
  if (!res.confirmed) {
@@ -152,7 +152,7 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
152
152
  return;
153
153
  }
154
154
  const result = await this.askToReproduceIssue(( localize(
155
- 8979,
155
+ 9819,
156
156
  "Issue troubleshooting is active and has temporarily disabled all installed extensions. Check if you can still reproduce the problem and proceed by selecting from these options."
157
157
  )));
158
158
  if (result === "good") {
@@ -170,7 +170,7 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
170
170
  await this.userDataProfileManagementService.createAndEnterTransientProfile();
171
171
  this.updateState(this.state);
172
172
  const result = await this.askToReproduceIssue(( localize(
173
- 8980,
173
+ 9820,
174
174
  "Issue troubleshooting is active and has temporarily reset your configurations to defaults. Check if you can still reproduce the problem and proceed by selecting from these options."
175
175
  )));
176
176
  if (result === "stop") {
@@ -178,13 +178,13 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
178
178
  }
179
179
  if (result === "good") {
180
180
  await this.askToReportIssue(( localize(
181
- 8981,
181
+ 9821,
182
182
  "Issue troubleshooting has identified that the issue is caused by your configurations. Please report the issue by exporting your configurations using \"Export Profile\" command and share the file in the issue report."
183
183
  )));
184
184
  }
185
185
  if (result === "bad") {
186
186
  await this.askToReportIssue(( localize(
187
- 8982,
187
+ 9822,
188
188
  "Issue troubleshooting has identified that the issue is with {0}.",
189
189
  this.productService.nameLong
190
190
  )));
@@ -199,15 +199,15 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
199
199
  askToReproduceIssue(message) {
200
200
  return (new Promise((c, e) => {
201
201
  const goodPrompt = {
202
- label: ( localize(8983, "I Can't Reproduce")),
202
+ label: ( localize(9823, "I Can't Reproduce")),
203
203
  run: () => c("good")
204
204
  };
205
205
  const badPrompt = {
206
- label: ( localize(8984, "I Can Reproduce")),
206
+ label: ( localize(9824, "I Can Reproduce")),
207
207
  run: () => c("bad")
208
208
  };
209
209
  const stop = {
210
- label: ( localize(8985, "Stop")),
210
+ label: ( localize(9825, "Stop")),
211
211
  run: () => c("stop")
212
212
  };
213
213
  this.notificationHandle = this.notificationService.prompt(Severity.Info, message, [goodPrompt, badPrompt, stop], {
@@ -223,9 +223,9 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
223
223
  if (res === "good") {
224
224
  await this.dialogService.prompt({
225
225
  type: Severity.Info,
226
- message: ( localize(8976, "Troubleshoot Issue")),
226
+ message: ( localize(9816, "Troubleshoot Issue")),
227
227
  detail: ( localize(
228
- 8986,
228
+ 9826,
229
229
  "This likely means that the issue has been addressed already and will be available in an upcoming release. You can safely use {0} insiders until the new stable version is available.",
230
230
  this.productService.nameLong
231
231
  )),
@@ -248,11 +248,11 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
248
248
  async askToReproduceIssueWithInsiders() {
249
249
  const confirmRes = await this.dialogService.confirm({
250
250
  type: "info",
251
- message: ( localize(8976, "Troubleshoot Issue")),
252
- primaryButton: ( localize(8987, "Download {0} Insiders", this.productService.nameLong)),
253
- cancelButton: ( localize(8988, "Report Issue Anyway")),
251
+ message: ( localize(9816, "Troubleshoot Issue")),
252
+ primaryButton: ( localize(9827, "Download {0} Insiders", this.productService.nameLong)),
253
+ cancelButton: ( localize(9828, "Report Issue Anyway")),
254
254
  detail: ( localize(
255
- 8989,
255
+ 9829,
256
256
  "Please try to download and reproduce the issue in {0} insiders.",
257
257
  this.productService.nameLong
258
258
  )),
@@ -269,20 +269,20 @@ let TroubleshootIssueService = class TroubleshootIssueService extends Disposable
269
269
  }
270
270
  const res = await this.dialogService.prompt({
271
271
  type: "info",
272
- message: ( localize(8976, "Troubleshoot Issue")),
272
+ message: ( localize(9816, "Troubleshoot Issue")),
273
273
  buttons: [{
274
- label: ( localize(8990, "I can't reproduce")),
274
+ label: ( localize(9830, "I can't reproduce")),
275
275
  run: () => "good"
276
276
  }, {
277
- label: ( localize(8991, "I can reproduce")),
277
+ label: ( localize(9831, "I can reproduce")),
278
278
  run: () => "bad"
279
279
  }],
280
280
  cancelButton: {
281
- label: ( localize(8992, "Stop")),
281
+ label: ( localize(9832, "Stop")),
282
282
  run: () => "stop"
283
283
  },
284
284
  detail: ( localize(
285
- 8993,
285
+ 9833,
286
286
  "Please try to reproduce the issue in {0} insiders and confirm if the issue exists there.",
287
287
  this.productService.nameLong
288
288
  )),
@@ -348,7 +348,7 @@ registerAction2(class TroubleshootIssueAction extends Action2 {
348
348
  constructor() {
349
349
  super({
350
350
  id: "workbench.action.troubleshootIssue.start",
351
- title: ( localize2(8994, "Troubleshoot Issue...")),
351
+ title: ( localize2(9834, "Troubleshoot Issue...")),
352
352
  category: Categories.Help,
353
353
  f1: true,
354
354
  precondition: ( ContextKeyExpr.and(( IssueTroubleshootUi.ctxIsTroubleshootActive.negate()), ( RemoteNameContext.isEqualTo("")), ( IsWebContext.negate())))
@@ -362,7 +362,7 @@ registerAction2(class extends Action2 {
362
362
  constructor() {
363
363
  super({
364
364
  id: "workbench.action.troubleshootIssue.stop",
365
- title: ( localize2(8995, "Stop Troubleshoot Issue")),
365
+ title: ( localize2(9835, "Stop Troubleshoot Issue")),
366
366
  category: Categories.Help,
367
367
  f1: true,
368
368
  precondition: IssueTroubleshootUi.ctxIsTroubleshootActive
@@ -81,7 +81,7 @@ let BaseIssueContribution = class BaseIssueContribution extends Disposable {
81
81
  }));
82
82
  const reportIssue = {
83
83
  id: OpenIssueReporterActionId,
84
- title: ( localize2(8996, "Report Issue...")),
84
+ title: ( localize2(9836, "Report Issue...")),
85
85
  category: Categories.Help
86
86
  };
87
87
  this._register(MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
@@ -91,7 +91,7 @@ let BaseIssueContribution = class BaseIssueContribution extends Disposable {
91
91
  group: "3_feedback",
92
92
  command: {
93
93
  id: OpenIssueReporterActionId,
94
- title: ( localize(8997, "Report &&Issue"))
94
+ title: ( localize(9837, "Report &&Issue"))
95
95
  },
96
96
  order: 3
97
97
  }));