update browser warning

Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
szaimen 2022-10-24 17:42:41 +02:00 committed by Simon L. (Rebase PR Action)
parent 4344a54a1d
commit 88a0e773c0
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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>