mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
SystemUpdate: fix i18n key
This commit is contained in:
parent
187b8cf455
commit
099bcfbb8b
2 changed files with 5 additions and 5 deletions
|
@ -114,12 +114,12 @@
|
|||
"continue": "Continue to next app",
|
||||
"notifs": {
|
||||
"pre": {
|
||||
"title": "Be warned!",
|
||||
"alert": "You should check those notifications before upgrading, there might be important stuff to know."
|
||||
"alert": "You should check those notifications before upgrading, there might be important stuff to know.",
|
||||
"title": "Be warned!"
|
||||
},
|
||||
"post": {
|
||||
"title": "Post upgrade information for '{name}'",
|
||||
"alert": "It seems that the upgrade went well!\n Here is some notifications that the packager considers important to know about this upgrade.\nYou can read it again in the app info page."
|
||||
"alert": "It seems that the upgrade went well!\n Here is some notifications that the packager considers important to know about this upgrade.\nYou can read it again in the app info page.",
|
||||
"title": "Post-upgrade notifications for '{name}'"
|
||||
}
|
||||
},
|
||||
"stop": "Cancel next app upgrades"
|
||||
|
|
|
@ -184,7 +184,7 @@ export default {
|
|||
this.apps = this.apps.filter((a) => app.id !== a.id)
|
||||
|
||||
if (postMessage) {
|
||||
const message = this.$i18n.t('app.upgrade.notifs.post.success') + '\n\n' + postMessage
|
||||
const message = this.$i18n.t('app.upgrade.notifs.post.alert') + '\n\n' + postMessage
|
||||
return this.$askMdConfirmation(message, {
|
||||
title: this.$i18n.t('app.upgrade.notifs.post.title', { name: app.name }),
|
||||
okTitle: this.$i18n.t(isLast ? 'ok' : 'app.upgrade.continue'),
|
||||
|
|
Loading…
Reference in a new issue