Improve wording

This commit is contained in:
Manfred Karrer 2016-03-31 22:22:36 +02:00
parent edbb7ddcc7
commit 1d57bd194e
6 changed files with 7 additions and 7 deletions

View File

@ -228,7 +228,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 your are bootstrapped to the network.\n" +
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
"That might take up to about 2 minutes at startup.").show();
}
}

View File

@ -429,7 +429,7 @@ public class TraderDisputeView extends ActivatableView<VBox, Void> {
if (!text.isEmpty())
onSendMessage(text, selectedDispute);
} else {
new Popup().information("You need to wait until your are bootstrapped to the network.\n" +
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
"That might take up to about 2 minutes at startup.").show();
}
});

View File

@ -320,7 +320,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
if (model.isBootstrapped())
offerActionHandler.onTakeOffer(offer);
else
new Popup().information("You need to wait until your are bootstrapped to the network.\n" +
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
"That might take up to about 2 minutes at startup.").show();
}
@ -333,7 +333,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
.closeButtonText("Don't remove the offer")
.show();
} else {
new Popup().information("You need to wait until your are bootstrapped to the network.\n" +
new Popup().information("You need to wait until bootstrapping to the network is completed.\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 your are bootstrapped to the network.\n" +
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
"That might take up to about 2 minutes at startup.").show();
}
}

View File

@ -235,7 +235,7 @@ public class BuyerStep2View extends TradeStepView {
confirmPaymentStarted();
}
} else {
new Popup().information("You need to wait until your are bootstrapped to the network.\n" +
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
"That might take up to about 2 minutes at startup.").show();
}
}

View File

@ -244,7 +244,7 @@ public class SellerStep3View extends TradeStepView {
confirmPaymentReceived();
}
} else {
new Popup().information("You need to wait until your are bootstrapped to the network.\n" +
new Popup().information("You need to wait until bootstrapping to the network is completed.\n" +
"That might take up to about 2 minutes at startup.").show();
}
}