Skip to content

Commit 074d706

Browse files
rakeknivenbackportbot[bot]
authored andcommitted
chore(l10n): Plural needed to support multiplural languages
Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
1 parent 6f39bad commit 074d706

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/settings/lib/SetupChecks/TaskProcessingWorkerIsRunning.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function run(): SetupResult {
5757
$lastIteration = (int)$this->appConfig->getValueString('core', 'ai.taskprocessing_worker_last_iteration', lazy: true);
5858
if ($lastIteration > $this->timeFactory->now()->getTimestamp() - (60 * self::IS_RUNNING_IN_LAST_X_MINUTES)) {
5959
return SetupResult::success(
60-
$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)
60+
$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)
6161
);
6262
}
6363

0 commit comments

Comments
 (0)