feat: Mehrsprachige Unterstützung für den Header hinzugefügt

This commit is contained in:
Developer 02 2024-09-16 14:04:34 +02:00
parent 5ba5d2755b
commit a763d3c353
4 changed files with 8 additions and 1 deletions

View File

@ -210,6 +210,9 @@
<data name="UnexpectedError" xml:space="preserve">
<value>Ein unerwarteter Fehler ist aufgetreten.</value>
</data>
<data name="WelcomeToTheESignPortal" xml:space="preserve">
<value>Herzlich willkommen im eSign-Portal</value>
</data>
<data name="WrongAccessCode" xml:space="preserve">
<value>Ungültiger Zugangscode.</value>
</data>

View File

@ -210,6 +210,9 @@
<data name="UnexpectedError" xml:space="preserve">
<value>An unexpected error has occurred.</value>
</data>
<data name="WelcomeToTheESignPortal" xml:space="preserve">
<value>Welcome to the eSign portal</value>
</data>
<data name="WrongAccessCode" xml:space="preserve">
<value>Invalid access code.</value>
</data>

View File

@ -8,7 +8,7 @@
<div class="page container py-4 px-4">
<header class="text-center">
<div class="header-1 alert alert-secondary" role="alert">
<h3 class="text">Herzlich willkommen im eSign-Portal</h3>
<h3 class="text">@_localizer[WebKey.WelcomeToTheESignPortal]</h3>
<img class="logo" src="/img/cursor_logo.png" />
</div>
<div class="icon locked mt-4 mb-1">

View File

@ -33,5 +33,6 @@
public static readonly string RejectionInfo1_ext = nameof(RejectionInfo1_ext);
public static readonly string RejectionInfo2_ext = nameof(RejectionInfo2_ext);
public static readonly string SigningProcessTitle = nameof(SigningProcessTitle);
public static readonly string WelcomeToTheESignPortal = nameof(WelcomeToTheESignPortal);
}
}