Skip to content

Commit

Permalink
chore(setupchecks): update translation for MySQL row format check
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
  • Loading branch information
Altahrim committed Oct 18, 2024
1 parent 7e99fd3 commit d3ece87
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions apps/settings/lib/SetupChecks/MysqlRowFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ public function run(): SetupResult {
}

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',
Expand Down

0 comments on commit d3ece87

Please sign in to comment.