mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-09-20 13:04:40 -04: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();
|
DeterministicSeed keyChainSeed = walletService.getWallet().getKeyChainSeed();
|
||||||
// wallet creation date is not encrypted
|
// wallet creation date is not encrypted
|
||||||
walletCreationDate = Instant.ofEpochSecond(keyChainSeed.getCreationTimeSeconds()).atZone(ZoneId.systemDefault()).toLocalDate();
|
walletCreationDate = Instant.ofEpochSecond(keyChainSeed.getCreationTimeSeconds()).atZone(ZoneId.systemDefault()).toLocalDate();
|
||||||
log.error("walletCreationDate " + walletCreationDate);
|
|
||||||
if (keyChainSeed.isEncrypted()) {
|
if (keyChainSeed.isEncrypted()) {
|
||||||
askForPassword();
|
askForPassword();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -207,7 +207,7 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
|
||||||
imageView.setId("image-buy-large");
|
imageView.setId("image-buy-large");
|
||||||
|
|
||||||
placeOfferButton.setId("buy-button-big");
|
placeOfferButton.setId("buy-button-big");
|
||||||
placeOfferButton.setText("Review place offer for buying bitcoin");
|
placeOfferButton.setText("Review offer for buying bitcoin");
|
||||||
nextButton.setId("buy-button");
|
nextButton.setId("buy-button");
|
||||||
} else {
|
} else {
|
||||||
imageView.setId("image-sell-large");
|
imageView.setId("image-sell-large");
|
||||||
|
@ -215,7 +215,7 @@ public class CreateOfferView extends ActivatableViewAndModel<AnchorPane, CreateO
|
||||||
totalToPayTextField.setPromptText(BSResources.get("createOffer.fundsBox.totalsNeeded.prompt"));
|
totalToPayTextField.setPromptText(BSResources.get("createOffer.fundsBox.totalsNeeded.prompt"));
|
||||||
|
|
||||||
placeOfferButton.setId("sell-button-big");
|
placeOfferButton.setId("sell-button-big");
|
||||||
placeOfferButton.setText("Review place offer for selling bitcoin");
|
placeOfferButton.setText("Review offer for selling bitcoin");
|
||||||
nextButton.setId("sell-button");
|
nextButton.setId("sell-button");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -244,8 +244,8 @@ public class OfferDetailsWindow extends Overlay<OfferDetailsWindow> {
|
||||||
boolean isBuyOffer = offer.getDirection() == Offer.Direction.BUY;
|
boolean isBuyOffer = offer.getDirection() == Offer.Direction.BUY;
|
||||||
boolean isBuyerRole = isPlaceOffer ? isBuyOffer : !isBuyOffer;
|
boolean isBuyerRole = isPlaceOffer ? isBuyOffer : !isBuyOffer;
|
||||||
|
|
||||||
String placeOfferButtonText = isBuyerRole ? "Confirm place offer for buying bitcoin" : "Confirm place offer for selling bitcoin";
|
String placeOfferButtonText = isBuyerRole ? "Confirm offer for buying bitcoin" : "Confirm offer for selling bitcoin";
|
||||||
String takeOfferButtonText = isBuyerRole ? "Confirm take offer for buying bitcoin" : "Confirm take offer for selling bitcoin";
|
String takeOfferButtonText = isBuyerRole ? "Confirm offer for buying bitcoin" : "Confirm offer for selling bitcoin";
|
||||||
|
|
||||||
ImageView iconView = new ImageView();
|
ImageView iconView = new ImageView();
|
||||||
iconView.setId(isBuyerRole ? "image-buy-white" : "image-sell-white");
|
iconView.setId(isBuyerRole ? "image-buy-white" : "image-sell-white");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue