[Loc] update to editDataActions close SQL button (#24231)

This commit is contained in:
Alex Ma
2023-08-26 01:54:33 -07:00
committed by GitHub
parent 76642a2b73
commit bf6701dbdf
2 changed files with 3 additions and 3 deletions

View File

@@ -2478,8 +2478,8 @@ Default Skipped Commands:
<trans-unit id="disposeEditFailure">
<source xml:lang="en">Dispose Edit Failed With Error: </source>
</trans-unit>
<trans-unit id="editData.closeSql">
<source xml:lang="en">Close SQL Pane</source>
<trans-unit id="editData.hideSql">
<source xml:lang="en">Hide SQL Pane</source>
</trans-unit>
<trans-unit id="editData.run">
<source xml:lang="en">Run</source>

View File

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