replace links with haveno.exchange domain

This commit is contained in:
woodser 2023-08-19 08:39:11 -04:00
parent b077d532fa
commit 5e7b6c2ccd
28 changed files with 176 additions and 176 deletions

View file

@ -148,7 +148,7 @@ public final class ArbitrationManager extends DisputeManager<ArbitrationDisputeL
@Override
protected String getDisputeInfo(Dispute dispute) {
String role = Res.get("shared.arbitrator").toLowerCase();
String link = "https://docs.bisq.network/trading-rules.html#legacy-arbitration";
String link = "https://docs.haveno.exchange/trading-rules.html#legacy-arbitration";
return Res.get("support.initialInfo", role, role, link);
}

View file

@ -130,7 +130,7 @@ public final class MediationManager extends DisputeManager<MediationDisputeList>
@Override
protected String getDisputeInfo(Dispute dispute) {
String role = Res.get("shared.mediator").toLowerCase();
String link = "https://docs.bisq.network/trading-rules.html#mediation";
String link = "https://docs.haveno.exchange/trading-rules.html#mediation";
return Res.get("support.initialInfo", role, role, link);
}

View file

@ -121,7 +121,7 @@ public final class RefundManager extends DisputeManager<RefundDisputeList> {
@Override
protected String getDisputeInfo(Dispute dispute) {
String role = Res.get("shared.refundAgent").toLowerCase();
String link = "https://docs.bisq.network/trading-rules.html#arbitration";
String link = "https://docs.haveno.exchange/trading-rules.html#arbitration";
return Res.get("support.initialInfo", role, role, link);
}