summaryrefslogtreecommitdiffstats
path: root/django_authopenid
diff options
context:
space:
mode:
authorBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-09 23:52:33 -0300
committerBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-09 23:52:33 -0300
commit2d1e60db89453f2c12132d657551090c7ea92506 (patch)
tree979ccea6ec95c87c06c824d35fb2371b7ffc1ee3 /django_authopenid
parent039f563c62bf800304b621af490a8a4b071e5af6 (diff)
downloadaskbot-2d1e60db89453f2c12132d657551090c7ea92506.tar.gz
askbot-2d1e60db89453f2c12132d657551090c7ea92506.tar.bz2
askbot-2d1e60db89453f2c12132d657551090c7ea92506.zip
Included i18n for links site-wide. Hope there is no bit left.
Diffstat (limited to 'django_authopenid')
-rw-r--r--django_authopenid/urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django_authopenid/urls.py b/django_authopenid/urls.py
index 6843e5c0..9c0887d8 100644
--- a/django_authopenid/urls.py
+++ b/django_authopenid/urls.py
@@ -21,10 +21,10 @@ urlpatterns = patterns('django_authopenid.views',
# name='user_confirmchangepw'),
# manage account settings
- #url(r'^$', 'account_settings', name='user_account_settings'),
+ #url(r'^$', _('account_settings'), name='user_account_settings'),
#url(r'^%s$' % _('password/'), 'changepw', name='user_changepw'),
- url(r'^%s$' % 'email/', 'changeemail', name='user_changeemail',kwargs = {'action':'change'}),
- url(r'^%s%s$' % ('email/','validate/'), 'changeemail', name='user_changeemail',kwargs = {'action':'validate'}),
+ url(r'^%s$' % _('email/'), 'changeemail', name='user_changeemail',kwargs = {'action':'change'}),
+ url(r'^%s%s$' % (_('email/'),_('validate/')), 'changeemail', name='user_changeemail',kwargs = {'action':'validate'}),
#url(r'^%s$' % _('openid/'), 'changeopenid', name='user_changeopenid'),
url(r'^%s$' % _('delete/'), 'delete', name='user_delete'),
)