diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index 61c1b73944..400a5bb737 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -788,8 +788,8 @@ "updateAvailableDesc": { "message": "An update was found. Do you want to download it now?" }, - "update": { - "message": "Update" + "restart": { + "message": "Restart" }, "later": { "message": "Later" diff --git a/src/main/updater.main.ts b/src/main/updater.main.ts index 3c53566574..ac1fe08359 100644 --- a/src/main/updater.main.ts +++ b/src/main/updater.main.ts @@ -56,6 +56,9 @@ export class UpdaterMain { if (this.doingUpdateCheckWithFeedback && this.main.windowMain.win != null) { dialog.showMessageBox(this.main.windowMain.win, { message: this.main.i18nService.t('noUpdatesAvailable'), + buttons: [this.main.i18nService.t('ok')], + defaultId: 0, + noLink: true, }); }