From bf6701dbdfe066f631bc97c919048e0cc37c9fd2 Mon Sep 17 00:00:00 2001 From: Alex Ma Date: Sat, 26 Aug 2023 01:54:33 -0700 Subject: [PATCH] [Loc] update to editDataActions close SQL button (#24231) --- resources/xlf/en/sql.xlf | 4 ++-- src/sql/workbench/contrib/editData/browser/editDataActions.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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