Skip to content

Commit 60f9a61

Browse files
Merge pull request #60800 from nextcloud/backport/60027/stable34
[stable34] chore(l10n): Plural needed to support multiplural languages
2 parents 6f39bad + 074d706 commit 60f9a61

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)