Skip to content

Commit 7a892a3

Browse files
authored
Merge pull request #24633 from nextcloud/jospoortvliet-patch-1
Update UpdateNotification.vue
2 parents b2f183a + 602ed22 commit 7a892a3

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

apps/updatenotification/js/updatenotification.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/updatenotification/js/updatenotification.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/updatenotification/src/components/UpdateNotification.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<span id="channel_save_msg" class="msg" /><br>
9191
<p>
9292
<em>{{ t('updatenotification', 'You can always update to a newer version. But you can never downgrade to a more stable version.') }}</em><br>
93-
<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>
93+
<em v-html="noteDelayedStableString"></em>
9494
</p>
9595

9696
<p id="oca_updatenotification_groups">
@@ -169,6 +169,10 @@ export default {
169169
})
170170
},
171171
172+
noteDelayedStableString() {
173+
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>')
174+
},
175+
172176
lastCheckedOnString() {
173177
return t('updatenotification', 'Checked on {lastCheckedDate}', {
174178
lastCheckedDate: this.lastCheckedDate,

0 commit comments

Comments
 (0)