aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2025-05-25 20:07:51 +0200
committerGitHub <noreply@github.com>2025-05-25 20:07:51 +0200
commit21f36fc3325d5b8a088246c4f1646925e445dcf7 (patch)
treed7d9de62ef8ca2e132e8dc81e141f9349ad38e6d
parent0ca6f7f9c5c497273d6b83985f25ad14d0155091 (diff)
parent4261c9d4fa34585ad7de357794cdcb5b5feaee0d (diff)
downloadnextcloud-server-21f36fc3325d5b8a088246c4f1646925e445dcf7.tar.gz
nextcloud-server-21f36fc3325d5b8a088246c4f1646925e445dcf7.zip
Merge pull request #53108 from nextcloud/rakekniven-patch-2
chore(18n): More natural english - fix plural typo
-rw-r--r--apps/settings/lib/SetupChecks/TaskProcessingPickupSpeed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/TaskProcessingPickupSpeed.php b/apps/settings/lib/SetupChecks/TaskProcessingPickupSpeed.php
index 4fb2b10cf33..83168ac0f3e 100644
--- a/apps/settings/lib/SetupChecks/TaskProcessingPickupSpeed.php
+++ b/apps/settings/lib/SetupChecks/TaskProcessingPickupSpeed.php
@@ -38,7 +38,7 @@ class TaskProcessingPickupSpeed implements ISetupCheck {
$tasks = $this->taskProcessingManager->getTasks(userId: '', scheduleAfter: $this->timeFactory->now()->getTimestamp() - 60 * 60 * self::TIME_SPAN); // userId: '' means no filter, whereas null would mean guest
$taskCount = count($tasks);
if ($taskCount === 0) {
- return SetupResult::success($this->l10n->n('No scheduled tasks in the last %n hours.', 'No scheduled tasks in the last %n hours.', self::TIME_SPAN));
+ return SetupResult::success($this->l10n->n('No scheduled tasks in the last %n hour.', 'No scheduled tasks in the last %n hours.', self::TIME_SPAN));
}
$slowCount = 0;
foreach ($tasks as $task) {