diff options
author | Jef van Schendel <mail@jefvanschendel.nl> | 2011-12-03 01:19:15 +0100 |
---|---|---|
committer | Jef van Schendel <mail@jefvanschendel.nl> | 2011-12-03 01:19:15 +0100 |
commit | eae7d0585fc0348a47087919c04e2372d15d244c (patch) | |
tree | 426abbce1409cb9710e4b8151e94e1e86535bdcc | |
parent | 1e9d1acc03aa42ff979c8d15162d51441b81ec5d (diff) | |
download | mediagoblin-eae7d0585fc0348a47087919c04e2372d15d244c.tar.lz mediagoblin-eae7d0585fc0348a47087919c04e2372d15d244c.tar.xz mediagoblin-eae7d0585fc0348a47087919c04e2372d15d244c.zip |
Changed comment error message wording slightly. Btw, should we translate these things?
-rw-r--r-- | mediagoblin/user_pages/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |