Skip to content

Commit

Permalink
Fix message branding VS Code -> ADS (#10407)
Browse files Browse the repository at this point in the history
* Fix message branding VS Code -> ADS

* Add edit comment
  • Loading branch information
Charles-Gagnon authored May 14, 2020
1 parent f934dea commit e95650d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit e95650d

Please sign in to comment.