Changeset 3943
- Timestamp:
- 10/27/06 14:19:28 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/0.91-bugfixes/django/contrib/comments/views/comments.py
r3942 r3943 108 108 if self.user_cache.get_comments_comment_count() <= COMMENTS_FIRST_FEW: 109 109 message = ngettext('This comment was posted by a user who has posted fewer than %(count)s comment:\n\n%(text)s', 110 'This comment was posted by a user who has posted fewer than %(count)s comments:\n\n%(text)s', settings.COMMENTS_FIRST_FEW) % \110 'This comment was posted by a user who has posted fewer than %(count)s comments:\n\n%(text)s', COMMENTS_FIRST_FEW) % \ 111 111 {'count': COMMENTS_FIRST_FEW, 'text': c.get_as_text()} 112 112 mail_managers("Comment posted by rookie user", message)
