From 5b292fdada49ae9d45c97f9146819988bcc157d1 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 8 May 2018 16:44:02 +0200 Subject: [PATCH] align sort action label with extension viewlet --- .../parts/outline/electron-browser/outlinePanel.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/parts/outline/electron-browser/outlinePanel.ts b/src/vs/workbench/parts/outline/electron-browser/outlinePanel.ts index 93eee806ef3..b61c904b973 100644 --- a/src/vs/workbench/parts/outline/electron-browser/outlinePanel.ts +++ b/src/vs/workbench/parts/outline/electron-browser/outlinePanel.ts @@ -69,9 +69,9 @@ class ActiveEditorOracle { class ChangeSortAction extends Action { private static _labels = { - [OutlineItemCompareType.ByPosition]: localize('sortByPosition', "Sort By Position"), - [OutlineItemCompareType.ByName]: localize('sortByName', "Sort By Name"), - [OutlineItemCompareType.ByKind]: localize('sortByKind', "Sort By Type"), + [OutlineItemCompareType.ByPosition]: localize('sortByPosition', "Sort By: Position"), + [OutlineItemCompareType.ByName]: localize('sortByName', "Sort By: Name"), + [OutlineItemCompareType.ByKind]: localize('sortByKind', "Sort By: Type"), }; constructor(type: OutlineItemCompareType, callback: (type: OutlineItemCompareType) => any) { -- GitLab