ConfluenceConverter

Changeset

128:6c97fd86cb88
2013-11-02 Paul Boddie raw files shortlog changelog graph Changed the message when comment text has already been given.
actions/PostComment.py (file)
     1.1 --- a/actions/PostComment.py	Sat Nov 02 19:03:54 2013 +0100
     1.2 +++ b/actions/PostComment.py	Sat Nov 02 19:13:00 2013 +0100
     1.3 @@ -28,7 +28,7 @@
     1.4          comment = form.get("comment", [""])[0]
     1.5  
     1.6          d = {
     1.7 -            "comment_label"     : escape(_("Write a comment in the box.")),
     1.8 +            "comment_label"     : escape(comment and _("Please review your comment.") or _("Write a comment in the box.")),
     1.9              "comment_default"   : escape(comment),
    1.10              "buttons_html"      : buttons_html,
    1.11              }