diff options
author | Simon L <szaimen@e.mail.de> | 2022-05-19 17:52:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 17:52:50 +0200 |
commit | 0f52d5e548f88c23523341b77dd9a156200ad127 (patch) | |
tree | 2816365bf12307dce41d0cdf54ab09259a119a29 /apps | |
parent | 6beb5273538d97bfcf0c1224b1ffad0a769de9c6 (diff) | |
parent | 580f090f5eb3058be05bd7d1c96b4dd3ac4c0832 (diff) | |
download | nextcloud-server-0f52d5e548f88c23523341b77dd9a156200ad127.tar.gz nextcloud-server-0f52d5e548f88c23523341b77dd9a156200ad127.zip |
Merge pull request #32457 from nextcloud/backport/32439/stable24
[stable24] adjust wording for database checks
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/lib/SetupChecks/SupportedDatabase.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/lib/SetupChecks/SupportedDatabase.php b/apps/settings/lib/SetupChecks/SupportedDatabase.php index 089fb69bbc9..302797485d3 100644 --- a/apps/settings/lib/SetupChecks/SupportedDatabase.php +++ b/apps/settings/lib/SetupChecks/SupportedDatabase.php @@ -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; |