mirror of
https://github.com/nextcloud/server.git
synced 2026-04-24 15:53:36 -04:00
Merge pull request #48792 from nextcloud/chore/update_mysql_setup_check_i18n
This commit is contained in:
commit
46abfc6d50
1 changed files with 2 additions and 4 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue