From 144b5f4c8e55fb22a1d9b8e6174918154c008718 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 997f67ee2..185bd3f68 100644 --- a/lib/Service/MailService.php +++ b/lib/Service/MailService.php @@ -64,6 +64,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);