From 57f483b3e556cc3af434a04ae96294028e231eac Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Wed, 18 Mar 2026 08:35:40 +0100 Subject: [PATCH] chore(i18n): Fix grammar in error message for file sharing Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- lib/Service/ApprovalService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/ApprovalService.php b/lib/Service/ApprovalService.php index aa3dc80d..0c7aa7c5 100644 --- a/lib/Service/ApprovalService.php +++ b/lib/Service/ApprovalService.php @@ -450,7 +450,7 @@ public function request(int $fileId, int $ruleId, ?string $userId, bool $createS } if ($createShares && !$this->utilsService->userCanShareFile($fileId, $userId)) { - return ['error' => $this->l10n->t('You can not share this file')]; + return ['error' => $this->l10n->t('You cannot share this file')]; } $rule = $this->ruleService->getRule($ruleId);