Add localization for "Creator" and "Date" labels

Added "Creator" and "Date" resource strings to de-DE, en-US, and fr-FR resource files. Updated DebugEnvelopes.cshtml to use localized labels instead of hardcoded German text for creator and date fields.
This commit is contained in:
2026-02-13 14:21:54 +01:00
parent 41cf52fd41
commit a2e68d275f
4 changed files with 20 additions and 2 deletions

View File

@@ -333,4 +333,10 @@
<data name="ConnectionValidityExpired" xml:space="preserve">
<value>Die Gültigkeitsdauer der Verbindung ist abgelaufen.</value>
</data>
<data name="Creator" xml:space="preserve">
<value>Ersteller</value>
</data>
<data name="Date" xml:space="preserve">
<value>Datum</value>
</data>
</root>

View File

@@ -333,4 +333,10 @@
<data name="ConnectionValidityExpired" xml:space="preserve">
<value>The session has expired.</value>
</data>
<data name="Creator" xml:space="preserve">
<value>Creator</value>
</data>
<data name="Date" xml:space="preserve">
<value>Date</value>
</data>
</root>

View File

@@ -333,4 +333,10 @@
<data name="ConnectionValidityExpired" xml:space="preserve">
<value>La durée de validité de la connexion est expirée.</value>
</data>
<data name="Creator" xml:space="preserve">
<value>Créateur</value>
</data>
<data name="Date" xml:space="preserve">
<value>Date</value>
</data>
</root>

View File

@@ -32,8 +32,8 @@
<section>
<article class="envelope">
<strong><a href="/EnvelopeKey/@encodeEnvelopeKey(envelope)">@envelope.Title</a></strong>
<div><strong>Ersteller</strong> @envelope.User.Email</div>
<div><strong>Datum</strong> @envelope.AddedWhen</div>
<div><strong>@_localizer["Creator"]</strong> @envelope.User.Email</div>
<div><strong>@_localizer["Date"]</strong> @envelope.AddedWhen</div>
</article>
</section>