mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
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:
@@ -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")]
|
||||
|
||||
Reference in New Issue
Block a user