diff options
author | szaimen <szaimen@e.mail.de> | 2022-10-24 17:42:41 +0200 |
---|---|---|
committer | Simon L. (Rebase PR Action) <szaimen@e.mail.de> | 2022-10-25 23:01:29 +0000 |
commit | 88a0e773c0f25b65966355e1ee1cbfec9039a080 (patch) | |
tree | 634aeb7a0a13c828c0ee1aa7ea909e1dc360dce9 | |
parent | 4344a54a1df3df42b4a10b40c412f3a3f590e777 (diff) | |
download | nextcloud-server-88a0e773c0f25b65966355e1ee1cbfec9039a080.tar.gz nextcloud-server-88a0e773c0f25b65966355e1ee1cbfec9039a080.zip |
update browser warning
Signed-off-by: szaimen <szaimen@e.mail.de>
-rw-r--r-- | config/config.sample.php | 4 | ||||
-rw-r--r-- | core/src/views/UnsupportedBrowser.vue | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 016a00c6ad3..12bcdba7380 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2183,8 +2183,8 @@ $CONFIG = [ 'login_form_autocomplete' => true, /** - * If your user is using an outdated browser, a warning will be shown - * to offer some guidance to upgrade and ensure a proper Nextcloud experience. + * If your user is using an outdated or unsupported browser, a warning will be shown + * to offer some guidance to upgrade or switch and ensure a proper Nextcloud experience. * They can still bypass it after they have read the warning. * * Simply set this property to "true", if you want to turn this feature off. diff --git a/core/src/views/UnsupportedBrowser.vue b/core/src/views/UnsupportedBrowser.vue index dac2593b029..10f2b24decc 100644 --- a/core/src/views/UnsupportedBrowser.vue +++ b/core/src/views/UnsupportedBrowser.vue @@ -29,10 +29,10 @@ <template #action> <div> <h2> - {{ t('core', 'Please upgrade to a more recent browser') }} + {{ t('core', 'Browser unsupported! Please upgrade to a more recent version or switch to a supported one!') }} </h2> <NcButton class="content-unsupported-browser__continue" type="primary" @click="forceBrowsing"> - {{ t('core', 'Continue with this outdated browser') }} + {{ t('core', 'Continue with this unsupported browser') }} </NcButton> </div> |