Commit 274224bf by David Baumgold

Merge pull request #3051 from louyihua/fix-cms-email-translation

Fix typo in studio's email text
parents 963f5685 b70b2322
<%! from django.utils.translation import ugettext as _ %> <%! 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)}
\ No newline at end of file \ No newline at end of file
<%! from django.utils.translation import ugettext as _ %> <%! 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.")} ${_("To grant or deny this request, use the course creator admin table.")}
% if is_secure: % if is_secure:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment