diff options
author | rakekniven <2069590+rakekniven@users.noreply.github.com> | 2025-05-25 12:55:52 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2025-05-26 10:10:15 +0200 |
commit | 4300c27333ec7ad73fefe9fa105a3dc5b3a5599f (patch) | |
tree | 3cb0d8e49043de17b94d3daadefde14e496d844f | |
parent | beefa6f4116e288932e33e3739ffe72cc9fb5a6e (diff) | |
download | nextcloud-server-backport/53001/stable31.tar.gz nextcloud-server-backport/53001/stable31.zip |
chore(18n): More natural english - fix plural typobackport/53001/stable31
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
-rw-r--r-- | apps/settings/lib/SetupChecks/TaskProcessingPickupSpeed.php | 2 |
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) { |