1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Merge pull request #6461 from Crizz0/ticket/17067

[ticket/17067] Add lang variable for rows per second & searchindex:
This commit is contained in:
Marc Alexander
2023-02-06 20:07:12 +01:00
committed by GitHub
3 changed files with 4 additions and 2 deletions

View File

@@ -138,7 +138,7 @@ class create extends command
$this->state_helper->update_counter($status['post_counter']);
$progress->setProgress($status['post_counter']);
$progress->setMessage(round($status['rows_per_second'], 2) . ' rows/s');
$progress->setMessage($this->language->lang('CLI_ROWS_PER_SECOND', round($status['rows_per_second'], 2)));
}
$progress->finish();

View File

@@ -138,7 +138,7 @@ class delete extends command
$this->state_helper->update_counter($status['post_counter']);
$progress->setProgress($status['post_counter']);
$progress->setMessage(round($status['rows_per_second'], 2) . ' rows/s');
$progress->setMessage($this->language->lang('CLI_ROWS_PER_SECOND', round($status['rows_per_second'], 2)));
}
$progress->finish();