update withdraw confirmation wording with translations

This commit is contained in:
woodser 2025-04-03 18:26:14 -04:00 committed by GitHub
parent 8981740b8c
commit 39c75cd71b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 18 additions and 6 deletions

View file

@ -302,10 +302,9 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
BigInteger receiverAmount = tx.getOutgoingTransfer().getDestinations().get(0).getAmount();
BigInteger fee = tx.getFee();
String messageText = Res.get("shared.sendFundsDetailsWithFee",
HavenoUtils.formatXmr(receiverAmount.add(fee), true),
HavenoUtils.formatXmr(receiverAmount, true),
withdrawToAddress,
HavenoUtils.formatXmr(fee, true),
HavenoUtils.formatXmr(receiverAmount, true));
HavenoUtils.formatXmr(fee, true));
// popup confirmation message
Popup popup = new Popup();