From d735f52ea1f20d49b7395957713a3d7a3973d206 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Mon, 13 Jan 2025 09:25:54 -0300 Subject: [PATCH] chore: add translator note Signed-off-by: Vitor Mattos --- lib/Service/MailService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Service/MailService.php b/lib/Service/MailService.php index 592af8a74d..624b50b6a2 100644 --- a/lib/Service/MailService.php +++ b/lib/Service/MailService.php @@ -48,6 +48,7 @@ private function getFileById(int $fileId): File { */ public function notifySignDataUpdated(SignRequest $data, string $email): void { $emailTemplate = $this->mailer->createEMailTemplate('settings.TestEmail'); + // TRANSLATORS The subject of the email that is sent after changes are made to the signature request that may affect something for the signer who will sign the document. Some possible reasons: URL for signature changed (when the URL expires), the person who requested the signature sent a notification $emailTemplate->setSubject($this->l10n->t('LibreSign: Changes into a file for you to sign')); $emailTemplate->addHeader(); $emailTemplate->addHeading($this->l10n->t('File to sign'), false);