diff --git a/resources/xlf/en/sql.xlf b/resources/xlf/en/sql.xlf
index 43b9a50200..db43b7566b 100644
--- a/resources/xlf/en/sql.xlf
+++ b/resources/xlf/en/sql.xlf
@@ -2478,8 +2478,8 @@ Default Skipped Commands:
Dispose Edit Failed With Error:
-
- Close SQL Pane
+
+ Hide SQL Pane
Run
diff --git a/src/sql/workbench/contrib/editData/browser/editDataActions.ts b/src/sql/workbench/contrib/editData/browser/editDataActions.ts
index 625783f593..f13e79a0f8 100644
--- a/src/sql/workbench/contrib/editData/browser/editDataActions.ts
+++ b/src/sql/workbench/contrib/editData/browser/editDataActions.ts
@@ -220,7 +220,7 @@ export class ShowQueryPaneAction extends EditDataAction {
private static EnabledClass = 'filterLabel';
public static ID = 'showQueryPaneAction';
private readonly showSqlLabel = nls.localize('editData.showSql', "Show SQL Pane");
- private readonly closeSqlLabel = nls.localize('editData.closeSql', "Close SQL Pane");
+ private readonly closeSqlLabel = nls.localize('editData.hideSql', "Hide SQL Pane");
constructor(editor: EditDataEditor,
@IConnectionManagementService _connectionManagementService: IConnectionManagementService