diff --git a/core/src/main/resources/i18n/displayStrings.properties b/core/src/main/resources/i18n/displayStrings.properties index 7cc5146db88..edaa414fe66 100644 --- a/core/src/main/resources/i18n/displayStrings.properties +++ b/core/src/main/resources/i18n/displayStrings.properties @@ -531,6 +531,9 @@ portfolio.pending.step2_buyer.halCashInfo.headline=Send HalCash code portfolio.pending.step2_buyer.halCashInfo.msg=You need to send a text message with the HalCash code as well as the \ trade ID ({0}) to the BTC seller.\nThe seller''s mobile nr. is {1}.\n\n\ Did you send the code to the seller? +portfolio.pending.step2_buyer.fasterPaymentsHolderNameInfo=Some banks might require the receivers name. \ + The UK sort code and account number is sufficient for a Faster Payment transfer and the receivers name is not verified \ + by any of the banks. portfolio.pending.step2_buyer.confirmStart.headline=Confirm that you have started the payment portfolio.pending.step2_buyer.confirmStart.msg=Did you initiate the {0} payment to your trading partner? portfolio.pending.step2_buyer.confirmStart.yes=Yes, I have started the payment diff --git a/desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/steps/buyer/BuyerStep2View.java b/desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/steps/buyer/BuyerStep2View.java index 23b0fd4abca..937def2091a 100644 --- a/desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/steps/buyer/BuyerStep2View.java +++ b/desktop/src/main/java/bisq/desktop/main/portfolio/pendingtrades/steps/buyer/BuyerStep2View.java @@ -58,6 +58,7 @@ import bisq.core.payment.payload.CashDepositAccountPayload; import bisq.core.payment.payload.CryptoCurrencyAccountPayload; import bisq.core.payment.payload.F2FAccountPayload; +import bisq.core.payment.payload.FasterPaymentsAccountPayload; import bisq.core.payment.payload.HalCashAccountPayload; import bisq.core.payment.payload.MoneyGramAccountPayload; import bisq.core.payment.payload.PaymentAccountPayload; @@ -522,6 +523,17 @@ private void showPopup() { accountDetails + paymentDetailsForTradePopup + ".\n\n" + copyPaste; + } else if (paymentAccountPayload instanceof FasterPaymentsAccountPayload) { + //noinspection UnusedAssignment + message += Res.get("portfolio.pending.step2_buyer.bank", amount) + + accountDetails + + paymentDetailsForTradePopup + ".\n\n" + + Res.get("portfolio.pending.step2_buyer.fasterPaymentsHolderNameInfo") + "\n\n" + + copyPaste + "\n\n" + + tradeId + paddedId + + assign + + refTextWarn + "\n\n" + + fees; } else { //noinspection UnusedAssignment message += Res.get("portfolio.pending.step2_buyer.bank", amount) +