From e95650da8907b1422e98e8d0e711df439e12b98e Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Thu, 14 May 2020 14:26:45 -0700 Subject: [PATCH] Fix message branding VS Code -> ADS (#10407) * Fix message branding VS Code -> ADS * Add edit comment --- .../workbench/contrib/extensions/browser/extensionsActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts b/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts index 1287fd6051..b8173e4d74 100644 --- a/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts +++ b/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts @@ -3043,7 +3043,7 @@ export class InstallVSIXAction extends Action { return; } const requireReload = !(extension.local && this.extensionService.canAddExtension(toExtensionDescription(extension.local))); - const message = requireReload ? localize('InstallVSIXAction.successReload', "Please reload Visual Studio Code to complete installing the extension {0}.", extension.displayName || extension.name) + const message = requireReload ? localize('InstallVSIXAction.successReload', "Please reload Azure Data Studio to complete installing the extension {0}.", extension.displayName || extension.name) // {{SQL CARBON EDIT}} : localize('InstallVSIXAction.success', "Completed installing the extension {0}.", extension.displayName || extension.name); const actions = requireReload ? [{ label: localize('InstallVSIXAction.reloadNow', "Reload Now"),