From 1b9f4cbbae779d413ee39b1109fcd7df6adbf614 Mon Sep 17 00:00:00 2001 From: Christopher Suh Date: Thu, 2 Jun 2022 14:04:34 -0700 Subject: [PATCH] Changed add connection -> new connection (#19596) * changed add connection -> new connection * remove xlf file changes * fix spacing * fix workspace settings --- .../workbench/contrib/objectExplorer/browser/serverTreeView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/contrib/objectExplorer/browser/serverTreeView.ts b/src/sql/workbench/contrib/objectExplorer/browser/serverTreeView.ts index 948fd8ad04..fa499bca3e 100644 --- a/src/sql/workbench/contrib/objectExplorer/browser/serverTreeView.ts +++ b/src/sql/workbench/contrib/objectExplorer/browser/serverTreeView.ts @@ -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();