diff options
author | Jos Poortvliet <jospoortvliet@gmail.com> | 2020-12-10 12:02:29 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-01-18 11:56:49 +0100 |
commit | 602ed2295db1b2849858a0687ef78d14d39fa472 (patch) | |
tree | 31c3b8ae24edc45fe9fba536934dff7261379d65 /apps/updatenotification/src/components/UpdateNotification.vue | |
parent | 6d291c3c1934e97914a9c22e66355769efe3f6d0 (diff) | |
download | nextcloud-server-602ed2295db1b2849858a0687ef78d14d39fa472.tar.gz nextcloud-server-602ed2295db1b2849858a0687ef78d14d39fa472.zip |
Update UpdateNotification.vue
I've updated the text, but the 'learn more about updates and update channels' should link to https://nextcloud.com/release-channels/
Diffstat (limited to 'apps/updatenotification/src/components/UpdateNotification.vue')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index d67d9d45beb..9d18fab2a11 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -90,7 +90,7 @@ <span id="channel_save_msg" class="msg" /><br> <p> <em>{{ t('updatenotification', 'You can always update to a newer version. But you can never downgrade to a more stable version.') }}</em><br> - <em>{{ t('updatenotification', 'Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.') }}</em> + <em v-html="noteDelayedStableString"></em> </p> <p id="oca_updatenotification_groups"> @@ -169,6 +169,10 @@ export default { }) }, + noteDelayedStableString() { + return t('updatenotification', 'Note that after a new release the update only shows up after the first minor release or later. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found. Learn more about updates and release channels at {link}').replace('{link}', '<a href="https://nextcloud.com/release-channels/">https://nextcloud.com/release-channels/</a>') + }, + lastCheckedOnString() { return t('updatenotification', 'Checked on {lastCheckedDate}', { lastCheckedDate: this.lastCheckedDate, |