From bcb5384639da371c440031059959d9c7cf4bc065 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Fri, 4 Oct 2019 14:14:05 -0700 Subject: [PATCH] Capitalize action text for query history (#7512) --- .../parts/queryHistory/browser/queryHistoryActions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/workbench/parts/queryHistory/browser/queryHistoryActions.ts b/src/sql/workbench/parts/queryHistory/browser/queryHistoryActions.ts index 38d4c913f9..8459a7b73e 100644 --- a/src/sql/workbench/parts/queryHistory/browser/queryHistoryActions.ts +++ b/src/sql/workbench/parts/queryHistory/browser/queryHistoryActions.ts @@ -128,10 +128,10 @@ export class ToggleQueryHistoryCaptureAction extends Action { private setClassAndLabel(enabled: boolean) { if (enabled) { this.class = 'toggle-query-history-capture-action codicon-pause'; - this.label = localize('queryHistory.disableCapture', "Pause Query History capture"); + this.label = localize('queryHistory.disableCapture', "Pause Query History Capture"); } else { this.class = 'toggle-query-history-capture-action codicon-play'; - this.label = localize('queryHistory.enableCapture', "Start Query History capture"); + this.label = localize('queryHistory.enableCapture', "Start Query History Capture"); } } }