changes strings for data explorer (#4946)

This commit is contained in:
Anthony Dresser
2019-04-09 12:39:15 -07:00
committed by GitHub
parent daf929ecc7
commit 3670dfbebd
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editor
// Viewlet Action // Viewlet Action
export class OpenDataExplorerViewletAction extends ShowViewletAction { export class OpenDataExplorerViewletAction extends ShowViewletAction {
public static ID = VIEWLET_ID; public static ID = VIEWLET_ID;
public static LABEL = localize('showDataExplorer', "Show Data Explorer"); public static LABEL = localize('showDataExplorer', "Show Connections");
constructor( constructor(
id: string, id: string,
@@ -39,7 +39,7 @@ export class OpenDataExplorerViewletAction extends ShowViewletAction {
const viewletDescriptor = new ViewletDescriptor( const viewletDescriptor = new ViewletDescriptor(
DataExplorerViewlet, DataExplorerViewlet,
VIEWLET_ID, VIEWLET_ID,
localize('workbench.dataExplorer', "Data Explorer"), localize('workbench.dataExplorer', "Connections"),
'dataExplorer', 'dataExplorer',
0 0
); );

View File

@@ -156,7 +156,7 @@ class DataExplorerContainerExtensionHandler implements IWorkbenchContribution {
} }
private showCollapsed(container: ViewContainer): boolean { private showCollapsed(container: ViewContainer): boolean {
return false; return true;
} }
} }