diff -r b12de918d660 -r 8b5611d5b053 app/soc/views/models/role.py --- a/app/soc/views/models/role.py Sat Jan 24 21:38:28 2009 +0000 +++ b/app/soc/views/models/role.py Sat Jan 24 23:56:34 2009 +0000 @@ -24,7 +24,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.logic.models import request as request_logic @@ -49,7 +49,7 @@ All views that only Role entities have are defined in this subclass. """ - DEF_INVITE_INSTRUCTION_MSG_FMT = ugettext_lazy( + DEF_INVITE_INSTRUCTION_MSG_FMT = ugettext( 'Please use this form to invite someone to become a %(name)s.') def __init__(self, params=None):