Commit c68fce1f by Sarina Canelake

Fix i18n translation issues

parent 08637338
...@@ -493,8 +493,11 @@ class Courses(SysadminDashboardView): ...@@ -493,8 +493,11 @@ class Courses(SysadminDashboardView):
data.append([course.display_name, course.id.to_deprecated_string()] data.append([course.display_name, course.id.to_deprecated_string()]
+ self.git_info_for_course(gdir)) + self.git_info_for_course(gdir))
return dict(header=[_('Course Name'), _('Directory/ID'), return dict(header=[_('Course Name'),
_('Git Commit'), _('Last Change'), _('Directory/ID'),
# Translators: "Git Commit" is a computer command; see http://gitref.org/basic/#commit
_('Git Commit'),
_('Last Change'),
_('Last Editor')], _('Last Editor')],
title=_('Information about all courses'), title=_('Information about all courses'),
data=data) data=data)
......
...@@ -752,7 +752,7 @@ function goto( mode) ...@@ -752,7 +752,7 @@ function goto( mode)
%endif %endif
<p> <p>
${_("Student distribution per country, all courses, Sep-12 to Oct-17, 1 server (shown here as an example):")} ${_("Student distribution per country, all courses, Sep 12 to Oct 17, 1 server (shown here as an example):")}
</p> </p>
<div id="posts-list" class="clearfix"> <div id="posts-list" class="clearfix">
......
...@@ -110,9 +110,9 @@ ...@@ -110,9 +110,9 @@
function(data) { function(data) {
if (data.success) { if (data.success) {
$("#change_email_title").html("${_('Please verify your new email')}"); $("#change_email_title").html("${_('Please verify your new email')}");
$("#change_email_form").html("<p>${_(('You\'ll receive a confirmation in your in-box.' $("#change_email_form").html("<p>${_('You\'ll receive a confirmation in your inbox.'
' Please click the link in the email to confirm' ' Please click the link in the email to confirm'
' the email change.'))}</p>"); ' the email change.')}</p>");
} else { } else {
$("#change_email_error").html(data.error).stop().css("display", "block"); $("#change_email_error").html(data.error).stop().css("display", "block");
} }
......
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