From 8e3c334fa3c6d481cc2c766ba183519d46fcbfd2 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 4 Mar 2026 16:19:45 +0100 Subject: [PATCH] =?UTF-8?q?Update=20final=20status=20to=20'Lesebest=C3=A4t?= =?UTF-8?q?igung'=20for=20read=20confirm?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed the [FINAL_STATUS] placeholder value from "Bestätigung" to the more specific "Lesebestätigung" when an envelope is read and confirmed, improving clarity in status messaging. --- EnvelopeGenerator.Application/Services/EnvelopeMailService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs b/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs index 4f73ebff..ad154298 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeMailService.cs @@ -56,7 +56,7 @@ public class EnvelopeMailService : EmailOutService, IEnvelopeMailService { _placeholders["[SIGNATURE_TYPE]"] = "Lesen und bestätigen"; _placeholders["[DOCUMENT_PROCESS]"] = string.Empty; - _placeholders["[FINAL_STATUS]"] = "Bestätigung"; + _placeholders["[FINAL_STATUS]"] = "Lesebestätigung"; _placeholders["[FINAL_ACTION]"] = "Empfänger bestätigt"; _placeholders["[REJECTED_BY_OTHERS]"] = "anderen Empfänger abgelehnt!"; _placeholders["[RECEIVER_ACTION]"] = "bestätigt";