fix Res.get() warning on pmt confirmation w/ "Preparing confirmation..."

This commit is contained in:
woodser 2023-03-06 20:02:30 -05:00
parent f91db182d8
commit b18e9ad4bf
3 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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();

View File

@ -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();