Skip to content

Commit

Permalink
Update UpdateNotification.vue
Browse files Browse the repository at this point in the history
I've updated the text, but the 'learn more about updates and update channels' should link to https://nextcloud.com/release-channels/
  • Loading branch information
jospoortvliet authored and nickvergessen committed Jan 18, 2021
1 parent 6d291c3 commit 602ed22
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/updatenotification/js/updatenotification.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/updatenotification/js/updatenotification.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 602ed22

Please sign in to comment.