app/soc/models/proposal.py
changeset 970 8b5611d5b053
parent 385 6d410bf49a82
child 1307 091a21cf3627
--- a/app/soc/models/proposal.py	Sat Jan 24 21:38:28 2009 +0000
+++ b/app/soc/models/proposal.py	Sat Jan 24 23:56:34 2009 +0000
@@ -24,7 +24,7 @@
 
 from google.appengine.ext import db
 
-from django.utils.translation import ugettext_lazy
+from django.utils.translation import ugettext
 
 import soc.models.work
 import soc.models.quiz
@@ -55,7 +55,7 @@
   #: optional, indexed plain text field used for different purposes,
   #: depending on the specific type of the work
   abstract = db.StringProperty(multiline=True)
-  abstract.help_text = ugettext_lazy(
+  abstract.help_text = ugettext(
       'short abstract, summary, or snippet;'
       ' 500 characters or less, plain text displayed publicly')