Skip to content

Commit

Permalink
fix #44842
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed Mar 1, 2018
1 parent b51d61e commit 4b435e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ export class UpdateAction extends Action {
console.error(err);
this.notificationService.notify({
severity: Severity.Error,
message: localize('failedToInstall', "Failed to install \'{0}\'.", extension.id),
message: localize('failedToUpdate', "Failed to update \'{0}\'.", extension.id),
actions: {
primary: [
this.instantiationService.createInstance(DownloadExtensionAction, extension)
Expand Down Expand Up @@ -862,7 +862,7 @@ export class UpdateAllAction extends Action {
console.error(err);
this.notificationService.notify({
severity: Severity.Error,
message: localize('failedToInstall', "Failed to install \'{0}\'.", extension.id),
message: localize('failedToUpdate', "Failed to update \'{0}\'.", extension.id),
actions: {
primary: [
this.instantiationService.createInstance(DownloadExtensionAction, extension)
Expand Down

0 comments on commit 4b435e3

Please sign in to comment.