--- a/app/soc/models/site.py Sat Jan 24 21:38:28 2009 +0000
+++ b/app/soc/models/site.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.presence
@@ -41,14 +41,14 @@
#: is going to have Google Analytics JS initialization code in
#: the footer with the given tracking number.
ga_tracking_num = db.StringProperty(
- verbose_name=ugettext_lazy('Google Analytics'))
- ga_tracking_num.help_text = ugettext_lazy(
+ verbose_name=ugettext('Google Analytics'))
+ ga_tracking_num.help_text = ugettext(
'Valid Google Analytics tracking number. If the number is '
'entered every page is going to have Google Analytics '
'initialization code in footer.')
#: Valid Google Maps API Key. Used to embed Google Maps.
- gmaps_api_key = db.StringProperty(verbose_name=ugettext_lazy('Google Maps'))
- gmaps_api_key.help_text = ugettext_lazy(
+ gmaps_api_key = db.StringProperty(verbose_name=ugettext('Google Maps'))
+ gmaps_api_key.help_text = ugettext(
'Valid Google Maps API Key. This key is used for '
'embedding Google Maps into the website.')