diff options
author | Daniel <mail@danielkesselberg.de> | 2023-12-02 17:04:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-02 17:04:32 +0100 |
commit | 8fec42fed50b71612c2497713cb2e8716e68df65 (patch) | |
tree | a82d2a40b610990c7585ce7638bdecc37adc2082 /apps | |
parent | 4efa24bd3f0dbfd4d0f02ba21e1f527b734d9b81 (diff) | |
parent | f909520911869e6657cca909a919ac5d55801c0e (diff) | |
download | nextcloud-server-8fec42fed50b71612c2497713cb2e8716e68df65.tar.gz nextcloud-server-8fec42fed50b71612c2497713cb2e8716e68df65.zip |
Merge pull request #41971 from nextcloud/enh/upgrade-disable-web-instructions
Diffstat (limited to 'apps')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index b5f6ddc74b0..3ef1bfcfd0f 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -56,7 +56,7 @@ class="button" :class="{ hidden: !updaterEnabled }">{{ t('updatenotification', 'Download now') }}</a> <span v-if="updaterEnabled && !webUpdaterEnabled"> - {{ t('updatenotification', 'Please use the command line updater to update.') }} + {{ t('updatenotification', 'Web updater is disabled. Please use the command line updater or the appropriate update mechanism for your installation method (e.g. Docker pull) to update.') }} </span> <NcActions v-if="whatsNewData || changelogURL" :force-menu="true" |