From 826b8e960a80fc8188cd83ee4b7069ae5a4cbe1d Mon Sep 17 00:00:00 2001 From: James Tauber Date: Wed, 20 Feb 2013 00:55:41 -0500 Subject: [PATCH] made the help text a little more generic --- symposion/proposals/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/symposion/proposals/models.py b/symposion/proposals/models.py index c71b025a..7194977b 100644 --- a/symposion/proposals/models.py +++ b/symposion/proposals/models.py @@ -85,15 +85,15 @@ class ProposalBase(models.Model): description = models.TextField( _("Brief Outline"), max_length=400, # @@@ need to enforce 400 in UI - help_text="If your talk is accepted this will be made public and printed in the program. Should be one paragraph, maximum 400 characters." + help_text="If your proposal is accepted this will be made public and printed in the program. Should be one paragraph, maximum 400 characters." ) abstract = MarkupField( _("Detailed Abstract"), - help_text=_("Detailed description and outline. Will be made public if your talk is accepted. Edit using Markdown.") + help_text=_("Detailed description and outline. Will be made public if your proposal is accepted. Edit using Markdown.") ) additional_notes = MarkupField( blank=True, - help_text=_("Anything else you'd like the program committee to know when making their selection: your past speaking experience, open source community experience, etc. Edit using Markdown.") + help_text=_("Anything else you'd like the program committee to know when making their selection: your past experience, etc. This is not made public. Edit using Markdown.") ) submitted = models.DateTimeField( default=datetime.datetime.now,