mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-07 06:32:47 -04:00
Improve wording
This commit is contained in:
parent
f2b977a014
commit
48c1b2bd81
7 changed files with 9 additions and 9 deletions
|
@ -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(),
|
() -> 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());
|
(errorMessage) -> new Popup().error("Could not remove arbitrator.\nError message: " + errorMessage).show());
|
||||||
} else {
|
} 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();
|
"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(),
|
() -> 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());
|
(errorMessage) -> new Popup().error("Could not register arbitrator.\nError message: " + errorMessage).show());
|
||||||
} else {
|
} 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();
|
"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())
|
if (!text.isEmpty())
|
||||||
onSendMessage(text, selectedDispute);
|
onSendMessage(text, selectedDispute);
|
||||||
} else {
|
} 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();
|
"That might take up to about 2 minutes at startup.").show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -269,7 +269,7 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
|
||||||
.show();
|
.show();
|
||||||
}
|
}
|
||||||
} else {
|
} 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();
|
"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())
|
if (model.isBootstrapped())
|
||||||
offerActionHandler.onTakeOffer(offer);
|
offerActionHandler.onTakeOffer(offer);
|
||||||
else
|
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();
|
"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")
|
.closeButtonText("Don't remove the offer")
|
||||||
.show();
|
.show();
|
||||||
} else {
|
} 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();
|
"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")
|
.closeButtonText("Don't remove the offer")
|
||||||
.show();
|
.show();
|
||||||
} else {
|
} 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();
|
"That might take up to about 2 minutes at startup.").show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -237,7 +237,7 @@ public class BuyerStep2View extends TradeStepView {
|
||||||
confirmPaymentStarted();
|
confirmPaymentStarted();
|
||||||
}
|
}
|
||||||
} else {
|
} 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();
|
"That might take up to about 2 minutes at startup.").show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -245,7 +245,7 @@ public class SellerStep3View extends TradeStepView {
|
||||||
confirmPaymentReceived();
|
confirmPaymentReceived();
|
||||||
}
|
}
|
||||||
} else {
|
} 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();
|
"That might take up to about 2 minutes at startup.").show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue