mirror of
https://github.com/nextcloud/server.git
synced 2026-07-12 02:57:52 -04:00
fix(l10n): Fix plural
Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
This commit is contained in:
parent
03bd626399
commit
a5525df7eb
1 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@ class TaskProcessingSuccessRate implements ISetupCheck {
|
|||
if ($taskCount === 0) {
|
||||
return SetupResult::success(
|
||||
$this->l10n->n(
|
||||
'No scheduled tasks in the last day.',
|
||||
'No scheduled tasks in the last %n day.',
|
||||
'No scheduled tasks in the last %n days.',
|
||||
$lastNDays
|
||||
)
|
||||
|
|
@ -71,7 +71,7 @@ class TaskProcessingSuccessRate implements ISetupCheck {
|
|||
if (($failedCount / $taskCount) < self::MAX_FAILURE_PERCENTAGE) {
|
||||
return SetupResult::success(
|
||||
$this->l10n->n(
|
||||
'Most tasks were successful in the last day.',
|
||||
'Most tasks were successful in the last %n day.',
|
||||
'Most tasks were successful in the last %n days.',
|
||||
$lastNDays
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue