missing buttons from updater

This commit is contained in:
Kyle Spearrin 2018-02-16 10:04:55 -05:00
parent ee0938512c
commit c9645ef262
2 changed files with 5 additions and 2 deletions

View File

@ -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"

View File

@ -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,
});
}