diff --git a/BTCPayServer/Models/ServerViewModels/LndServicesViewModel.cs b/BTCPayServer/Models/ServerViewModels/LndServicesViewModel.cs index 6ddcfd8a5..6c638c016 100644 --- a/BTCPayServer/Models/ServerViewModels/LndServicesViewModel.cs +++ b/BTCPayServer/Models/ServerViewModels/LndServicesViewModel.cs @@ -5,6 +5,7 @@ namespace BTCPayServer.Models.ServerViewModels public class LndServicesViewModel { public string Host { get; set; } + [Display(Name = "Use SSL")] public bool SSL { get; set; } public string Macaroon { get; set; } public string AdminMacaroon { get; set; } diff --git a/BTCPayServer/Models/StoreViewModels/CheckoutExperienceViewModel.cs b/BTCPayServer/Models/StoreViewModels/CheckoutExperienceViewModel.cs index 928bbf5a8..a3664e7a2 100644 --- a/BTCPayServer/Models/StoreViewModels/CheckoutExperienceViewModel.cs +++ b/BTCPayServer/Models/StoreViewModels/CheckoutExperienceViewModel.cs @@ -30,18 +30,17 @@ namespace BTCPayServer.Models.StoreViewModels [Display(Name = "Default payment method on checkout")] public string DefaultPaymentMethod { get; set; } - - + [Display(Name = "Requires a refund email")] public bool RequiresRefundEmail { get; set; } - [Display(Name = "Display lightning payment amounts in Satoshis")] + [Display(Name = "Display Lightning payment amounts in Satoshis")] public bool LightningAmountInSatoshi { get; set; } - [Display(Name = "Add hop hints for private channels to the lightning invoice")] + [Display(Name = "Add hop hints for private channels to the Lightning invoice")] public bool LightningPrivateRouteHints { get; set; } - [Display(Name = "Include lightning invoice fallback to on-chain BIP21 payment url")] + [Display(Name = "Include Lightning invoice fallback to on-chain BIP21 payment URL")] public bool OnChainWithLnInvoiceFallback { get; set; } [Display(Name = "Only enable the payment method after user explicitly chooses it")] diff --git a/BTCPayServer/Views/Account/ForgotPassword.cshtml b/BTCPayServer/Views/Account/ForgotPassword.cshtml index 1f05ffc78..dd3fead6a 100644 --- a/BTCPayServer/Views/Account/ForgotPassword.cshtml +++ b/BTCPayServer/Views/Account/ForgotPassword.cshtml @@ -23,7 +23,7 @@