From 15f71c9e02a5c0b40d36c23043501262a67f49cc Mon Sep 17 00:00:00 2001 From: Christoph Atteneder Date: Fri, 13 Sep 2019 12:16:40 +0200 Subject: [PATCH] Add information what to do next after mediation is completed --- core/src/main/resources/i18n/displayStrings.properties | 2 ++ .../desktop/main/overlays/windows/DisputeSummaryWindow.java | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/core/src/main/resources/i18n/displayStrings.properties b/core/src/main/resources/i18n/displayStrings.properties index 9b54cf9471..eaff2c3afc 100644 --- a/core/src/main/resources/i18n/displayStrings.properties +++ b/core/src/main/resources/i18n/displayStrings.properties @@ -2203,6 +2203,8 @@ Summary:\n\ Payout amount for BTC buyer: {1}\n\ Payout amount for BTC seller: {2}\n\n\ Summary notes:\n{3} +disputeSummaryWindow.close.nextStepsForMediation=\n\nNext steps:\n +Open ongoing trade and accept or reject the suggested mediation disputeSummaryWindow.close.closePeer=You need to close also the trading peers ticket! emptyWalletWindow.headline={0} emergency wallet tool diff --git a/desktop/src/main/java/bisq/desktop/main/overlays/windows/DisputeSummaryWindow.java b/desktop/src/main/java/bisq/desktop/main/overlays/windows/DisputeSummaryWindow.java index ea55d87e6a..671054074c 100644 --- a/desktop/src/main/java/bisq/desktop/main/overlays/windows/DisputeSummaryWindow.java +++ b/desktop/src/main/java/bisq/desktop/main/overlays/windows/DisputeSummaryWindow.java @@ -556,6 +556,10 @@ public class DisputeSummaryWindow extends Overlay { formatter.formatCoinWithCode(disputeResult.getSellerPayoutAmount()), disputeResult.summaryNotesProperty().get()); + if (dispute.isMediationDispute()) { + text += Res.get("disputeSummaryWindow.close.nextStepsForMediation"); + } + getDisputeManager(dispute).sendDisputeResultMessage(disputeResult, dispute, text); if (peersDisputeOptional.isPresent() && !peersDisputeOptional.get().isClosed() && !DevEnv.isDevMode()) {