From ecfc180664bdca297ab4aee3b473ad5268e54336 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 5f0aebf6..b41cd2a7 100644 --- a/lib/Service/ApprovalService.php +++ b/lib/Service/ApprovalService.php @@ -452,7 +452,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);