Fixing context menu strings (#18404)

* Fixing context menu strings

* Fixing string
This commit is contained in:
Aasim Khan
2022-02-16 15:21:35 -08:00
committed by GitHub
parent 80c8b06ec8
commit fe360afec7

View File

@@ -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);