Improve wording

This commit is contained in:
Manfred Karrer 2016-04-24 14:50:25 +02:00
parent 447c668cbb
commit c57813f407
2 changed files with 6 additions and 2 deletions

View File

@ -889,7 +889,9 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
cancelButton2 = addButton(gridPane, ++gridRow, BSResources.get("shared.cancel"));
cancelButton2.setOnAction(e -> {
if (model.dataModel.isWalletFunded.get()) {
new Popup().warning("Are you sure, you want to cancel.")
new Popup().warning("You have already paid the funds.\n" +
"If you cancel now, your funds will be available immediately.\n" +
"Are you sure, you want to cancel.")
.closeButtonText("No")
.actionButtonText("Yes, cancel")
.onAction(() -> {

View File

@ -778,7 +778,9 @@ public class TakeOfferView extends ActivatableViewAndModel<AnchorPane, TakeOffer
cancelButton2 = addButton(gridPane, ++gridRow, BSResources.get("shared.cancel"));
cancelButton2.setOnAction(e -> {
if (model.dataModel.isWalletFunded.get()) {
new Popup().warning("Are you sure, you want to cancel.")
new Popup().warning("You have already paid the funds.\n" +
"If you cancel now, your funds will be available immediately.\n" +
"Are you sure, you want to cancel.")
.closeButtonText("No")
.actionButtonText("Yes, cancel")
.onAction(() -> {