From ed4c6c411c689a1d55c8e8068cb4fbed039831af Mon Sep 17 00:00:00 2001 From: Timo Stollenwerk Date: Sun, 16 Aug 2009 08:38:42 +0000 Subject: [PATCH] Simplify comment form labels as suggested by jon. svn path=/plone.app.discussion/trunk/; revision=28979 --- plone/app/discussion/interfaces.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plone/app/discussion/interfaces.py b/plone/app/discussion/interfaces.py index 6109114..0c90fcb 100644 --- a/plone/app/discussion/interfaces.py +++ b/plone/app/discussion/interfaces.py @@ -148,16 +148,16 @@ class IComment(Interface): in_reply_to = schema.Int(title=_(u"Id of comment this comment is in reply to"), required=False) # for logged in comments - set to None for anonymous - author_username = schema.TextLine(title=_(u"Author username"), required=False) + author_username = schema.TextLine(title=_(u"Name"), required=False) # for anonymous comments only, set to None for logged in comments - author_name = schema.TextLine(title=_(u"Author name"), required=False) - author_email = schema.TextLine(title=_(u"Author email address"), required=False) + author_name = schema.TextLine(title=_(u"Name"), required=False) + author_email = schema.TextLine(title=_(u"Email"), required=False) title = schema.TextLine(title=_(u"Subject")) mime_type = schema.ASCIILine(title=_(u"MIME type"), default="text/plain") - text = schema.Text(title=_(u"Comment text")) + text = schema.Text(title=_(u"Comment")) creator = schema.TextLine(title=_(u"Author name (for display)")) creation_date = schema.Date(title=_(u"Creation date"))