Files
btcpayserver/BTCPayServer/Views/UIAccount/SignedOut.cshtml
Dennis Reimann a9fbba5825 UI: Fix and unify localizer usage for page titles
Issue was caused by duplicate translation through a combination of `StringLocalizer` and `text-translate="true"` usage. Fixes #6622.
2025-03-11 10:54:17 +01:00

9 lines
161 B
Plaintext

@{
ViewData["Title"] = StringLocalizer["Signed out"];
}
<h2>@ViewData["Title"]</h2>
<p text-translate="true">
You have successfully signed out.
</p>