mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Improve wording
This commit is contained in:
parent
2877f63004
commit
5094b2de4a
3 changed files with 12 additions and 8 deletions
|
@ -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);
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue