Improve wording

This commit is contained in:
Manfred Karrer 2016-06-11 00:16:02 +02:00
parent f5a0cd9e0f
commit bb18c41715
2 changed files with 2 additions and 2 deletions

View file

@ -581,7 +581,7 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
errorMessageListener = (o, oldValue, newValue) -> { errorMessageListener = (o, oldValue, newValue) -> {
if (newValue != null) if (newValue != null)
UserThread.runAfter(() -> new Popup().error(BSResources.get("createOffer.amountPriceBox.error.message", model.errorMessage.get()) + UserThread.runAfter(() -> new Popup().error(BSResources.get("createOffer.amountPriceBox.error.message", model.errorMessage.get()) +
"\n\nThere have no funds left your wallet yet.\n" + "\n\nNo funds have left your wallet yet.\n" +
"Please try to restart you application and check your network connection to see if you can resolve the issue.") "Please try to restart you application and check your network connection to see if you can resolve the issue.")
.show(), 100, TimeUnit.MILLISECONDS); .show(), 100, TimeUnit.MILLISECONDS);
}; };

View file

@ -324,7 +324,7 @@ class TakeOfferViewModel extends ActivatableWithDataModel<TakeOfferDataModel> im
String appendMsg = ""; String appendMsg = "";
switch (trade.getState().getPhase()) { switch (trade.getState().getPhase()) {
case PREPARATION: case PREPARATION:
appendMsg = "\n\nThere have no funds left your wallet yet.\n" + appendMsg = "\n\nNo funds have left your wallet yet.\n" +
"Please try to restart you application and check your network connection to see if you can resolve the issue."; "Please try to restart you application and check your network connection to see if you can resolve the issue.";
break; break;
case TAKER_FEE_PAID: case TAKER_FEE_PAID: