refactor(_layout.cshtml): Datenschutz-Link in der Fußzeile aktualisiert, unterstützt mehrere Sprachen

This commit is contained in:
Developer 02
2024-11-25 15:24:18 +01:00
parent 1f57914f9e
commit 360bb9b3d8
4 changed files with 8 additions and 1 deletions

View File

@@ -97,7 +97,7 @@
}
</ul>
</div>
<a href="/privacy-policy.de-DE.html" target="_blank">Datenschutz</a>
<a href="/privacy-policy.@(userCulture?.Language).html" target="_blank">@_localizer[WebKey.Privacy]</a>
</footer>
</body>
</html>

View File

@@ -36,5 +36,6 @@
public static readonly string WelcomeToTheESignPortal = nameof(WelcomeToTheESignPortal);
public static readonly string ViewDoc = nameof(ViewDoc);
public static readonly string HomePageDescription = nameof(HomePageDescription);
public static readonly string Privacy = nameof(Privacy);
}
}