From fe360afec7d2daae85b10679eaffa299e1d14924 Mon Sep 17 00:00:00 2001 From: Aasim Khan Date: Wed, 16 Feb 2022 15:21:35 -0800 Subject: [PATCH] Fixing context menu strings (#18404) * 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);