mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-19 23:36:00 -04:00
Improve wording
This commit is contained in:
parent
f2b977a014
commit
48c1b2bd81
@ -224,7 +224,7 @@ public class ArbitratorRegistrationView extends ActivatableViewAndModel<VBox, Ar
|
||||
() -> new Popup().feedback("You have successfully removed your arbitrator from the P2P network.").show(),
|
||||
(errorMessage) -> new Popup().error("Could not remove arbitrator.\nError message: " + errorMessage).show());
|
||||
} else {
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
}
|
||||
@ -235,7 +235,7 @@ public class ArbitratorRegistrationView extends ActivatableViewAndModel<VBox, Ar
|
||||
() -> new Popup().feedback("You have successfully registered your arbitrator to the P2P network.").show(),
|
||||
(errorMessage) -> new Popup().error("Could not register arbitrator.\nError message: " + errorMessage).show());
|
||||
} else {
|
||||
new Popup().information("You need to wait until you are bootstrapped to the network.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
}
|
||||
|
@ -417,7 +417,7 @@ public class TraderDisputeView extends ActivatableView<VBox, Void> {
|
||||
if (!text.isEmpty())
|
||||
onSendMessage(text, selectedDispute);
|
||||
} else {
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
});
|
||||
|
@ -269,7 +269,7 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
|
||||
.show();
|
||||
}
|
||||
} else {
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
}
|
||||
|
@ -322,7 +322,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
|
||||
if (model.isBootstrapped())
|
||||
offerActionHandler.onTakeOffer(offer);
|
||||
else
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
|
||||
@ -335,7 +335,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
|
||||
.closeButtonText("Don't remove the offer")
|
||||
.show();
|
||||
} else {
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ public class OpenOffersView extends ActivatableViewAndModel<VBox, OpenOffersView
|
||||
.closeButtonText("Don't remove the offer")
|
||||
.show();
|
||||
} else {
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
}
|
||||
|
@ -237,7 +237,7 @@ public class BuyerStep2View extends TradeStepView {
|
||||
confirmPaymentStarted();
|
||||
}
|
||||
} else {
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
}
|
||||
|
@ -245,7 +245,7 @@ public class SellerStep3View extends TradeStepView {
|
||||
confirmPaymentReceived();
|
||||
}
|
||||
} else {
|
||||
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
|
||||
new Popup().information("You need to wait until you are fully connected to the network.\n" +
|
||||
"That might take up to about 2 minutes at startup.").show();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user