mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 06:41:41 +01:00
Add information what to do next after mediation is completed
This commit is contained in:
parent
982f610a16
commit
15f71c9e02
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -556,6 +556,10 @@ public class DisputeSummaryWindow extends Overlay<DisputeSummaryWindow> {
|
|||
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()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue