i18n: Fix typo in studio's email

The right parenthesis should be appeared before the method '.format', not after.
This commit is contained in:
louyihua
2014-03-25 16:51:24 +08:00
parent ce1b62311b
commit b70b232205
2 changed files with 2 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
<%! from django.utils.translation import ugettext as _ %>
${_("{email} has requested Studio course creator privileges on edge".format(email=user_email))}
${_("{email} has requested Studio course creator privileges on edge").format(email=user_email)}

View File

@@ -1,5 +1,5 @@
<%! from django.utils.translation import ugettext as _ %>
${_("User '{user}' with e-mail {email} has requested Studio course creator privileges on edge.".format(user=user_name, email=user_email))}
${_("User '{user}' with e-mail {email} has requested Studio course creator privileges on edge.").format(user=user_name, email=user_email)}
${_("To grant or deny this request, use the course creator admin table.")}
% if is_secure: