From 163b255fcff702f76e890c04c5146b6202c1bff3 Mon Sep 17 00:00:00 2001 From: vince0656 Date: Thu, 1 Aug 2019 17:42:55 +0100 Subject: [PATCH] Made copy changes to re-market success msg at the request of @PixelantDesign --- app/dashboard/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/dashboard/views.py b/app/dashboard/views.py index 1da58421adc..4f2edcbf396 100644 --- a/app/dashboard/views.py +++ b/app/dashboard/views.py @@ -1580,11 +1580,11 @@ def helper_handle_remarket_trigger(request, bounty): maybe_market_to_slack(bounty, 'issue_remarketed') further_permitted_remarket_count = 2 - bounty.remarketed_count - success_msg = "The bounty has been remarketed! " + success_msg = "This issue has been remarketed. The issue will appear at the top of the issue explorer. " if further_permitted_remarket_count == 1: - success_msg = success_msg + "You can do this 1 further time after waiting at least an hour." + success_msg = success_msg + "You will be able to remarket this bounty one more time if a contributor does not pick this up." elif further_permitted_remarket_count == 0: - success_msg = success_msg + "You cannot remarket this bounty any further." + success_msg = success_msg + "Please note this is the last time the issue is able to be remarketed." messages.success(request, _(success_msg))