Changed add connection -> new connection (#19596)

* changed add connection -> new connection

* remove xlf file changes

* fix spacing

* fix workspace settings
This commit is contained in:
Christopher Suh
2022-06-02 14:04:34 -07:00
committed by GitHub
parent 1bbf5a78c1
commit 1b9f4cbbae

View File

@@ -147,7 +147,7 @@ export class ServerTreeView extends Disposable implements IServerTreeView {
if (!this._connectionManagementService.hasRegisteredServers()) {
this._buttonSection = append(container, $('.button-section'));
const connectButton = new Button(this._buttonSection);
connectButton.label = localize('serverTree.addConnection', "Add Connection");
connectButton.label = localize('serverTree.newConnection', "New Connection");
this._register(attachButtonStyler(connectButton, this._themeService));
this._register(connectButton.onDidClick(() => {
this._connectionManagementService.showConnectionDialog();