This commit is contained in:
Katja Süss
2017-07-28 19:12:49 +00:00
committed by ksuess
parent fb7c68d5e5
commit 78abff152d
16 changed files with 140 additions and 77 deletions
+6 -3
View File
@@ -42,7 +42,8 @@ import logging
COMMENT_TITLE = _(
u'comment_title',
default=u'${author_name} on ${content}')
default=u'${author_name} on ${content}',
)
MAIL_NOTIFICATION_MESSAGE = _(
u'mail_notification_message',
@@ -50,7 +51,8 @@ MAIL_NOTIFICATION_MESSAGE = _(
u'has been posted here: ${link}\n\n'
u'---\n'
u'${text}\n'
u'---\n')
u'---\n',
)
MAIL_NOTIFICATION_MESSAGE_MODERATOR = _(
u'mail_notification_message_moderator',
@@ -60,7 +62,8 @@ MAIL_NOTIFICATION_MESSAGE_MODERATOR = _(
u'${text}\n'
u'---\n\n'
u'Approve comment:\n${link_approve}\n\n'
u'Delete comment:\n${link_delete}\n')
u'Delete comment:\n${link_delete}\n',
)
logger = logging.getLogger('plone.app.discussion')