btcpayserver/BTCPayServer/Views/UIPublic/PayButtonHandle.cshtml
d11n 77fba4aee3
Add more translations (#6302)
* Newlines

* Dashboard

* Add more translations

* Moar

* Remove   from translated texts

* Dictionary controller translations

* Batch 1 of controller updates

* Batch 2 of controller updates

* Component translations

* Batch 3 of controller updates

* Fixes
2024-10-17 22:51:40 +09:00

15 lines
394 B
Plaintext

@{
Layout = "_LayoutSimple";
var allErrors = ViewData.ModelState.Values.SelectMany(v => v.Errors.Select(b => b.ErrorMessage));
}
<div class="row">
<div class="col-lg-12">
<h2 text-translate="true">Pay Button request failed</h2>
@foreach (var error in allErrors)
{
<div class="alert alert-danger mt-4">@error</div>
}
</div>
</div>