Changed comment error message wording slightly. Btw, should we translate these things?
authorJef van Schendel <mail@jefvanschendel.nl>
Sat, 3 Dec 2011 00:19:15 +0000 (01:19 +0100)
committerJef van Schendel <mail@jefvanschendel.nl>
Sat, 3 Dec 2011 00:19:15 +0000 (01:19 +0100)
mediagoblin/user_pages/views.py

index 3d9735f7230d352e0f99488e5f21d37074afbe87..779394c705db7b3cc163ff4b9733fe3418b3c7c5 100644 (file)
@@ -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))