mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-12-12 04:43:32 +01:00
update trade completion message
This commit is contained in:
parent
14ada60c25
commit
031f091f69
@ -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
|
||||
|
@ -56,10 +56,6 @@ public class TradeFeedbackWindow extends Overlay<TradeFeedbackWindow> {
|
||||
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<TradeFeedbackWindow> {
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user