Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-02-26 10:49:43 +0300
committernpmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>2021-02-26 13:56:35 +0300
commit4807ce3b084cfdc9f3d79cd1345e1d1f79cd43f9 (patch)
tree7fbd86008f6b0695ed27004e75fa653d767f2abc /apps/updatenotification/src
parentb4ccadea2b5f6eca7f4d1b734839afc6d2dfd264 (diff)
Make the compatible app message less confusing for multi versions apps
Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r--apps/updatenotification/src/components/UpdateNotification.vue15
1 files changed, 8 insertions, 7 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue
index 9f182a3743d..2c5082b171c 100644
--- a/apps/updatenotification/src/components/UpdateNotification.vue
+++ b/apps/updatenotification/src/components/UpdateNotification.vue
@@ -17,7 +17,7 @@
<template v-if="missingAppUpdates.length">
<h3 @click="toggleHideMissingUpdates">
- {{ t('updatenotification', 'Apps missing updates') }}
+ {{ t('updatenotification', 'Apps missing compatible version') }}
<span v-if="!hideMissingUpdates" class="icon icon-triangle-n" />
<span v-if="hideMissingUpdates" class="icon icon-triangle-s" />
</h3>
@@ -30,7 +30,7 @@
<template v-if="availableAppUpdates.length">
<h3 @click="toggleHideAvailableUpdates">
- {{ t('updatenotification', 'Apps with available updates') }}
+ {{ t('updatenotification', 'Apps with compatible version') }}
<span v-if="!hideAvailableUpdates" class="icon icon-triangle-n" />
<span v-if="hideAvailableUpdates" class="icon icon-triangle-s" />
</h3>
@@ -104,7 +104,7 @@
label="label"
track-by="value"
:tag-width="75" /><br>
- <em v-if="currentChannel === 'daily' || currentChannel === 'git'">{{ t('updatenotification', 'Only notification for app updates are available.') }}</em>
+ <em v-if="currentChannel === 'daily' || currentChannel === 'git'">{{ t('updatenotification', 'Only notifications for app updates are available.') }}</em>
<em v-if="currentChannel === 'daily'">{{ t('updatenotification', 'The selected update channel makes dedicated notifications for the server obsolete.') }}</em>
<em v-if="currentChannel === 'git'">{{ t('updatenotification', 'The selected update channel does not support updates of the server.') }}</em>
</p>
@@ -174,7 +174,8 @@ 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>')
+ 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() {
@@ -185,7 +186,7 @@ export default {
statusText() {
if (!this.isListFetched) {
- return t('updatenotification', 'Checking apps for compatible updates')
+ return t('updatenotification', 'Checking apps for compatible versions')
}
if (this.appStoreDisabled) {
@@ -197,8 +198,8 @@ export default {
}
return this.missingAppUpdates.length === 0
- ? t('updatenotification', '<strong>All</strong> apps have an update for this version available', this)
- : n('updatenotification', '<strong>%n</strong> app has no update for this version available', '<strong>%n</strong> apps have no update for this version available', this.missingAppUpdates.length)
+ ? t('updatenotification', '<strong>All</strong> apps have a compatible version for this Nextcloud version available', this)
+ : n('updatenotification', '<strong>%n</strong> app has no compatible version for this Nextcloud version available', '<strong>%n</strong> apps have no compatible version for this Nextcloud version available', this.missingAppUpdates.length)
},
whatsNew() {