Add localized messages for document signing success

Added new resource strings for document signing success and confirmation messages in de-DE, en-US, and fr-FR. Updated EnvelopeSigned.cshtml to use these localized strings instead of hardcoded text.
This commit is contained in:
2026-02-13 12:00:54 +01:00
parent f1ceaab70a
commit aba68faa4d
4 changed files with 20 additions and 2 deletions

View File

@@ -279,4 +279,10 @@
<data name="AuthenticatorSetup_Suffix" xml:space="preserve"> <data name="AuthenticatorSetup_Suffix" xml:space="preserve">
<value>um Ihre Authenticator-App einzurichten.</value> <value>um Ihre Authenticator-App einzurichten.</value>
</data> </data>
<data name="DocumentSuccessfullySigned" xml:space="preserve">
<value>Dokument erfolgreich signiert!</value>
</data>
<data name="DocumentSignedConfirmationMessage" xml:space="preserve">
<value>Sie haben das Dokument signiert. Im Anschluss erhalten Sie eine schriftliche Bestätigung.</value>
</data>
</root> </root>

View File

@@ -279,4 +279,10 @@
<data name="AuthenticatorSetup_Suffix" xml:space="preserve"> <data name="AuthenticatorSetup_Suffix" xml:space="preserve">
<value>to set up your authenticator app.</value> <value>to set up your authenticator app.</value>
</data> </data>
<data name="DocumentSuccessfullySigned" xml:space="preserve">
<value>Document successfully signed!</value>
</data>
<data name="DocumentSignedConfirmationMessage" xml:space="preserve">
<value>You have signed the document. Afterwards, you will receive a written confirmation.</value>
</data>
</root> </root>

View File

@@ -279,4 +279,10 @@
<data name="AuthenticatorSetup_Suffix" xml:space="preserve"> <data name="AuthenticatorSetup_Suffix" xml:space="preserve">
<value>pour configurer votre application d'authentification.</value> <value>pour configurer votre application d'authentification.</value>
</data> </data>
<data name="DocumentSuccessfullySigned" xml:space="preserve">
<value>Document signé avec succès!</value>
</data>
<data name="DocumentSignedConfirmationMessage" xml:space="preserve">
<value>Vous avez signé le document. Vous recevrez ensuite une confirmation écrite.</value>
</data>
</root> </root>

View File

@@ -9,9 +9,9 @@
<path d="M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l7-7z" /> <path d="M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l7-7z" />
</svg> </svg>
</div> </div>
<h1>Dokument erfolgreich signiert!</h1> <h1>@_localizer["DocumentSuccessfullySigned"]</h1>
</header> </header>
<section class="text-center"> <section class="text-center">
<p>Sie haben das Dokument signiert. Im Anschluss erhalten Sie eine schriftliche Bestätigung.</p> <p>@_localizer["DocumentSignedConfirmationMessage"]</p>
</section> </section>
</div> </div>