Improve wording

This commit is contained in:
Manfred Karrer 2014-10-25 01:05:22 +02:00
parent 2877f63004
commit 5094b2de4a
3 changed files with 12 additions and 8 deletions

View file

@ -294,11 +294,11 @@ public class MainViewCB extends ViewCB<MainPM> {
Label loadingLabel = new Label();
loadingLabel.setAlignment(Pos.CENTER);
loadingLabel.setPadding(new Insets(80, 0, 0, 0));
loadingLabel.setPadding(new Insets(60, 0, 0, 0));
loadingLabel.textProperty().bind(presentationModel.splashScreenInfoText);
ProgressBar progressBar = new ProgressBar();
progressBar.setPrefWidth(200);
progressBar.setPrefWidth(240);
progressBar.progressProperty().bind(presentationModel.networkSyncProgress);
vBox.getChildren().addAll(logo, loadingLabel, progressBar);
@ -337,7 +337,7 @@ public class MainViewCB extends ViewCB<MainPM> {
sellButton = addNavButton(leftNavPane, "Sell BTC", Navigation.Item.SELL);
ordersButtonButtonPane = new Pane();
ordersButton = addNavButton(ordersButtonButtonPane, "Orders", Navigation.Item.ORDERS);
ordersButton = addNavButton(ordersButtonButtonPane, "Portfolio", Navigation.Item.ORDERS);
leftNavPane.getChildren().add(ordersButtonButtonPane);
fundsButton = addNavButton(leftNavPane, "Funds", Navigation.Item.FUNDS);

View file

@ -30,10 +30,10 @@
AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"
xmlns:fx="http://javafx.com/fxml">
<TitledGroupBg text="Fund the registration fee" GridPane.rowSpan="4"/>
<TitledGroupBg text="Complete the registration" GridPane.rowSpan="4"/>
<Label text="Registration fee:" GridPane.rowIndex="0">
<GridPane.margin>
<Label text="Registration costs:" GridPane.rowIndex="0">
<GridPane.margin>
<Insets top="10.0"/>
</GridPane.margin>
</Label>
@ -62,7 +62,7 @@
</BalanceTextField>
<InfoDisplay gridPane="$root" onAction="#onOpenHelp" rowIndex="3"
text="You need to pay a tiny registration fee which is needed for storing your encrypted account data in the blockchain. That will be used in the trade process for account verification."/>
text="You need to pay a 0.0002 BTC which is needed for storing your encrypted account data in the blockchain. That will be used in the trade process for account verification."/>
<Button fx:id="payButton" text="Pay registration fee" onAction="#onPayFee" GridPane.columnIndex="1"
GridPane.rowIndex="4"

View file

@ -120,7 +120,7 @@ public class OrderBookViewCB extends CachedViewCB<OrderBookPM> {
table.getSortOrder().add(priceColumn);
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
Label placeholder = new Label("No offers available.\nTry to change your filter or account settings.");
Label placeholder = new Label("Currently there are no offers available");
placeholder.setWrapText(true);
table.setPlaceholder(placeholder);
@ -132,6 +132,10 @@ public class OrderBookViewCB extends CachedViewCB<OrderBookPM> {
collapse = ImageUtil.getImageViewById(ImageUtil.COLLAPSE);
showAdvancedSettingsButton.setGraphic(expand);
// for irc demo
showAdvancedSettingsButton.setVisible(false);
showAdvancedSettingsButton.setManaged(false);
super.initialize(url, rb);
}