From e4cc5b0ca0d93347c3e2bd10324c0fa7a14e3965 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Herbinet?= <33763786+Jerome-Herbinet@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:59:27 +0200 Subject: [PATCH] Ending wording with "you via a team" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> --- lib/Service/SendMailService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Service/SendMailService.php b/lib/Service/SendMailService.php index 90b0d98fb..2a94835cc 100644 --- a/lib/Service/SendMailService.php +++ b/lib/Service/SendMailService.php @@ -158,12 +158,12 @@ private function generateMailExitingShares( $emailTemplate->addHeader(); if ($multiple) { - $text = $this->l10n->t('%s shared multiple files with "%s".', [$author]); + $text = $this->l10n->t('%s shared multiple files with you via a team.', [$author]); } else { - $text = $this->l10n->t('%s shared a file with "%s".', [$author]); + $text = $this->l10n->t('%s shared a file with you via a team.', [$author]); } - $text = $this->l10n->t('%s shared multiple files with "%s".', [$author]); + $text = $this->l10n->t('%s shared multiple files with you via a team.', [$author]); $emailTemplate->addBodyText(htmlspecialchars($text), $text); return $emailTemplate;