mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-03 22:24:27 +01:00
Issue was caused by duplicate translation through a combination of `StringLocalizer` and `text-translate="true"` usage. Fixes #6622.
9 lines
161 B
Plaintext
9 lines
161 B
Plaintext
@{
|
|
ViewData["Title"] = StringLocalizer["Signed out"];
|
|
}
|
|
|
|
<h2>@ViewData["Title"]</h2>
|
|
<p text-translate="true">
|
|
You have successfully signed out.
|
|
</p>
|