diff options
author | Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> | 2024-10-18 14:19:34 +0200 |
---|---|---|
committer | Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> | 2024-10-30 09:56:02 +0100 |
commit | a40f21b4db5614eef359959f08fac8c7d5757d17 (patch) | |
tree | 5985dacab2e5d8c58f073c9e055af0d7c2466c95 /apps/settings | |
parent | 14ff0e49a62ec5e507ec785e2035e3da1ddb3ce7 (diff) | |
download | nextcloud-server-a40f21b4db5614eef359959f08fac8c7d5757d17.tar.gz nextcloud-server-a40f21b4db5614eef359959f08fac8c7d5757d17.zip |
chore(setupchecks): update translation for MySQL row format checkchore/update_mysql_setup_check_i18n
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/lib/SetupChecks/MysqlRowFormat.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/settings/lib/SetupChecks/MysqlRowFormat.php b/apps/settings/lib/SetupChecks/MysqlRowFormat.php index c7746cded72..da5af86b382 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', |