From: Jef van Schendel Date: Sat, 3 Dec 2011 00:19:15 +0000 (+0100) Subject: Changed comment error message wording slightly. Btw, should we translate these things? X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=eae7d0585fc0348a47087919c04e2372d15d244c;p=mediagoblin.git Changed comment error message wording slightly. Btw, should we translate these things? --- diff --git a/mediagoblin/user_pages/views.py b/mediagoblin/user_pages/views.py index 3d9735f7..779394c7 100644 --- a/mediagoblin/user_pages/views.py +++ b/mediagoblin/user_pages/views.py @@ -152,13 +152,13 @@ def media_post_comment(request, media): messages.add_message( request, messages.ERROR, - _("Empty comments are not allowed.")) + _("Oops, your comment was empty.")) else: comment.save() messages.add_message( request, messages.SUCCESS, - _('Comment posted!')) + _('Your comment has been posted!')) return exc.HTTPFound( location=media.url_for_self(request.urlgen))