From 4cac7f8655b3ecaf3a1bdad57045c195239904aa Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Tue, 12 Apr 2016 23:51:36 +0200 Subject: [PATCH] Improve wording --- .../gui/main/account/content/seedwords/SeedWordsView.java | 1 - .../bitsquare/gui/main/offer/createoffer/CreateOfferView.java | 4 ++-- .../gui/main/overlays/windows/OfferDetailsWindow.java | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/gui/src/main/java/io/bitsquare/gui/main/account/content/seedwords/SeedWordsView.java b/gui/src/main/java/io/bitsquare/gui/main/account/content/seedwords/SeedWordsView.java index 638d265c21..8b5301a25c 100644 --- a/gui/src/main/java/io/bitsquare/gui/main/account/content/seedwords/SeedWordsView.java +++ b/gui/src/main/java/io/bitsquare/gui/main/account/content/seedwords/SeedWordsView.java @@ -157,7 +157,6 @@ public class SeedWordsView extends ActivatableView { 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 { diff --git a/gui/src/main/java/io/bitsquare/gui/main/offer/createoffer/CreateOfferView.java b/gui/src/main/java/io/bitsquare/gui/main/offer/createoffer/CreateOfferView.java index e1047e8e9f..9610f39542 100644 --- a/gui/src/main/java/io/bitsquare/gui/main/offer/createoffer/CreateOfferView.java +++ b/gui/src/main/java/io/bitsquare/gui/main/offer/createoffer/CreateOfferView.java @@ -207,7 +207,7 @@ public class CreateOfferView extends ActivatableViewAndModel { 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");