Commit 2a5b6c9a by Peter Desjardins

Edited wording of UI labels for configuring subsection prerequisites (gating)

parent 6723b896
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
</label> </label>
</li> </li>
<div id="prereq_min_score_error" class="message-status error"> <div id="prereq_min_score_error" class="message-status error">
<%- gettext('Minimum score must be an integer between 0 and 100.') %> <%- gettext('The minimum score percentage must be a whole number between 0 and 100.') %>
</div> </div>
</ul> </ul>
</div> </div>
<% } %> <% } %>
<h3 class="modal-section-title"><%- gettext('Use this as a Prerequisite') %></h3> <h3 class="modal-section-title"><%- gettext('Use as a Prerequisite') %></h3>
<div class="modal-section-content gating-is-prereq"> <div class="modal-section-content gating-is-prereq">
<ul class="list-fields list-input"> <ul class="list-fields list-input">
<li class="field field-checkbox checkbox-cosmetic"> <li class="field field-checkbox checkbox-cosmetic">
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
<label for="is_prereq" class="label"> <label for="is_prereq" class="label">
<i class="icon fa fa-check-square-o input-checkbox-checked"></i> <i class="icon fa fa-check-square-o input-checkbox-checked"></i>
<i class="icon fa fa-square-o input-checkbox-unchecked"></i> <i class="icon fa fa-square-o input-checkbox-unchecked"></i>
<%- gettext('Yes, set this as a prerequisite which can be used to limit access to other content') %> <%- gettext('Make this subsection available as a prerequisite to other content') %>
</label> </label>
</li> </li>
</ul> </ul>
......
...@@ -756,9 +756,11 @@ class CourseFields(object): ...@@ -756,9 +756,11 @@ class CourseFields(object):
) )
enable_subsection_gating = Boolean( enable_subsection_gating = Boolean(
display_name=_("Enable Subsection Gating"), display_name=_("Enable Subsection Prerequisites"),
help=_( help=_(
"Enter true or false. If this value is true, subsection gating is enabled in your course." "Enter true or false. If this value is true, you can hide a "
"subsection until learners earn a minimum score in another, "
"prerequisite subsection."
), ),
default=False, default=False,
scope=Scope.settings scope=Scope.settings
......
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