This commit is contained in:
Sandeep Somavarapu
2016-09-27 17:22:32 +02:00
parent 0c54360b23
commit d3d35e2ae1
3 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ export function registerContributions(): void {
'vs/workbench/parts/markers/browser/markersPanel',
'MarkersPanel',
Constants.MARKERS_PANEL_ID,
Messages.MARKERS_PANEL_TITLE_NO_PROBLEMS,
Messages.MARKERS_PANEL_TITLE_PROBLEMS,
'markersPanel',
10

View File

@@ -290,7 +290,7 @@ export class MarkersModel {
public getTitle(markerStatistics: MarkerStatistics):string {
let title= MarkersModel.getStatisticsLabel(markerStatistics);
return title ? title : Messages.MARKERS_PANEL_TITLE_NO_PROBLEMS;
return title ? title : Messages.MARKERS_PANEL_TITLE_PROBLEMS;
}
public getMessage():string {

View File

@@ -16,7 +16,7 @@ export default class Messages {
public static PROBLEMS_PANEL_CONFIGURATION_TITLE:string= nls.localize('problems.panel.configuration.title', "Problems View");
public static PROBLEMS_PANEL_CONFIGURATION_AUTO_REVEAL:string= nls.localize('problems.panel.configuration.autoreveal', "Controls if Problems view should automatically reveal files when opening them");
public static MARKERS_PANEL_TITLE_NO_PROBLEMS:string= nls.localize('markers.panel.title.no.problems', "No problems");
public static MARKERS_PANEL_TITLE_PROBLEMS:string= nls.localize('markers.panel.title.problems', "Problems");
public static MARKERS_PANEL_ARIA_LABEL_PROBLEMS_TREE:string= nls.localize('markers.panel.aria.label.problems.tree', "Problems grouped by files");
public static MARKERS_PANEL_NO_PROBLEMS_BUILT:string= nls.localize('markers.panel.no.problems.build', "No problems have been detected in the workspace so far.");