More Translations (#6318)

* Store selector

* Footer

* Notifications

* Checkout Appearance

* Users list

* Forms

* Emails

* Pay Button

* Edit Dictionary

* Remove newlines, fix typos

* Forms

* Pull payments and payouts

* Various pages

* Use local docs link

* Fix

* Even more translations

* Fixes #6325

* Account pages

* Notifications

* Placeholders

* Various pages and components

* Add more
This commit is contained in:
d11n
2024-10-25 15:48:53 +02:00
committed by GitHub
parent e5611f9165
commit a962e60de9
173 changed files with 1227 additions and 919 deletions

View File

@@ -43,15 +43,19 @@ namespace BTCPayServer.Models.WalletViewModels
public class NewPullPaymentModel
{
[MaxLength(30)]
[Display(Name = "Name")]
public string Name { get; set; }
[Display(Name = "Description")]
public string Description { get; set; }
[Required]
public decimal Amount
{
get; set;
}
[Display(Name = "Amount")]
public decimal Amount { get; set; }
[Required]
[ReadOnly(true)]
[Display(Name = "Currency")]
public string Currency { get; set; }
[Display(Name = "Payout Methods")]
@@ -61,12 +65,12 @@ namespace BTCPayServer.Models.WalletViewModels
[Range(0, 365 * 10)]
public long BOLT11Expiration { get; set; } = 30;
[Display(Name = "Automatically approve claims")]
public bool AutoApproveClaims { get; set; } = false;
public bool AutoApproveClaims { get; set; }
}
public class UpdatePullPaymentModel
{
[Display(Name = "Id")]
public string Id { get; set; }
public UpdatePullPaymentModel()
@@ -87,6 +91,7 @@ namespace BTCPayServer.Models.WalletViewModels
}
[MaxLength(30)]
[Display(Name = "Name")]
public string Name { get; set; }
[Display(Name = "Memo")]