Skip to content

Commit

Permalink
[release-v1.6][controllers]: Fix bad strings changed in 6d9a164 for i…
Browse files Browse the repository at this point in the history
…18n.
  • Loading branch information
David Read committed Feb 10, 2012
1 parent ff154e4 commit 03e91df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ckan/controllers/home.py
Expand Up @@ -67,16 +67,16 @@ def index(self):
c.userobj.name.startswith('https://www.google.com/accounts/o8/id')
if not c.userobj.email and (is_google_id and not c.userobj.fullname):
msg = _('Please <a href="%s">update your profile</a>'
' and add your email address and your full name. ') + \
' and add your email address and your full name. ') % url + \
_('%s uses your email address'
' if you need to reset your password.') \
% (url, g.site_title)
% g.site_title
elif not c.userobj.email:
msg = _('Please <a href="%s">update your profile</a>'
' and add your email address. ') + \
' and add your email address. ') % url + \
_('%s uses your email address'
' if you need to reset your password.') \
% (url, g.site_title)
% g.site_title
elif is_google_id and not c.userobj.fullname:
msg = _('Please <a href="%s">update your profile</a>'
' and add your full name.') % (url)
Expand Down

0 comments on commit 03e91df

Please sign in to comment.