diff --git a/core/src/main/resources/i18n/displayStrings.properties b/core/src/main/resources/i18n/displayStrings.properties index b68db8dd..3cf0656f 100644 --- a/core/src/main/resources/i18n/displayStrings.properties +++ b/core/src/main/resources/i18n/displayStrings.properties @@ -598,12 +598,10 @@ portfolio.pending.invalidTx=There is an issue with a missing or invalid transact Open a support ticket to get assistance from a Mediator.\n\n\ Error message: {0} -portfolio.pending.unconfirmedTooLong=Security deposit transaction on trade {0} is still unconfirmed after {1} hours. \ - Check the deposit transaction at a blockchain explorer; if it has been confirmed but is not being displayed \ - as confirmed in Haveno: \n\ - ● Make a data backup [HYPERLINK:https://bisq.wiki/Backing_up_application_data] \n\ - ● Do an SPV resync. [HYPERLINK:https://bisq.wiki/Resyncing_SPV_file]\n\n\ - Contact Haveno support [HYPERLINK:https://keybase.io/team/bisq] if you have doubts or the issue persists. +portfolio.pending.unconfirmedTooLong=Deposit transactions on trade {0} are still unconfirmed after {1} hours. \ + Check the deposit transactions using a blockchain explorer; if they are confirmed but not displayed as \ + confirmed in Haveno, try restarting Haveno.\n\n\ + If the problem persists, contact Haveno support [HYPERLINK:https://matrix.to/#/#haveno:monero.social]. portfolio.pending.step1.waitForConf=Wait for blockchain confirmations portfolio.pending.step2_buyer.startPayment=Start payment @@ -856,7 +854,7 @@ portfolio.pending.tradePeriodInfo=After the first blockchain confirmation, the t portfolio.pending.tradePeriodWarning=If the period is exceeded both traders can open a dispute. portfolio.pending.tradeNotCompleted=Trade not completed in time (until {0}) portfolio.pending.tradeProcess=Trade process -portfolio.pending.stillNotResolved=If your issue remains unsolved, you can request support in our [Matrix chatroom](https://matrix.to/#/#haveno:haveno.network). +portfolio.pending.stillNotResolved=If your issue remains unsolved, you can request support in our [Matrix chatroom](https://matrix.to/#/#haveno:monero.social). portfolio.pending.openAgainDispute.msg=If you are not sure that the message to the arbitrator arrived (e.g. if you did not get a response after 1 day) feel free to contact the team. portfolio.pending.openAgainDispute.button=Open dispute again diff --git a/desktop/src/main/java/bisq/desktop/main/overlays/windows/TradeFeedbackWindow.java b/desktop/src/main/java/bisq/desktop/main/overlays/windows/TradeFeedbackWindow.java index 121dbc18..de578382 100644 --- a/desktop/src/main/java/bisq/desktop/main/overlays/windows/TradeFeedbackWindow.java +++ b/desktop/src/main/java/bisq/desktop/main/overlays/windows/TradeFeedbackWindow.java @@ -66,8 +66,8 @@ public class TradeFeedbackWindow extends Overlay { GridPane.setColumnSpan(messageLabel2, 2); gridPane.getChildren().add(messageLabel2); - HyperlinkWithIcon matrix = addHyperlinkWithIcon(gridPane, ++rowIndex, "https://matrix.to/#/#haveno:haveno.network", - "https://matrix.to/#/#haveno:haveno.network", 40); + HyperlinkWithIcon matrix = addHyperlinkWithIcon(gridPane, ++rowIndex, "https://matrix.to/#/#haveno:monero.social", + "https://matrix.to/#/#haveno:monero.social", 40); GridPane.setMargin(matrix, new Insets(-6, 0, 10, 0)); AutoTooltipLabel messageLabel3 = new AutoTooltipLabel(Res.get("tradeFeedbackWindow.msg.part3"));