# HG changeset patch # User Paul Boddie # Date 1383415980 -3600 # Node ID 6c97fd86cb8861961d1b259a300cbee6ed5009c4 # Parent 72d61af44eaa3c144fe7a99ba4dfb863f6008231 Changed the message when comment text has already been given. diff -r 72d61af44eaa -r 6c97fd86cb88 actions/PostComment.py --- a/actions/PostComment.py Sat Nov 02 19:03:54 2013 +0100 +++ b/actions/PostComment.py Sat Nov 02 19:13:00 2013 +0100 @@ -28,7 +28,7 @@ comment = form.get("comment", [""])[0] d = { - "comment_label" : escape(_("Write a comment in the box.")), + "comment_label" : escape(comment and _("Please review your comment.") or _("Write a comment in the box.")), "comment_default" : escape(comment), "buttons_html" : buttons_html, }