Commit d0a1701b by Jay Zoldak

Merge pull request #2549 from edx/zoldak/things-not-to-translate

Do not translate checkbox values in html files
parents d8144b0d 7e9abd2e
......@@ -157,7 +157,7 @@ function goto( mode)
%if offline_grade_log:
<p>
<span class="copy-warning">Pre-computed grades ${offline_grade_log} available: Use?
<input type='checkbox' name='use_offline_grades' value="${_("yes")}">
<input type='checkbox' name='use_offline_grades' value="yes">
</span>
</p>
%endif
......
......@@ -32,7 +32,7 @@
<textarea rows="6" cols="50" name="student-emails" placeholder="${_("Student Emails")}" spellcheck="false"></textarea>
<br>
<input type="checkbox" name="auto-enroll" value="${_("Auto-Enroll")}" style="margin-top: 1em;">
<input type="checkbox" name="auto-enroll" value="Auto-Enroll" style="margin-top: 1em;">
<label for="auto-enroll">${_("Auto Enroll")}</label>
<div class="auto-enroll-hint">
<p> ${_("If auto enroll is <em>checked</em>, students who have not yet registered for edX will be automatically enrolled.")}
......@@ -41,7 +41,7 @@
</div>
<div>
<input type="checkbox" name="email-students" value="${_("Notify-students-by-email")}">
<input type="checkbox" name="email-students" value="Notify-students-by-email">
<label for="email-students">${_("Notify students by email")}</label>
<div class="email-students-hint">
<p> ${_("If email students is <em>checked</em> students will receive an email notification.")}
......
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