mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 02:12:00 +01:00
Improve wording
This commit is contained in:
parent
447c668cbb
commit
c57813f407
@ -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(() -> {
|
||||
|
@ -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(() -> {
|
||||
|
Loading…
Reference in New Issue
Block a user