Replace arbitration link in tac

With link to v1.2 dispute resolution documentation.
This commit is contained in:
Steve Jain 2019-11-26 23:33:25 -05:00 committed by Christoph Atteneder
parent 88cbecd8ed
commit 548a217751
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B
2 changed files with 4 additions and 4 deletions

View file

@ -2384,7 +2384,7 @@ showWalletDataWindow.includePrivKeys=Include private keys
tacWindow.headline=User agreement tacWindow.headline=User agreement
tacWindow.agree=I agree tacWindow.agree=I agree
tacWindow.disagree=I disagree and quit tacWindow.disagree=I disagree and quit
tacWindow.arbitrationSystem=Arbitration system tacWindow.arbitrationSystem=Dispute resolution
tradeDetailsWindow.headline=Trade tradeDetailsWindow.headline=Trade
tradeDetailsWindow.disputedPayoutTxId=Disputed payout transaction ID: tradeDetailsWindow.disputedPayoutTxId=Disputed payout transaction ID:

View file

@ -92,8 +92,8 @@ public class TacWindow extends Overlay<TacWindow> {
" - Opening a refund request from an arbitrator triggers the delayed payout transaction, sending all funds from the deposit transaction to the Bisq DAO receiver address ('collateral for refund to avoid scamming the refund process'). At this point, the arbitrator will re-investigate the case and personally refund (at their discretion) the trader who requested arbitration.\n" + " - Opening a refund request from an arbitrator triggers the delayed payout transaction, sending all funds from the deposit transaction to the Bisq DAO receiver address ('collateral for refund to avoid scamming the refund process'). At this point, the arbitrator will re-investigate the case and personally refund (at their discretion) the trader who requested arbitration.\n" +
"The arbitrator may charge a small fee (max. the traders security deposit) as compensation for their work.\n" + "The arbitrator may charge a small fee (max. the traders security deposit) as compensation for their work.\n" +
" - The arbitrator will then make a reimbursement request to the Bisq DAO to get reimbursed for the refund they paid to the trader.\n\n" + " - The arbitrator will then make a reimbursement request to the Bisq DAO to get reimbursed for the refund they paid to the trader.\n\n" +
"For more details and a general overview please read the full documentation about the " + "For more details and a general overview please read the full documentation about " +
"arbitration system and the dispute process."; "dispute resolution.";
message(text); message(text);
actionButtonText(Res.get("tacWindow.agree")); actionButtonText(Res.get("tacWindow.agree"));
closeButtonText(Res.get("tacWindow.disagree")); closeButtonText(Res.get("tacWindow.disagree"));
@ -108,7 +108,7 @@ public class TacWindow extends Overlay<TacWindow> {
String fontStyleClass = smallScreen ? "small-text" : "normal-text"; String fontStyleClass = smallScreen ? "small-text" : "normal-text";
messageLabel.getStyleClass().add(fontStyleClass); messageLabel.getStyleClass().add(fontStyleClass);
HyperlinkWithIcon hyperlinkWithIcon = addHyperlinkWithIcon(gridPane, ++rowIndex, Res.get("tacWindow.arbitrationSystem"), HyperlinkWithIcon hyperlinkWithIcon = addHyperlinkWithIcon(gridPane, ++rowIndex, Res.get("tacWindow.arbitrationSystem"),
"https://bisq.network/docs/exchange/arbitration-system"); "https://docs.bisq.network/trading-rules.html#dispute-resolution");
hyperlinkWithIcon.getStyleClass().add(fontStyleClass); hyperlinkWithIcon.getStyleClass().add(fontStyleClass);
GridPane.setMargin(hyperlinkWithIcon, new Insets(-6, 0, -20, -4)); GridPane.setMargin(hyperlinkWithIcon, new Insets(-6, 0, -20, -4));
} }