@codingame/monaco-vscode-markers-service-override 22.1.9 → 23.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-markers-service-override",
3
- "version": "22.1.9",
3
+ "version": "23.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - markers service-override",
6
6
  "keywords": [],
@@ -15,14 +15,13 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "22.1.9",
19
- "@codingame/monaco-vscode-51e7513d-a395-525d-b226-639aa8c6cc2d-common": "22.1.9",
20
- "@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "22.1.9",
21
- "@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common": "22.1.9",
22
- "@codingame/monaco-vscode-ab07af84-42e8-5a0f-8aef-b83fb90ede21-common": "22.1.9",
23
- "@codingame/monaco-vscode-api": "22.1.9",
24
- "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "22.1.9",
25
- "@codingame/monaco-vscode-e39a1c8f-7892-5d9b-9987-7b10b79e1a0a-common": "22.1.9"
18
+ "@codingame/monaco-vscode-262ed59d-4f76-57cd-9e9f-1877f26ae049-common": "23.0.0",
19
+ "@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common": "23.0.0",
20
+ "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "23.0.0",
21
+ "@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "23.0.0",
22
+ "@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common": "23.0.0",
23
+ "@codingame/monaco-vscode-ab07af84-42e8-5a0f-8aef-b83fb90ede21-common": "23.0.0",
24
+ "@codingame/monaco-vscode-api": "23.0.0"
26
25
  },
27
26
  "main": "index.js",
28
27
  "module": "index.js",
@@ -28,7 +28,7 @@ import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/
28
28
  import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
29
29
  import { registerIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry';
30
30
  import { ViewAction } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane';
31
- import { NumberBadge } from '@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common/vscode/vs/workbench/services/activity/common/activity';
31
+ import { NumberBadge } from '@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common/vscode/vs/workbench/services/activity/common/activity';
32
32
  import { IActivityService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/activity/common/activity.service';
33
33
  import { viewFilterSubmenu } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewFilter';
34
34
  import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
@@ -115,7 +115,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
115
115
  },
116
116
  }
117
117
  });
118
- const markersViewIcon = registerIcon('markers-view-icon', Codicon.warning, ( localize(8186, 'View icon of the markers view.')));
118
+ const markersViewIcon = registerIcon('markers-view-icon', Codicon.warning, ( localize(8441, 'View icon of the markers view.')));
119
119
  const VIEW_CONTAINER = ( Registry.as(Extensions$1.ViewContainersRegistry)).registerViewContainer({
120
120
  id: Markers.MARKERS_CONTAINER_ID,
121
121
  title: Messages.MARKERS_PANEL_TITLE_PROBLEMS,
@@ -137,7 +137,7 @@ const VIEW_CONTAINER = ( Registry.as(Extensions$1.ViewContainersRegistry)).regis
137
137
  ctorDescriptor: ( new SyncDescriptor(MarkersView)),
138
138
  openCommandActionDescriptor: {
139
139
  id: 'workbench.actions.view.problems',
140
- mnemonicTitle: ( localize(8187, "&&Problems")),
140
+ mnemonicTitle: ( localize(8442, "&&Problems")),
141
141
  keybindings: { primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KeyM },
142
142
  order: 0,
143
143
  }
@@ -147,9 +147,9 @@ registerAction2(class extends ViewAction {
147
147
  constructor() {
148
148
  super({
149
149
  id: `workbench.actions.table.${Markers.MARKERS_VIEW_ID}.viewAsTree`,
150
- title: ( localize(8188, "View as Tree")),
150
+ title: ( localize(8443, "View as Tree")),
151
151
  metadata: {
152
- description: ( localize2(8189, "Show the problems view as a tree."))
152
+ description: ( localize2(8444, "Show the problems view as a tree."))
153
153
  },
154
154
  menu: {
155
155
  id: MenuId.ViewTitle,
@@ -169,9 +169,9 @@ registerAction2(class extends ViewAction {
169
169
  constructor() {
170
170
  super({
171
171
  id: `workbench.actions.table.${Markers.MARKERS_VIEW_ID}.viewAsTable`,
172
- title: ( localize(8190, "View as Table")),
172
+ title: ( localize(8445, "View as Table")),
173
173
  metadata: {
174
- description: ( localize2(8191, "Show the problems view as a table."))
174
+ description: ( localize2(8446, "Show the problems view as a table."))
175
175
  },
176
176
  menu: {
177
177
  id: MenuId.ViewTitle,
@@ -191,11 +191,11 @@ registerAction2(class extends ViewAction {
191
191
  constructor() {
192
192
  super({
193
193
  id: `workbench.actions.${Markers.MARKERS_VIEW_ID}.toggleErrors`,
194
- title: ( localize(8192, "Show Errors")),
194
+ title: ( localize(8447, "Show Errors")),
195
195
  metadata: {
196
- description: ( localize2(8193, "Show or hide errors in the problems view."))
196
+ description: ( localize2(8448, "Show or hide errors in the problems view."))
197
197
  },
198
- category: ( localize(8194, "Problems")),
198
+ category: ( localize(8449, "Problems")),
199
199
  toggled: MarkersContextKeys.ShowErrorsFilterContextKey,
200
200
  menu: {
201
201
  id: viewFilterSubmenu,
@@ -214,11 +214,11 @@ registerAction2(class extends ViewAction {
214
214
  constructor() {
215
215
  super({
216
216
  id: `workbench.actions.${Markers.MARKERS_VIEW_ID}.toggleWarnings`,
217
- title: ( localize(8195, "Show Warnings")),
217
+ title: ( localize(8450, "Show Warnings")),
218
218
  metadata: {
219
- description: ( localize2(8196, "Show or hide warnings in the problems view."))
219
+ description: ( localize2(8451, "Show or hide warnings in the problems view."))
220
220
  },
221
- category: ( localize(8194, "Problems")),
221
+ category: ( localize(8449, "Problems")),
222
222
  toggled: MarkersContextKeys.ShowWarningsFilterContextKey,
223
223
  menu: {
224
224
  id: viewFilterSubmenu,
@@ -237,11 +237,11 @@ registerAction2(class extends ViewAction {
237
237
  constructor() {
238
238
  super({
239
239
  id: `workbench.actions.${Markers.MARKERS_VIEW_ID}.toggleInfos`,
240
- title: ( localize(8197, "Show Infos")),
241
- category: ( localize(8194, "Problems")),
240
+ title: ( localize(8452, "Show Infos")),
241
+ category: ( localize(8449, "Problems")),
242
242
  toggled: MarkersContextKeys.ShowInfoFilterContextKey,
243
243
  metadata: {
244
- description: ( localize2(8198, "Show or hide infos in the problems view."))
244
+ description: ( localize2(8453, "Show or hide infos in the problems view."))
245
245
  },
246
246
  menu: {
247
247
  id: viewFilterSubmenu,
@@ -260,14 +260,14 @@ registerAction2(class extends ViewAction {
260
260
  constructor() {
261
261
  super({
262
262
  id: `workbench.actions.${Markers.MARKERS_VIEW_ID}.toggleActiveFile`,
263
- title: ( localize(8199, "Show Active File Only")),
263
+ title: ( localize(8454, "Show Active File Only")),
264
264
  metadata: {
265
265
  description: ( localize2(
266
- 8200,
266
+ 8455,
267
267
  "Show or hide problems (errors, warnings, info) only from the active file in the problems view."
268
268
  ))
269
269
  },
270
- category: ( localize(8194, "Problems")),
270
+ category: ( localize(8449, "Problems")),
271
271
  toggled: MarkersContextKeys.ShowActiveFileFilterContextKey,
272
272
  menu: {
273
273
  id: viewFilterSubmenu,
@@ -286,11 +286,11 @@ registerAction2(class extends ViewAction {
286
286
  constructor() {
287
287
  super({
288
288
  id: `workbench.actions.${Markers.MARKERS_VIEW_ID}.toggleExcludedFiles`,
289
- title: ( localize(8201, "Show Excluded Files")),
289
+ title: ( localize(8456, "Show Excluded Files")),
290
290
  metadata: {
291
- description: ( localize2(8202, "Show or hide excluded files in the problems view."))
291
+ description: ( localize2(8457, "Show or hide excluded files in the problems view."))
292
292
  },
293
- category: ( localize(8194, "Problems")),
293
+ category: ( localize(8449, "Problems")),
294
294
  toggled: ( MarkersContextKeys.ShowExcludedFilesFilterContextKey.negate()),
295
295
  menu: {
296
296
  id: viewFilterSubmenu,
@@ -343,7 +343,7 @@ registerAction2(class extends MarkersViewAction {
343
343
  const when = ( ContextKeyExpr.and(( FocusedViewContext.isEqualTo(Markers.MARKERS_VIEW_ID)), MarkersContextKeys.MarkersTreeVisibilityContextKey, ( MarkersContextKeys.RelatedInformationFocusContextKey.toNegated())));
344
344
  super({
345
345
  id: Markers.MARKER_COPY_ACTION_ID,
346
- title: ( localize2(8203, 'Copy')),
346
+ title: ( localize2(8458, 'Copy')),
347
347
  menu: {
348
348
  id: MenuId.ProblemsPanelContext,
349
349
  when,
@@ -369,7 +369,7 @@ registerAction2(class extends MarkersViewAction {
369
369
  constructor() {
370
370
  super({
371
371
  id: Markers.MARKER_COPY_MESSAGE_ACTION_ID,
372
- title: ( localize2(8204, 'Copy Message')),
372
+ title: ( localize2(8459, 'Copy Message')),
373
373
  menu: {
374
374
  id: MenuId.ProblemsPanelContext,
375
375
  when: MarkersContextKeys.MarkerFocusContextKey,
@@ -390,7 +390,7 @@ registerAction2(class extends ViewAction {
390
390
  constructor() {
391
391
  super({
392
392
  id: Markers.RELATED_INFORMATION_COPY_MESSAGE_ACTION_ID,
393
- title: ( localize2(8204, 'Copy Message')),
393
+ title: ( localize2(8459, 'Copy Message')),
394
394
  menu: {
395
395
  id: MenuId.ProblemsPanelContext,
396
396
  when: MarkersContextKeys.RelatedInformationFocusContextKey,
@@ -411,7 +411,7 @@ registerAction2(class extends ViewAction {
411
411
  constructor() {
412
412
  super({
413
413
  id: Markers.FOCUS_PROBLEMS_FROM_FILTER,
414
- title: ( localize(8205, "Focus problems view")),
414
+ title: ( localize(8460, "Focus problems view")),
415
415
  keybinding: {
416
416
  when: MarkersContextKeys.MarkerViewFilterFocusContextKey,
417
417
  weight: KeybindingWeight.WorkbenchContrib,
@@ -428,7 +428,7 @@ registerAction2(class extends ViewAction {
428
428
  constructor() {
429
429
  super({
430
430
  id: Markers.MARKERS_VIEW_FOCUS_FILTER,
431
- title: ( localize(8206, "Focus problems filter")),
431
+ title: ( localize(8461, "Focus problems filter")),
432
432
  keybinding: {
433
433
  when: ( FocusedViewContext.isEqualTo(Markers.MARKERS_VIEW_ID)),
434
434
  weight: KeybindingWeight.WorkbenchContrib,
@@ -445,8 +445,8 @@ registerAction2(class extends ViewAction {
445
445
  constructor() {
446
446
  super({
447
447
  id: Markers.MARKERS_VIEW_SHOW_MULTILINE_MESSAGE,
448
- title: ( localize2(8207, "Show message in multiple lines")),
449
- category: ( localize(8194, "Problems")),
448
+ title: ( localize2(8462, "Show message in multiple lines")),
449
+ category: ( localize(8449, "Problems")),
450
450
  menu: {
451
451
  id: MenuId.CommandPalette,
452
452
  when: ( ContextKeyExpr.has(getVisbileViewContextKey(Markers.MARKERS_VIEW_ID)))
@@ -462,8 +462,8 @@ registerAction2(class extends ViewAction {
462
462
  constructor() {
463
463
  super({
464
464
  id: Markers.MARKERS_VIEW_SHOW_SINGLELINE_MESSAGE,
465
- title: ( localize2(8208, "Show message in single line")),
466
- category: ( localize(8194, "Problems")),
465
+ title: ( localize2(8463, "Show message in single line")),
466
+ category: ( localize(8449, "Problems")),
467
467
  menu: {
468
468
  id: MenuId.CommandPalette,
469
469
  when: ( ContextKeyExpr.has(getVisbileViewContextKey(Markers.MARKERS_VIEW_ID)))
@@ -479,8 +479,8 @@ registerAction2(class extends ViewAction {
479
479
  constructor() {
480
480
  super({
481
481
  id: Markers.MARKERS_VIEW_CLEAR_FILTER_TEXT,
482
- title: ( localize(8209, "Clear filters text")),
483
- category: ( localize(8194, "Problems")),
482
+ title: ( localize(8464, "Clear filters text")),
483
+ category: ( localize(8449, "Problems")),
484
484
  keybinding: {
485
485
  when: MarkersContextKeys.MarkerViewFilterFocusContextKey,
486
486
  weight: KeybindingWeight.WorkbenchContrib,
@@ -497,7 +497,7 @@ registerAction2(class extends ViewAction {
497
497
  constructor() {
498
498
  super({
499
499
  id: `workbench.actions.treeView.${Markers.MARKERS_VIEW_ID}.collapseAll`,
500
- title: ( localize(8210, "Collapse All")),
500
+ title: ( localize(8465, "Collapse All")),
501
501
  menu: {
502
502
  id: MenuId.ViewTitle,
503
503
  when: ( ContextKeyExpr.and(( ContextKeyExpr.equals('view', Markers.MARKERS_VIEW_ID)), ( MarkersContextKeys.MarkersViewModeContextKey.isEqualTo(MarkersViewMode.Tree)))),
@@ -564,7 +564,7 @@ let MarkersStatusBarContributions = class MarkersStatusBarContributions extends
564
564
  const markersStatistics = this.markerService.getStatistics();
565
565
  const tooltip = this.getMarkersTooltip(markersStatistics);
566
566
  return {
567
- name: ( localize(8211, "Problems")),
567
+ name: ( localize(8466, "Problems")),
568
568
  text: this.getMarkersText(markersStatistics),
569
569
  ariaLabel: tooltip,
570
570
  tooltip,
@@ -575,9 +575,9 @@ let MarkersStatusBarContributions = class MarkersStatusBarContributions extends
575
575
  this.statusbarService.updateEntryVisibility('status.problemsVisibility', true);
576
576
  const openSettingsCommand = 'workbench.action.openSettings';
577
577
  const configureSettingsLabel = '@id:problems.visibility';
578
- const tooltip = ( localize(8212, "Problems are turned off. Click to open settings."));
578
+ const tooltip = ( localize(8467, "Problems are turned off. Click to open settings."));
579
579
  return {
580
- name: ( localize(8213, "Problems Visibility")),
580
+ name: ( localize(8468, "Problems Visibility")),
581
581
  text: '$(whole-word)',
582
582
  ariaLabel: tooltip,
583
583
  tooltip,
@@ -586,9 +586,9 @@ let MarkersStatusBarContributions = class MarkersStatusBarContributions extends
586
586
  };
587
587
  }
588
588
  getMarkersTooltip(stats) {
589
- const errorTitle = (n) => ( localize(8214, "Errors: {0}", n));
590
- const warningTitle = (n) => ( localize(8215, "Warnings: {0}", n));
591
- const infoTitle = (n) => ( localize(8216, "Infos: {0}", n));
589
+ const errorTitle = (n) => ( localize(8469, "Errors: {0}", n));
590
+ const warningTitle = (n) => ( localize(8470, "Warnings: {0}", n));
591
+ const infoTitle = (n) => ( localize(8471, "Infos: {0}", n));
592
592
  const titles = [];
593
593
  if (stats.errors > 0) {
594
594
  titles.push(errorTitle(stats.errors));
@@ -600,7 +600,7 @@ let MarkersStatusBarContributions = class MarkersStatusBarContributions extends
600
600
  titles.push(infoTitle(stats.infos));
601
601
  }
602
602
  if (titles.length === 0) {
603
- return localize(8217, "No Problems");
603
+ return localize(8472, "No Problems");
604
604
  }
605
605
  return titles.join(', ');
606
606
  }
@@ -614,7 +614,7 @@ let MarkersStatusBarContributions = class MarkersStatusBarContributions extends
614
614
  return problemsText.join(' ');
615
615
  }
616
616
  packNumber(n) {
617
- const manyProblems = ( localize(8218, "10K+"));
617
+ const manyProblems = ( localize(8473, "10K+"));
618
618
  return n > 9999 ? manyProblems : n > 999 ? ( n.toString()).charAt(0) + 'K' : ( n.toString());
619
619
  }
620
620
  };
@@ -638,7 +638,7 @@ let ActivityUpdater = class ActivityUpdater extends Disposable {
638
638
  const { errors, warnings, infos } = this.markerService.getStatistics();
639
639
  const total = errors + warnings + infos;
640
640
  if (total > 0) {
641
- const message = ( localize(8219, 'Total {0} Problems', total));
641
+ const message = ( localize(8474, 'Total {0} Problems', total));
642
642
  this.activity.value = this.activityService.showViewActivity(Markers.MARKERS_VIEW_ID, { badge: ( new NumberBadge(total, () => message)) });
643
643
  }
644
644
  else {
@@ -11,7 +11,7 @@ import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/
11
11
  import { IMarkerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service';
12
12
  import { EditorResourceAccessor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
13
13
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
14
- import { picksWithPromiseFn } from '@codingame/monaco-vscode-51e7513d-a395-525d-b226-639aa8c6cc2d-common/vscode/vs/workbench/contrib/chat/browser/chatContextPickService';
14
+ import { picksWithPromiseFn } from '@codingame/monaco-vscode-262ed59d-4f76-57cd-9e9f-1877f26ae049-common/vscode/vs/workbench/contrib/chat/browser/chatContextPickService';
15
15
  import { IChatContextPickService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/chatContextPickService.service';
16
16
  import { IDiagnosticVariableEntryFilterData } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/chatVariableEntries';
17
17
 
@@ -21,13 +21,16 @@ let MarkerChatContextPick = class MarkerChatContextPick {
21
21
  this._labelService = _labelService;
22
22
  this._editorService = _editorService;
23
23
  this.type = 'pickerPick';
24
- this.label = ( localize(8220, 'Problems...'));
24
+ this.label = ( localize(8475, 'Problems...'));
25
25
  this.icon = Codicon.error;
26
26
  this.ordinal = -100;
27
27
  }
28
+ isEnabled(widget) {
29
+ return !!widget.attachmentCapabilities.supportsProblemAttachments;
30
+ }
28
31
  asPicker() {
29
32
  return {
30
- placeholder: ( localize(8221, 'Select a problem to attach')),
33
+ placeholder: ( localize(8476, 'Select a problem to attach')),
31
34
  picks: picksWithPromiseFn(async (query, token) => {
32
35
  return this.getPicksForQuery(query);
33
36
  })
@@ -65,7 +68,7 @@ let MarkerChatContextPick = class MarkerChatContextPick {
65
68
  items.push({
66
69
  label: marker.message,
67
70
  description: ( localize(
68
- 8222,
71
+ 8477,
69
72
  "[Ln {0}, Col {1}]",
70
73
  '' + marker.startLineNumber,
71
74
  '' + marker.startColumn
@@ -77,7 +80,7 @@ let MarkerChatContextPick = class MarkerChatContextPick {
77
80
  }
78
81
  }
79
82
  items.unshift({
80
- label: ( localize(8223, 'All Problems')),
83
+ label: ( localize(8478, 'All Problems')),
81
84
  asAttachment() {
82
85
  return IDiagnosticVariableEntryFilterData.toEntry({
83
86
  filterSeverity: MarkerSeverity.Info
@@ -25,7 +25,7 @@ import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench
25
25
  class MarkersDecorationsProvider {
26
26
  constructor(_markerService) {
27
27
  this._markerService = _markerService;
28
- this.label = ( localize(8224, "Problems"));
28
+ this.label = ( localize(8479, "Problems"));
29
29
  this.onDidChange = _markerService.onMarkerChanged;
30
30
  }
31
31
  provideDecorations(resource) {
@@ -45,7 +45,7 @@ class MarkersDecorationsProvider {
45
45
  return {
46
46
  weight: 100 * first.severity,
47
47
  bubble: true,
48
- tooltip: markers.length === 1 ? ( localize(8225, "1 problem in this file")) : ( localize(8226, "{0} problems in this file", markers.length)),
48
+ tooltip: markers.length === 1 ? ( localize(8480, "1 problem in this file")) : ( localize(8481, "{0} problems in this file", markers.length)),
49
49
  letter: markers.length < 10 ? ( markers.length.toString()) : '9+',
50
50
  color: first.severity === MarkerSeverity.Error ? listErrorForeground : listWarningForeground,
51
51
  };
@@ -105,7 +105,7 @@ MarkersFileDecorations = ( __decorate([
105
105
  'properties': {
106
106
  'problems.decorations.enabled': {
107
107
  'markdownDescription': ( localize(
108
- 8227,
108
+ 8482,
109
109
  "Show Errors & Warnings on files and folder. Overwritten by {0} when it is off.",
110
110
  '`#problems.visibility#`'
111
111
  )),
@@ -228,7 +228,7 @@ let MarkersTable = class MarkersTable extends Disposable {
228
228
  project(row) { return row; }
229
229
  },
230
230
  {
231
- label: ( localize(8228, "Code")),
231
+ label: ( localize(8483, "Code")),
232
232
  tooltip: '',
233
233
  weight: 1,
234
234
  minimumWidth: 100,
@@ -237,21 +237,21 @@ let MarkersTable = class MarkersTable extends Disposable {
237
237
  project(row) { return row; }
238
238
  },
239
239
  {
240
- label: ( localize(8229, "Message")),
240
+ label: ( localize(8484, "Message")),
241
241
  tooltip: '',
242
242
  weight: 4,
243
243
  templateId: MarkerMessageColumnRenderer.TEMPLATE_ID,
244
244
  project(row) { return row; }
245
245
  },
246
246
  {
247
- label: ( localize(8230, "File")),
247
+ label: ( localize(8485, "File")),
248
248
  tooltip: '',
249
249
  weight: 2,
250
250
  templateId: MarkerFileColumnRenderer.TEMPLATE_ID,
251
251
  project(row) { return row; }
252
252
  },
253
253
  {
254
- label: ( localize(8231, "Source")),
254
+ label: ( localize(8486, "Source")),
255
255
  tooltip: '',
256
256
  weight: 1,
257
257
  minimumWidth: 100,
@@ -267,7 +267,8 @@ let MarkersTable = class MarkersTable extends Disposable {
267
267
  this.instantiationService.createInstance(MarkerSourceColumnRenderer),
268
268
  ], options);
269
269
  const list = this.table.domNode.querySelector('.monaco-list-rows');
270
- const onRowHover = Event.chain(this._register(( new DomEmitter(list, 'mouseover'))).event, $ => ( ( $.map(
270
+ const onRowHover = Event.chain(this._register(( new DomEmitter(list, 'mouseover'))).event, $ => ( (
271
+ $.map(
271
272
  e => findParentWithClass(e.target, 'monaco-list-row', 'monaco-list-rows')
272
273
  ))
273
274
  .filter(((e) => !!e))
@@ -1,5 +1,5 @@
1
1
  import { CountBadge } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/countBadge/countBadge";
2
- import { ResourceLabels, IResourceLabel } from "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common/vscode/vs/workbench/browser/labels";
2
+ import { ResourceLabels, IResourceLabel } from "@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common/vscode/vs/workbench/browser/labels";
3
3
  import { HighlightedLabel } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel";
4
4
  import { ResourceMarkers, Marker, RelatedInformation, MarkerElement, MarkerTableItem } from "./markersModel.js";
5
5
  import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
@@ -49,7 +49,7 @@ let MarkersWidgetAccessibilityProvider = class MarkersWidgetAccessibilityProvide
49
49
  this.labelService = labelService;
50
50
  }
51
51
  getWidgetAriaLabel() {
52
- return localize(8232, "Problems View");
52
+ return localize(8487, "Problems View");
53
53
  }
54
54
  getAriaLabel(element) {
55
55
  if (element instanceof ResourceMarkers) {
@@ -190,9 +190,9 @@ MarkerRenderer = ( __decorate([
190
190
  ( __param(2, IInstantiationService)),
191
191
  ( __param(3, IOpenerService))
192
192
  ], MarkerRenderer));
193
- const expandedIcon = registerIcon('markers-view-multi-line-expanded', Codicon.chevronUp, ( localize(8233, 'Icon indicating that multiple lines are shown in the markers view.')));
193
+ const expandedIcon = registerIcon('markers-view-multi-line-expanded', Codicon.chevronUp, ( localize(8488, 'Icon indicating that multiple lines are shown in the markers view.')));
194
194
  const collapsedIcon = registerIcon('markers-view-multi-line-collapsed', Codicon.chevronDown, ( localize(
195
- 8234,
195
+ 8489,
196
196
  'Icon indicating that multiple lines are collapsed in the markers view.'
197
197
  )));
198
198
  const toggleMultilineAction = 'problems.action.toggleMultiline';
@@ -269,7 +269,7 @@ class MarkerWidget extends Disposable {
269
269
  const multiline = viewModel && viewModel.multiline;
270
270
  const action = this.disposables.add(( new Action(toggleMultilineAction)));
271
271
  action.enabled = !!viewModel && marker.lines.length > 1;
272
- action.tooltip = multiline ? ( localize(8235, "Show message in single line")) : ( localize(8236, "Show message in multiple lines"));
272
+ action.tooltip = multiline ? ( localize(8490, "Show message in single line")) : ( localize(8491, "Show message in multiple lines"));
273
273
  action.class = ThemeIcon.asClassName(multiline ? expandedIcon : collapsedIcon);
274
274
  action.run = () => { if (viewModel) {
275
275
  viewModel.multiline = !viewModel.multiline;
@@ -35,10 +35,10 @@ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform
35
35
  import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
36
36
  import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
37
37
  import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
38
- import { registerNavigableContainer } from '@codingame/monaco-vscode-e39a1c8f-7892-5d9b-9987-7b10b79e1a0a-common/vscode/vs/workbench/browser/actions/widgetNavigationCommands';
38
+ import { registerNavigableContainer } from '@codingame/monaco-vscode-262ed59d-4f76-57cd-9e9f-1877f26ae049-common/vscode/vs/workbench/browser/actions/widgetNavigationCommands';
39
39
  import { RangeHighlightDecorations } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/codeeditor';
40
40
  import { ResourceListDnDHandler } from '@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common/vscode/vs/workbench/browser/dnd';
41
- import { ResourceLabels } from '@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common/vscode/vs/workbench/browser/labels';
41
+ import { ResourceLabels } from '@codingame/monaco-vscode-3b5a5cd1-d4ff-500a-b609-57e0cd4afa0a-common/vscode/vs/workbench/browser/labels';
42
42
  import { FilterViewPane } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane';
43
43
  import { EditorResourceAccessor, SideBySideEditor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
44
44
  import { Memento } from '@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common/vscode/vs/workbench/common/memento';
@@ -71,8 +71,8 @@ let MarkersView = class MarkersView extends FilterViewPane {
71
71
  ariaLabel: Messages.MARKERS_PANEL_FILTER_ARIA_LABEL,
72
72
  placeholder: Messages.MARKERS_PANEL_FILTER_PLACEHOLDER,
73
73
  focusContextKey: MarkersContextKeys.MarkerViewFilterFocusContextKey.key,
74
- text: panelState['filter'] || '',
75
- history: panelState['filterHistory'] || []
74
+ text: panelState.filter || '',
75
+ history: panelState.filterHistory || []
76
76
  }
77
77
  }, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, hoverService);
78
78
  this.editorService = editorService;
@@ -91,7 +91,7 @@ let MarkersView = class MarkersView extends FilterViewPane {
91
91
  this.memento = memento;
92
92
  this.panelState = panelState;
93
93
  this.markersModel = this._register(instantiationService.createInstance(MarkersModel));
94
- this.markersViewModel = this._register(instantiationService.createInstance(MarkersViewModel, this.panelState['multiline'], this.panelState['viewMode'] ?? this.getDefaultViewMode()));
94
+ this.markersViewModel = this._register(instantiationService.createInstance(MarkersViewModel, this.panelState.multiline, this.panelState.viewMode ?? this.getDefaultViewMode()));
95
95
  this._register(this.onDidChangeVisibility(visible => this.onDidChangeMarkersViewVisibility(visible)));
96
96
  this._register(this.markersViewModel.onDidChangeViewMode(_ => this.onDidChangeViewMode()));
97
97
  this.widgetAccessibilityProvider = instantiationService.createInstance(MarkersWidgetAccessibilityProvider);
@@ -100,12 +100,12 @@ let MarkersView = class MarkersView extends FilterViewPane {
100
100
  this.filter = ( new Filter(FilterOptions.EMPTY(uriIdentityService)));
101
101
  this.rangeHighlightDecorations = this._register(this.instantiationService.createInstance(RangeHighlightDecorations));
102
102
  this.filters = this._register(( new MarkersFilters({
103
- filterHistory: this.panelState['filterHistory'] || [],
104
- showErrors: this.panelState['showErrors'] !== false,
105
- showWarnings: this.panelState['showWarnings'] !== false,
106
- showInfos: this.panelState['showInfos'] !== false,
107
- excludedFiles: !!this.panelState['useFilesExclude'],
108
- activeFile: !!this.panelState['activeFile'],
103
+ filterHistory: this.panelState.filterHistory || [],
104
+ showErrors: this.panelState.showErrors !== false,
105
+ showWarnings: this.panelState.showWarnings !== false,
106
+ showInfos: this.panelState.showInfos !== false,
107
+ excludedFiles: !!this.panelState.useFilesExclude,
108
+ activeFile: !!this.panelState.activeFile,
109
109
  }, this.contextKeyService)));
110
110
  this._register(this.configurationService.onDidChangeConfiguration(e => {
111
111
  if (this.filters.excludedFiles && e.affectsConfiguration('files.exclude')) {
@@ -180,7 +180,7 @@ let MarkersView = class MarkersView extends FilterViewPane {
180
180
  this.filterWidget.focus();
181
181
  }
182
182
  updateBadge(total, filtered) {
183
- this.filterWidget.updateBadge(total === filtered || total === 0 ? undefined : ( localize(8237, "Showing {0} of {1}", filtered, total)));
183
+ this.filterWidget.updateBadge(total === filtered || total === 0 ? undefined : ( localize(8492, "Showing {0} of {1}", filtered, total)));
184
184
  }
185
185
  checkMoreFilters() {
186
186
  this.filterWidget.checkMoreFilters(!this.filters.showErrors || !this.filters.showWarnings || !this.filters.showInfos || this.filters.excludedFiles || this.filters.activeFile);
@@ -547,10 +547,10 @@ let MarkersView = class MarkersView extends FilterViewPane {
547
547
  else {
548
548
  this.messageBoxContainer.style.display = 'none';
549
549
  if (filtered === total) {
550
- this.setAriaLabel(( localize(8238, "Showing {0} problems", total)));
550
+ this.setAriaLabel(( localize(8493, "Showing {0} problems", total)));
551
551
  }
552
552
  else {
553
- this.setAriaLabel(( localize(8239, "Showing {0} of {1} problems", filtered, total)));
553
+ this.setAriaLabel(( localize(8494, "Showing {0} of {1} problems", filtered, total)));
554
554
  }
555
555
  this.messageBoxContainer.removeAttribute('tabIndex');
556
556
  }
@@ -567,7 +567,7 @@ let MarkersView = class MarkersView extends FilterViewPane {
567
567
  const span1 = append(container, $('span'));
568
568
  span1.textContent = Messages.MARKERS_PANEL_NO_PROBLEMS_FILTERS;
569
569
  const link = append(container, $('a.messageAction'));
570
- link.textContent = ( localize(8240, "Clear Filters"));
570
+ link.textContent = ( localize(8495, "Clear Filters"));
571
571
  link.setAttribute('tabIndex', '0');
572
572
  const span2 = append(container, $('span'));
573
573
  span2.textContent = '.';
@@ -710,15 +710,15 @@ let MarkersView = class MarkersView extends FilterViewPane {
710
710
  this.layoutBodyContent();
711
711
  }
712
712
  saveState() {
713
- this.panelState['filter'] = this.filterWidget.getFilterText();
714
- this.panelState['filterHistory'] = this.filters.filterHistory;
715
- this.panelState['showErrors'] = this.filters.showErrors;
716
- this.panelState['showWarnings'] = this.filters.showWarnings;
717
- this.panelState['showInfos'] = this.filters.showInfos;
718
- this.panelState['useFilesExclude'] = this.filters.excludedFiles;
719
- this.panelState['activeFile'] = this.filters.activeFile;
720
- this.panelState['multiline'] = this.markersViewModel.multiline;
721
- this.panelState['viewMode'] = this.markersViewModel.viewMode;
713
+ this.panelState.filter = this.filterWidget.getFilterText();
714
+ this.panelState.filterHistory = this.filters.filterHistory;
715
+ this.panelState.showErrors = this.filters.showErrors;
716
+ this.panelState.showWarnings = this.filters.showWarnings;
717
+ this.panelState.showInfos = this.filters.showInfos;
718
+ this.panelState.useFilesExclude = this.filters.excludedFiles;
719
+ this.panelState.activeFile = this.filters.activeFile;
720
+ this.panelState.multiline = this.markersViewModel.multiline;
721
+ this.panelState.viewMode = this.markersViewModel.viewMode;
722
722
  this.memento.saveMemento();
723
723
  super.saveState();
724
724
  }
@@ -4,46 +4,46 @@ import { basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/res
4
4
  import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
5
5
 
6
6
  class Messages {
7
- static { this.MARKERS_PANEL_TOGGLE_LABEL = ( localize(8241, "Toggle Problems (Errors, Warnings, Infos)")); }
8
- static { this.MARKERS_PANEL_SHOW_LABEL = ( localize2(8242, "Focus Problems (Errors, Warnings, Infos)")); }
9
- static { this.PROBLEMS_PANEL_CONFIGURATION_TITLE = ( localize(8243, "Problems View")); }
7
+ static { this.MARKERS_PANEL_TOGGLE_LABEL = ( localize(8496, "Toggle Problems (Errors, Warnings, Infos)")); }
8
+ static { this.MARKERS_PANEL_SHOW_LABEL = ( localize2(8497, "Focus Problems (Errors, Warnings, Infos)")); }
9
+ static { this.PROBLEMS_PANEL_CONFIGURATION_TITLE = ( localize(8498, "Problems View")); }
10
10
  static { this.PROBLEMS_PANEL_CONFIGURATION_AUTO_REVEAL = ( localize(
11
- 8244,
11
+ 8499,
12
12
  "Controls whether Problems view should automatically reveal files when opening them."
13
13
  )); }
14
- static { this.PROBLEMS_PANEL_CONFIGURATION_VIEW_MODE = ( localize(8245, "Controls the default view mode of the Problems view.")); }
15
- static { this.PROBLEMS_PANEL_CONFIGURATION_SHOW_CURRENT_STATUS = ( localize(8246, "When enabled shows the current problem in the status bar.")); }
16
- static { this.PROBLEMS_PANEL_CONFIGURATION_COMPARE_ORDER = ( localize(8247, "Controls the order in which problems are navigated.")); }
17
- static { this.PROBLEMS_PANEL_CONFIGURATION_COMPARE_ORDER_SEVERITY = ( localize(8248, "Navigate problems ordered by severity")); }
18
- static { this.PROBLEMS_PANEL_CONFIGURATION_COMPARE_ORDER_POSITION = ( localize(8249, "Navigate problems ordered by position")); }
19
- static { this.MARKERS_PANEL_TITLE_PROBLEMS = ( localize2(8250, "Problems")); }
20
- static { this.MARKERS_PANEL_NO_PROBLEMS_BUILT = ( localize(8251, "No problems have been detected in the workspace.")); }
21
- static { this.MARKERS_PANEL_NO_PROBLEMS_ACTIVE_FILE_BUILT = ( localize(8252, "No problems have been detected in the current file.")); }
22
- static { this.MARKERS_PANEL_NO_PROBLEMS_FILTERS = ( localize(8253, "No results found with provided filter criteria.")); }
23
- static { this.MARKERS_PANEL_ACTION_TOOLTIP_MORE_FILTERS = ( localize(8254, "More Filters...")); }
24
- static { this.MARKERS_PANEL_FILTER_LABEL_SHOW_ERRORS = ( localize(8255, "Show Errors")); }
25
- static { this.MARKERS_PANEL_FILTER_LABEL_SHOW_WARNINGS = ( localize(8256, "Show Warnings")); }
26
- static { this.MARKERS_PANEL_FILTER_LABEL_SHOW_INFOS = ( localize(8257, "Show Infos")); }
27
- static { this.MARKERS_PANEL_FILTER_LABEL_EXCLUDED_FILES = ( localize(8258, "Hide Excluded Files")); }
28
- static { this.MARKERS_PANEL_FILTER_LABEL_ACTIVE_FILE = ( localize(8259, "Show Active File Only")); }
29
- static { this.MARKERS_PANEL_ACTION_TOOLTIP_FILTER = ( localize(8260, "Filter Problems")); }
30
- static { this.MARKERS_PANEL_ACTION_TOOLTIP_QUICKFIX = ( localize(8261, "Show fixes")); }
31
- static { this.MARKERS_PANEL_FILTER_ARIA_LABEL = ( localize(8262, "Filter Problems")); }
32
- static { this.MARKERS_PANEL_FILTER_PLACEHOLDER = ( localize(8263, "Filter (e.g. text, **/*.ts, !**/node_modules/**)")); }
33
- static { this.MARKERS_PANEL_FILTER_ERRORS = ( localize(8264, "errors")); }
34
- static { this.MARKERS_PANEL_FILTER_WARNINGS = ( localize(8265, "warnings")); }
35
- static { this.MARKERS_PANEL_FILTER_INFOS = ( localize(8266, "infos")); }
36
- static { this.MARKERS_PANEL_SINGLE_ERROR_LABEL = ( localize(8267, "1 Error")); }
37
- static { this.MARKERS_PANEL_MULTIPLE_ERRORS_LABEL = (noOfErrors) => { return localize(8268, "{0} Errors", '' + noOfErrors); }; }
38
- static { this.MARKERS_PANEL_SINGLE_WARNING_LABEL = ( localize(8269, "1 Warning")); }
39
- static { this.MARKERS_PANEL_MULTIPLE_WARNINGS_LABEL = (noOfWarnings) => { return localize(8270, "{0} Warnings", '' + noOfWarnings); }; }
40
- static { this.MARKERS_PANEL_SINGLE_INFO_LABEL = ( localize(8271, "1 Info")); }
41
- static { this.MARKERS_PANEL_MULTIPLE_INFOS_LABEL = (noOfInfos) => { return localize(8272, "{0} Infos", '' + noOfInfos); }; }
42
- static { this.MARKERS_PANEL_SINGLE_UNKNOWN_LABEL = ( localize(8273, "1 Unknown")); }
43
- static { this.MARKERS_PANEL_MULTIPLE_UNKNOWNS_LABEL = (noOfUnknowns) => { return localize(8274, "{0} Unknowns", '' + noOfUnknowns); }; }
44
- static { this.MARKERS_PANEL_AT_LINE_COL_NUMBER = (ln, col) => { return localize(8275, "[Ln {0}, Col {1}]", '' + ln, '' + col); }; }
14
+ static { this.PROBLEMS_PANEL_CONFIGURATION_VIEW_MODE = ( localize(8500, "Controls the default view mode of the Problems view.")); }
15
+ static { this.PROBLEMS_PANEL_CONFIGURATION_SHOW_CURRENT_STATUS = ( localize(8501, "When enabled shows the current problem in the status bar.")); }
16
+ static { this.PROBLEMS_PANEL_CONFIGURATION_COMPARE_ORDER = ( localize(8502, "Controls the order in which problems are navigated.")); }
17
+ static { this.PROBLEMS_PANEL_CONFIGURATION_COMPARE_ORDER_SEVERITY = ( localize(8503, "Navigate problems ordered by severity")); }
18
+ static { this.PROBLEMS_PANEL_CONFIGURATION_COMPARE_ORDER_POSITION = ( localize(8504, "Navigate problems ordered by position")); }
19
+ static { this.MARKERS_PANEL_TITLE_PROBLEMS = ( localize2(8505, "Problems")); }
20
+ static { this.MARKERS_PANEL_NO_PROBLEMS_BUILT = ( localize(8506, "No problems have been detected in the workspace.")); }
21
+ static { this.MARKERS_PANEL_NO_PROBLEMS_ACTIVE_FILE_BUILT = ( localize(8507, "No problems have been detected in the current file.")); }
22
+ static { this.MARKERS_PANEL_NO_PROBLEMS_FILTERS = ( localize(8508, "No results found with provided filter criteria.")); }
23
+ static { this.MARKERS_PANEL_ACTION_TOOLTIP_MORE_FILTERS = ( localize(8509, "More Filters...")); }
24
+ static { this.MARKERS_PANEL_FILTER_LABEL_SHOW_ERRORS = ( localize(8510, "Show Errors")); }
25
+ static { this.MARKERS_PANEL_FILTER_LABEL_SHOW_WARNINGS = ( localize(8511, "Show Warnings")); }
26
+ static { this.MARKERS_PANEL_FILTER_LABEL_SHOW_INFOS = ( localize(8512, "Show Infos")); }
27
+ static { this.MARKERS_PANEL_FILTER_LABEL_EXCLUDED_FILES = ( localize(8513, "Hide Excluded Files")); }
28
+ static { this.MARKERS_PANEL_FILTER_LABEL_ACTIVE_FILE = ( localize(8514, "Show Active File Only")); }
29
+ static { this.MARKERS_PANEL_ACTION_TOOLTIP_FILTER = ( localize(8515, "Filter Problems")); }
30
+ static { this.MARKERS_PANEL_ACTION_TOOLTIP_QUICKFIX = ( localize(8516, "Show fixes")); }
31
+ static { this.MARKERS_PANEL_FILTER_ARIA_LABEL = ( localize(8517, "Filter Problems")); }
32
+ static { this.MARKERS_PANEL_FILTER_PLACEHOLDER = ( localize(8518, "Filter (e.g. text, **/*.ts, !**/node_modules/**)")); }
33
+ static { this.MARKERS_PANEL_FILTER_ERRORS = ( localize(8519, "errors")); }
34
+ static { this.MARKERS_PANEL_FILTER_WARNINGS = ( localize(8520, "warnings")); }
35
+ static { this.MARKERS_PANEL_FILTER_INFOS = ( localize(8521, "infos")); }
36
+ static { this.MARKERS_PANEL_SINGLE_ERROR_LABEL = ( localize(8522, "1 Error")); }
37
+ static { this.MARKERS_PANEL_MULTIPLE_ERRORS_LABEL = (noOfErrors) => { return localize(8523, "{0} Errors", '' + noOfErrors); }; }
38
+ static { this.MARKERS_PANEL_SINGLE_WARNING_LABEL = ( localize(8524, "1 Warning")); }
39
+ static { this.MARKERS_PANEL_MULTIPLE_WARNINGS_LABEL = (noOfWarnings) => { return localize(8525, "{0} Warnings", '' + noOfWarnings); }; }
40
+ static { this.MARKERS_PANEL_SINGLE_INFO_LABEL = ( localize(8526, "1 Info")); }
41
+ static { this.MARKERS_PANEL_MULTIPLE_INFOS_LABEL = (noOfInfos) => { return localize(8527, "{0} Infos", '' + noOfInfos); }; }
42
+ static { this.MARKERS_PANEL_SINGLE_UNKNOWN_LABEL = ( localize(8528, "1 Unknown")); }
43
+ static { this.MARKERS_PANEL_MULTIPLE_UNKNOWNS_LABEL = (noOfUnknowns) => { return localize(8529, "{0} Unknowns", '' + noOfUnknowns); }; }
44
+ static { this.MARKERS_PANEL_AT_LINE_COL_NUMBER = (ln, col) => { return localize(8530, "[Ln {0}, Col {1}]", '' + ln, '' + col); }; }
45
45
  static { this.MARKERS_TREE_ARIA_LABEL_RESOURCE = (noOfProblems, fileName, folder) => { return localize(
46
- 8276,
46
+ 8531,
47
47
  "{0} problems in file {1} of folder {2}",
48
48
  noOfProblems,
49
49
  fileName,
@@ -51,14 +51,14 @@ class Messages {
51
51
  ); }; }
52
52
  static { this.MARKERS_TREE_ARIA_LABEL_MARKER = (marker) => {
53
53
  const relatedInformationMessage = marker.relatedInformation.length ? ( localize(
54
- 8277,
54
+ 8532,
55
55
  " This problem has references to {0} locations.",
56
56
  marker.relatedInformation.length
57
57
  )) : '';
58
58
  switch (marker.marker.severity) {
59
59
  case MarkerSeverity.Error:
60
60
  return marker.marker.source ? ( localize(
61
- 8278,
61
+ 8533,
62
62
  "Error: {0} at line {1} and character {2}.{3} generated by {4}",
63
63
  marker.marker.message,
64
64
  marker.marker.startLineNumber,
@@ -67,7 +67,7 @@ class Messages {
67
67
  marker.marker.source
68
68
  ))
69
69
  : ( localize(
70
- 8279,
70
+ 8534,
71
71
  "Error: {0} at line {1} and character {2}.{3}",
72
72
  marker.marker.message,
73
73
  marker.marker.startLineNumber,
@@ -76,7 +76,7 @@ class Messages {
76
76
  ));
77
77
  case MarkerSeverity.Warning:
78
78
  return marker.marker.source ? ( localize(
79
- 8280,
79
+ 8535,
80
80
  "Warning: {0} at line {1} and character {2}.{3} generated by {4}",
81
81
  marker.marker.message,
82
82
  marker.marker.startLineNumber,
@@ -85,7 +85,7 @@ class Messages {
85
85
  marker.marker.source
86
86
  ))
87
87
  : ( localize(
88
- 8281,
88
+ 8536,
89
89
  "Warning: {0} at line {1} and character {2}.{3}",
90
90
  marker.marker.message,
91
91
  marker.marker.startLineNumber,
@@ -95,7 +95,7 @@ class Messages {
95
95
  ));
96
96
  case MarkerSeverity.Info:
97
97
  return marker.marker.source ? ( localize(
98
- 8282,
98
+ 8537,
99
99
  "Info: {0} at line {1} and character {2}.{3} generated by {4}",
100
100
  marker.marker.message,
101
101
  marker.marker.startLineNumber,
@@ -104,7 +104,7 @@ class Messages {
104
104
  marker.marker.source
105
105
  ))
106
106
  : ( localize(
107
- 8283,
107
+ 8538,
108
108
  "Info: {0} at line {1} and character {2}.{3}",
109
109
  marker.marker.message,
110
110
  marker.marker.startLineNumber,
@@ -113,7 +113,7 @@ class Messages {
113
113
  ));
114
114
  default:
115
115
  return marker.marker.source ? ( localize(
116
- 8284,
116
+ 8539,
117
117
  "Problem: {0} at line {1} and character {2}.{3} generated by {4}",
118
118
  marker.marker.source,
119
119
  marker.marker.message,
@@ -123,7 +123,7 @@ class Messages {
123
123
  marker.marker.source
124
124
  ))
125
125
  : ( localize(
126
- 8285,
126
+ 8540,
127
127
  "Problem: {0} at line {1} and character {2}.{3}",
128
128
  marker.marker.message,
129
129
  marker.marker.startLineNumber,
@@ -133,14 +133,14 @@ class Messages {
133
133
  }
134
134
  }; }
135
135
  static { this.MARKERS_TREE_ARIA_LABEL_RELATED_INFORMATION = (relatedInformation) => ( localize(
136
- 8286,
136
+ 8541,
137
137
  "{0} at line {1} and character {2} in {3}",
138
138
  relatedInformation.message,
139
139
  relatedInformation.startLineNumber,
140
140
  relatedInformation.startColumn,
141
141
  basename(relatedInformation.resource)
142
142
  )); }
143
- static { this.SHOW_ERRORS_WARNINGS_ACTION_LABEL = ( localize(8287, "Show Errors and Warnings")); }
143
+ static { this.SHOW_ERRORS_WARNINGS_ACTION_LABEL = ( localize(8542, "Show Errors and Warnings")); }
144
144
  }
145
145
 
146
146
  export { Messages as default };