fix Res.get() warning on pmt confirmation w/ "Preparing confirmation..."
This commit is contained in:
parent
f91db182d8
commit
b18e9ad4bf
@ -121,6 +121,7 @@ shared.makerDepositTransactionId=Maker's deposit transaction ID
|
||||
shared.takerDepositTransactionId=Taker's deposit transaction ID
|
||||
shared.TheBTCBuyer=The XMR buyer
|
||||
shared.You=You
|
||||
shared.preparingConfirmation=Preparing confirmation...
|
||||
shared.sendingConfirmation=Sending confirmation...
|
||||
shared.sendingConfirmationAgain=Please send confirmation again
|
||||
shared.exportCSV=Export to CSV
|
||||
|
@ -157,7 +157,7 @@ public class BuyerStep2View extends TradeStepView {
|
||||
switch (state) {
|
||||
case BUYER_CONFIRMED_IN_UI_PAYMENT_SENT:
|
||||
busyAnimation.play();
|
||||
statusLabel.setText("Confirming payment sent. This can take up to a few minutes. Please wait...");
|
||||
statusLabel.setText(Res.get("shared.preparingConfirmation"));
|
||||
break;
|
||||
case BUYER_SENT_PAYMENT_SENT_MSG:
|
||||
busyAnimation.play();
|
||||
|
@ -120,7 +120,7 @@ public class SellerStep3View extends TradeStepView {
|
||||
switch (state) {
|
||||
case SELLER_CONFIRMED_IN_UI_PAYMENT_RECEIPT:
|
||||
busyAnimation.play();
|
||||
statusLabel.setText(Res.get("Confirming payment received. This can take up to a few minutes. Please wait..."));
|
||||
statusLabel.setText(Res.get("shared.preparingConfirmation"));
|
||||
break;
|
||||
case SELLER_SENT_PAYMENT_RECEIVED_MSG:
|
||||
busyAnimation.play();
|
||||
|
Loading…
Reference in New Issue
Block a user