From 83358540151b43487d5a8b2a1e6f1a7329ac48a7 Mon Sep 17 00:00:00 2001 From: Aasim Khan Date: Thu, 17 Feb 2022 09:22:23 -0800 Subject: [PATCH] Fixing context menu strings (#18404) (#18427) * Fixing context menu strings * Fixing string --- src/sql/workbench/contrib/queryplan2/browser/queryPlan.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/workbench/contrib/queryplan2/browser/queryPlan.ts b/src/sql/workbench/contrib/queryplan2/browser/queryPlan.ts index 712494314b..4ae0ad57b8 100644 --- a/src/sql/workbench/contrib/queryplan2/browser/queryPlan.ts +++ b/src/sql/workbench/contrib/queryplan2/browser/queryPlan.ts @@ -565,7 +565,7 @@ class CustomZoomAction extends Action { class SearchNodeAction extends Action { public static ID = 'qp.searchNode'; - public static LABEL = localize('queryPlanSearchNodeAction', "SearchNode"); + public static LABEL = localize('queryPlanSearchNodeAction', "Find Node"); constructor() { super(SearchNodeAction.ID, SearchNodeAction.LABEL, searchIconClassNames); @@ -578,7 +578,7 @@ class SearchNodeAction extends Action { class OpenPlanFile extends Action { public static ID = 'qp.openGraphFile'; - public static Label = localize('queryPlanOpenGraphFile', "Open Plan File"); + public static Label = localize('queryPlanOpenGraphFile', "Show Query Plan XML"); //TODO: add a contribution point for providers to set this text constructor() { super(OpenPlanFile.ID, OpenPlanFile.Label, openPlanFileIconClassNames);