mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 02:12:00 +01:00
Merge pull request #1694 from ManfredKarrer/faster-payment-info
Add info for Faster Payment that the receivers name is not required
This commit is contained in:
commit
1504e4992a
@ -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
|
||||
|
@ -58,6 +58,7 @@ import bisq.core.network.MessageState;
|
||||
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 @@ public class BuyerStep2View extends TradeStepView {
|
||||
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) +
|
||||
|
Loading…
Reference in New Issue
Block a user