mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
chore(l10n): Plural needed to support multiplural languages
Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
This commit is contained in:
parent
6f39bad9d0
commit
074d706089
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ class TaskProcessingWorkerIsRunning implements ISetupCheck {
|
|||
$lastIteration = (int)$this->appConfig->getValueString('core', 'ai.taskprocessing_worker_last_iteration', lazy: true);
|
||||
if ($lastIteration > $this->timeFactory->now()->getTimestamp() - (60 * self::IS_RUNNING_IN_LAST_X_MINUTES)) {
|
||||
return SetupResult::success(
|
||||
$this->l10n->n('The Task Processing worker has run in the last minute.', 'The Task Processing worker has run in the last %n minutes.', self::IS_RUNNING_IN_LAST_X_MINUTES)
|
||||
$this->l10n->n('The Task Processing worker has run in the last %n minute.', 'The Task Processing worker has run in the last %n minutes.', self::IS_RUNNING_IN_LAST_X_MINUTES)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue