aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBenjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>2024-11-05 10:06:29 +0100
committerGitHub <noreply@github.com>2024-11-05 10:06:29 +0100
commit46abfc6d5094b65d8595a2d9c69d76ea34f23f16 (patch)
tree8c5aa9f7630a6a58c6ee7582bff486dc4fa3db10 /apps
parent4a44d6a6774d79a8c91cab5f94acafa271b6d4d6 (diff)
parenta40f21b4db5614eef359959f08fac8c7d5757d17 (diff)
downloadnextcloud-server-46abfc6d5094b65d8595a2d9c69d76ea34f23f16.tar.gz
nextcloud-server-46abfc6d5094b65d8595a2d9c69d76ea34f23f16.zip
Merge pull request #48792 from nextcloud/chore/update_mysql_setup_check_i18n
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/lib/SetupChecks/MysqlRowFormat.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/settings/lib/SetupChecks/MysqlRowFormat.php b/apps/settings/lib/SetupChecks/MysqlRowFormat.php
index 543b851ee92..17e7fc6696b 100644
--- a/apps/settings/lib/SetupChecks/MysqlRowFormat.php
+++ b/apps/settings/lib/SetupChecks/MysqlRowFormat.php
@@ -44,10 +44,8 @@ class MysqlRowFormat implements ISetupCheck {
}
return SetupResult::warning(
- $this->l10n->n(
- 'Table %s is not using ROW_FORMAT=Dynamic. This format offers the best database performances for Nextcloud. Please change the row format to Dynamic.',
- 'Some tables are not using ROW_FORMAT=Dynamic. This format offers the best database performances for Nextcloud. Please change the row format to Dynamic on the following tables: %s.',
- count($wrongRowFormatTables),
+ $this->l10n->t(
+ 'Incorrect row format found in your database. ROW_FORMAT=Dynamic offers the best database performances for Nextcloud. Please update row format on the following list: %s.',
[implode(', ', $wrongRowFormatTables)],
),
'https://dev.mysql.com/doc/refman/en/innodb-row-format.html',