#6679 update action keys

This commit is contained in:
Sandeep Somavarapu
2016-06-13 19:27:29 +02:00
parent d97f54b976
commit 2f47453208
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ import Tree = require('vs/base/parts/tree/browser/tree');
export class ToggleProblemsPanelAction extends TogglePanelAction {
public static ID:string = 'workbench.action.markers.panel.toggle';
public static ID:string = 'workbench.actions.view.problems';
constructor(id: string, label: string,
@IPartService private partService: IPartService,
@@ -64,7 +64,7 @@ export class CollapseAllAction extends TreeCollapseAction {
export class FilterAction extends Action {
constructor(private markersPanel: MarkersPanel) {
super('workbench.markers.panel.action.filter', Messages.MARKERS_PANEL_ACTION_TOOLTIP_FILTER, 'markers-panel-action-filter', true);
super('workbench.actions.problems.filter', Messages.MARKERS_PANEL_ACTION_TOOLTIP_FILTER, 'markers-panel-action-filter', true);
}
}

View File

@@ -11,7 +11,7 @@ import { IMarker } from 'vs/platform/markers/common/markers';
export default class Messages {
public static MARKERS_PANEL_VIEW_CATEGORY:string= nls.localize('viewCategory', "View");
public static MARKERS_PANEL_TOGGLE_LABEL:string= nls.localize('markers.panel.toggle.label', "Toggle Problems");
public static MARKERS_PANEL_TOGGLE_LABEL:string= nls.localize('problems.view.show.label', "Show Problems");
public static PROBLEMS_PANEL_CONFIGURATION_TITLE:string= nls.localize('problems.panel.configuration.title', "Problems view configuration");
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");