Changeset 3936
- Timestamp:
- 10/25/06 16:56:17 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/comments/views/comments.py
r3929 r3936 110 110 if self.user_cache.comment_set.count() <= settings.COMMENTS_FIRST_FEW: 111 111 message = ngettext('This comment was posted by a user who has posted fewer than %(count)s comment:\n\n%(text)s', 112 'This comment was posted by a user who has posted fewer than %(count)s comments:\n\n%(text)s' ) % \112 'This comment was posted by a user who has posted fewer than %(count)s comments:\n\n%(text)s', settings.COMMENTS_FIRST_FEW) % \ 113 113 {'count': settings.COMMENTS_FIRST_FEW, 'text': c.get_as_text()} 114 114 mail_managers("Comment posted by rookie user", message)
