summaryrefslogtreecommitdiffstats
path: root/django_authopenid
diff options
context:
space:
mode:
authorBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-09 23:52:09 -0300
committerBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-09 23:52:09 -0300
commit56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1 (patch)
tree979ccea6ec95c87c06c824d35fb2371b7ffc1ee3 /django_authopenid
parentab773e3548a98ba0b5af8492ac2905d7d6600578 (diff)
downloadaskbot-56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1.tar.gz
askbot-56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1.tar.bz2
askbot-56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1.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'),
)