app/soc/views/models/base.py
changeset 970 8b5611d5b053
parent 957 5b657063b23b
child 973 f9c2b32b9e2b
--- a/app/soc/views/models/base.py	Sat Jan 24 21:38:28 2009 +0000
+++ b/app/soc/views/models/base.py	Sat Jan 24 23:56:34 2009 +0000
@@ -25,7 +25,7 @@
 
 
 from django import http
-from django.utils.translation import ugettext_lazy
+from django.utils.translation import ugettext
 
 from soc.logic import dicts
 from soc.views import helper
@@ -51,12 +51,12 @@
   self._logic: the logic singleton for this entity
   """
 
-  DEF_CREATE_NEW_ENTITY_MSG_FMT = ugettext_lazy(
+  DEF_CREATE_NEW_ENTITY_MSG_FMT = ugettext(
       ' You can create a new %(entity_type)s by visiting'
       ' <a href="%(create)s">Create '
       'a New %(entity_type)s</a> page.')
 
-  DEF_CREATE_INSTRUCTION_MSG_FMT = ugettext_lazy(
+  DEF_CREATE_INSTRUCTION_MSG_FMT = ugettext(
       'Please select a %s for the new %s.')
 
   def __init__(self, params=None):