Improve wording

This commit is contained in:
Manfred Karrer 2016-04-13 17:54:39 +02:00
parent f2b977a014
commit 48c1b2bd81
7 changed files with 9 additions and 9 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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