]> source.dussan.org Git - nextcloud-server.git/commitdiff
adjust wording for database checks 32439/head
authorszaimen <szaimen@e.mail.de>
Mon, 16 May 2022 17:22:23 +0000 (19:22 +0200)
committerszaimen <szaimen@e.mail.de>
Mon, 16 May 2022 17:22:23 +0000 (19:22 +0200)
Signed-off-by: szaimen <szaimen@e.mail.de>
apps/settings/lib/SetupChecks/SupportedDatabase.php

index 089fb69bbc966930babf255ee07ec14561054e0b..302797485d326d55605d9a8d465b29889ac2891d 100644 (file)
@@ -70,12 +70,12 @@ class SupportedDatabase {
 
                                if (strpos($version, 'mariadb') !== false) {
                                        if (version_compare($version, '10.2', '<')) {
-                                               $this->description = $this->l10n->t('MariaDB version "%s" is used. Nextcloud 21 will no longer support this version and requires MariaDB 10.2 or higher.', $row['Value']);
+                                               $this->description = $this->l10n->t('MariaDB version "%s" is used. Nextcloud 21 and higher do not support this version and require MariaDB 10.2 or higher.', $row['Value']);
                                                return;
                                        }
                                } else {
                                        if (version_compare($version, '8', '<')) {
-                                               $this->description = $this->l10n->t('MySQL version "%s" is used. Nextcloud 21 will no longer support this version and requires MySQL 8.0 or MariaDB 10.2 or higher.', $row['Value']);
+                                               $this->description = $this->l10n->t('MySQL version "%s" is used. Nextcloud 21 and higher do not support this version and require MySQL 8.0 or MariaDB 10.2 or higher.', $row['Value']);
                                                return;
                                        }
                                }
@@ -88,7 +88,7 @@ class SupportedDatabase {
                                $result->execute();
                                $row = $result->fetch();
                                if (version_compare($row['server_version'], '9.6', '<')) {
-                                       $this->description = $this->l10n->t('PostgreSQL version "%s" is used. Nextcloud 21 will no longer support this version and requires PostgreSQL 9.6 or higher.', $row['server_version']);
+                                       $this->description = $this->l10n->t('PostgreSQL version "%s" is used. Nextcloud 21 and higher do not support this version and require PostgreSQL 9.6 or higher.', $row['server_version']);
                                        return;
                                }
                                break;