From 3dbb8a0cc1b6ce948a02b13018225db21cd5c04e Mon Sep 17 00:00:00 2001 From: Zaxounette <51208677+Zaxounette@users.noreply.github.com> Date: Sat, 8 Aug 2020 12:47:28 +0200 Subject: [PATCH 1/2] Rewording of the success-claim-message for clarity --- BTCPayServer/Controllers/PullPaymentController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/PullPaymentController.cs b/BTCPayServer/Controllers/PullPaymentController.cs index 034bb5345..fe8bebd5c 100644 --- a/BTCPayServer/Controllers/PullPaymentController.cs +++ b/BTCPayServer/Controllers/PullPaymentController.cs @@ -133,7 +133,7 @@ namespace BTCPayServer.Controllers { TempData.SetStatusMessageModel(new StatusMessageModel() { - Message = $"You posted a claim of {_currencyNameTable.DisplayFormatCurrency(vm.ClaimedAmount, ppBlob.Currency)} to {vm.Destination}, this will get fullfilled later.", + Message = $"Your claim request of {_currencyNameTable.DisplayFormatCurrency(vm.ClaimedAmount, ppBlob.Currency)} to {vm.Destination} has been submitted and is awaiting approval.", Severity = StatusMessageModel.StatusSeverity.Success }); } From ea9836a701d899058fc6e89529d470306d0855b7 Mon Sep 17 00:00:00 2001 From: Zaxounette <51208677+Zaxounette@users.noreply.github.com> Date: Sat, 8 Aug 2020 12:50:55 +0200 Subject: [PATCH 2/2] Subtle term change in Awaiting-payout-notification --- BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs b/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs index bec68b5f7..df70ac3fe 100644 --- a/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs +++ b/BTCPayServer/Services/Notifications/Blobs/PayoutNotification.cs @@ -20,7 +20,7 @@ namespace BTCPayServer.Services.Notifications.Blobs public override string NotificationType => "payout"; protected override void FillViewModel(PayoutNotification notification, NotificationViewModel vm) { - vm.Body = "A new payout is awaiting for payment"; + vm.Body = "A new payout is awaiting for approval"; vm.ActionLink = _linkGenerator.GetPathByAction(nameof(WalletsController.Payouts), "Wallets", new { walletId = new WalletId(notification.StoreId, notification.PaymentMethod) }, _options.RootPath);