mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Improve wording
This commit is contained in:
parent
b7e87c51ad
commit
4cac7f8655
3 changed files with 4 additions and 5 deletions
|
@ -157,7 +157,6 @@ public class SeedWordsView extends ActivatableView<GridPane, Void> {
|
|||
DeterministicSeed keyChainSeed = walletService.getWallet().getKeyChainSeed();
|
||||
// wallet creation date is not encrypted
|
||||
walletCreationDate = Instant.ofEpochSecond(keyChainSeed.getCreationTimeSeconds()).atZone(ZoneId.systemDefault()).toLocalDate();
|
||||
log.error("walletCreationDate " + walletCreationDate);
|
||||
if (keyChainSeed.isEncrypted()) {
|
||||
askForPassword();
|
||||
} else {
|
||||
|
|
|
@ -207,7 +207,7 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
|
|||
imageView.setId("image-buy-large");
|
||||
|
||||
placeOfferButton.setId("buy-button-big");
|
||||
placeOfferButton.setText("Review place offer for buying bitcoin");
|
||||
placeOfferButton.setText("Review offer for buying bitcoin");
|
||||
nextButton.setId("buy-button");
|
||||
} else {
|
||||
imageView.setId("image-sell-large");
|
||||
|
@ -215,7 +215,7 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
|
|||
totalToPayTextField.setPromptText(BSResources.get("createOffer.fundsBox.totalsNeeded.prompt"));
|
||||
|
||||
placeOfferButton.setId("sell-button-big");
|
||||
placeOfferButton.setText("Review place offer for selling bitcoin");
|
||||
placeOfferButton.setText("Review offer for selling bitcoin");
|
||||
nextButton.setId("sell-button");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -244,8 +244,8 @@ public class OfferDetailsWindow extends Overlay<OfferDetailsWindow> {
|
|||
boolean isBuyOffer = offer.getDirection() == Offer.Direction.BUY;
|
||||
boolean isBuyerRole = isPlaceOffer ? isBuyOffer : !isBuyOffer;
|
||||
|
||||
String placeOfferButtonText = isBuyerRole ? "Confirm place offer for buying bitcoin" : "Confirm place offer for selling bitcoin";
|
||||
String takeOfferButtonText = isBuyerRole ? "Confirm take offer for buying bitcoin" : "Confirm take offer for selling bitcoin";
|
||||
String placeOfferButtonText = isBuyerRole ? "Confirm offer for buying bitcoin" : "Confirm offer for selling bitcoin";
|
||||
String takeOfferButtonText = isBuyerRole ? "Confirm offer for buying bitcoin" : "Confirm offer for selling bitcoin";
|
||||
|
||||
ImageView iconView = new ImageView();
|
||||
iconView.setId(isBuyerRole ? "image-buy-white" : "image-sell-white");
|
||||
|
|
Loading…
Add table
Reference in a new issue