diff --git a/core/src/main/resources/i18n/displayStrings.properties b/core/src/main/resources/i18n/displayStrings.properties index 0237906311..c78f897744 100644 --- a/core/src/main/resources/i18n/displayStrings.properties +++ b/core/src/main/resources/i18n/displayStrings.properties @@ -840,10 +840,10 @@ portfolio.pending.step5_buyer.paid=You have paid portfolio.pending.step5_seller.sold=You have sold portfolio.pending.step5_seller.received=You have received -tradeFeedbackWindow.title=Your trade is succesfully completed! -tradeFeedbackWindow.msg.part1=We'd love to hear back from you about your experience. -tradeFeedbackWindow.msg.part2=If you have any questions, or experienced any problems, please get in touch with other users and contributors in our [Matrix chatroom](https://matrix.to/#/#haveno:haveno.network): -tradeFeedbackWindow.msg.part3=Thanks for testing Haveno with us! +tradeFeedbackWindow.title=Your trade is completed successfully! +tradeFeedbackWindow.msg.part1=We'd love to hear back from you about your experience. It'll help us improve the software and smooth out any rough edges. +tradeFeedbackWindow.msg.part2=If you have any questions, or experienced any problems, please get in touch with other users and contributors in our Matrix chatroom: +tradeFeedbackWindow.msg.part3=Thanks for using Haveno! portfolio.pending.role=My role portfolio.pending.tradeInformation=Trade information 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 c7d5e755a7..121dbc18b2 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 @@ -56,10 +56,6 @@ public class TradeFeedbackWindow extends Overlay { protected void addMessage() { super.addMessage(); - HyperlinkWithIcon survey = addHyperlinkWithIcon(gridPane, ++rowIndex, "https://bisq.network/survey", - "https://bisq.network/survey"); - GridPane.setMargin(survey, new Insets(-6, 0, 10, 0)); - AutoTooltipLabel messageLabel2 = new AutoTooltipLabel(Res.get("tradeFeedbackWindow.msg.part2")); messageLabel2.setMouseTransparent(true); messageLabel2.setWrapText(true); @@ -70,9 +66,9 @@ public class TradeFeedbackWindow extends Overlay { GridPane.setColumnSpan(messageLabel2, 2); gridPane.getChildren().add(messageLabel2); - HyperlinkWithIcon forum = addHyperlinkWithIcon(gridPane, ++rowIndex, "https://bisq.community", - "https://bisq.community", 40); - GridPane.setMargin(forum, new Insets(-6, 0, 10, 0)); + HyperlinkWithIcon matrix = addHyperlinkWithIcon(gridPane, ++rowIndex, "https://matrix.to/#/#haveno:haveno.network", + "https://matrix.to/#/#haveno:haveno.network", 40); + GridPane.setMargin(matrix, new Insets(-6, 0, 10, 0)); AutoTooltipLabel messageLabel3 = new AutoTooltipLabel(Res.get("tradeFeedbackWindow.msg.part3")); messageLabel3.setMouseTransparent(true);