replace bisq.wiki with haveno.exchange/wiki as placeholder

This commit is contained in:
woodser 2023-10-09 10:06:52 -04:00
parent 9f171a1e41
commit f2a89108e8
21 changed files with 180 additions and 180 deletions

View file

@ -260,7 +260,7 @@ public class TraditionalAccountsView extends PaymentAccountsView<GridPane, Tradi
new Popup().information(Res.get("payment.f2f.info"))
.width(700)
.closeButtonText(Res.get("payment.f2f.info.openURL"))
.onClose(() -> GUIUtil.openWebPage("https://bisq.wiki/Face-to-face_(payment_method)"))
.onClose(() -> GUIUtil.openWebPage("https://haveno.exchange/wiki/Face-to-face_(payment_method)"))
.actionButtonText(Res.get("shared.iUnderstand"))
.onAction(() -> doSaveNewAccount(paymentAccount))
.show();

View file

@ -328,8 +328,8 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
protected void activate() {
titledGroupBg.setText(getMarketTitle());
titledGroupBg.setHelpUrl(model.getDirection() == OfferDirection.SELL
? "https://bisq.wiki/Introduction#In_a_nutshell"
: "https://bisq.wiki/Taking_an_offer");
? "https://haveno.exchange/wiki/Introduction#In_a_nutshell"
: "https://haveno.exchange/wiki/Taking_an_offer");
Map<String, Integer> offerCounts = OfferViewUtil.isShownAsBuyOffer(model.getDirection(), model.getSelectedTradeCurrency()) ? model.getSellOfferCounts() : model.getBuyOfferCounts();
currencyComboBox.setCellFactory(GUIUtil.getTradeCurrencyCellFactory(Res.get("shared.oneOffer"),

View file

@ -1002,7 +1002,7 @@ public abstract class Overlay<T extends Overlay<T>> {
// separate a popup message from optional hyperlinks. [bisq-network/bisq/pull/4637]
// hyperlinks are distinguished by [HYPERLINK:] tag
// referenced in order from within the message via [1], [2] etc.
// e.g. [HYPERLINK:https://bisq.wiki]
// e.g. [HYPERLINK:https://haveno.exchange/wiki]
private void preProcessMessage(String message) {
Pattern pattern = Pattern.compile("\\[HYPERLINK:(.*?)\\]");
Matcher matcher = pattern.matcher(message);

View file

@ -94,7 +94,7 @@ public class TacWindow extends Overlay<TacWindow> {
// TODO: link to the wiki
// HyperlinkWithIcon hyperlinkWithIcon = addHyperlinkWithIcon(gridPane, ++rowIndex, Res.get("tacWindow.arbitrationSystem"),
// "https://bisq.wiki/Dispute_resolution");
// "https://haveno.exchange/wiki/Dispute_resolution");
// hyperlinkWithIcon.getStyleClass().add(fontStyleClass);
// GridPane.setMargin(hyperlinkWithIcon, new Insets(-6, 0, -20, -4));
}