Skip to content
Snippets Groups Projects
Commit b70b2322 authored by louyihua's avatar louyihua
Browse files

i18n: Fix typo in studio's email

The right parenthesis should be appeared before the method '.format', not after.
parent ce1b6231
No related branches found
Tags release-2020-11-19-11.03
No related merge requests found
<%! from django.utils.translation import ugettext as _ %>
${_("{email} has requested Studio course creator privileges on edge".format(email=user_email))}
\ No newline at end of file
${_("{email} has requested Studio course creator privileges on edge").format(email=user_email)}
\ No newline at end of file
<%! 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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment