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) -> {
if (newValue != null)
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.")
.show(), 100, TimeUnit.MILLISECONDS);
};

View File

@ -324,7 +324,7 @@ class TakeOfferViewModel extends ActivatableWithDataModel<TakeOfferDataModel> im
String appendMsg = "";
switch (trade.getState().getPhase()) {
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.";
break;
case TAKER_FEE_PAID: