diff --git a/cms/templates/js/show-correctness-editor.underscore b/cms/templates/js/show-correctness-editor.underscore
index f96ce3846b..3db6c3c27a 100644
--- a/cms/templates/js/show-correctness-editor.underscore
+++ b/cms/templates/js/show-correctness-editor.underscore
@@ -21,13 +21,19 @@
<%- gettext('Show assessment results when subsection is past due') %>
+ <%- gettext('Learners do not see whether their answers to assessments were correct or incorrect, nor the score received, until after the due date for the subsection has passed.') %>
<% if (self_paced) { %>
- <%- gettext('Learners do not see whether their answers to assessments were correct or incorrect, nor the score received, until after the course end date has passed.') %>
- <%- gettext('If the course does not have an end date, learners always see their scores when they submit answers to assessments.') %>
- <% } else { %>
- <%- gettext('Learners do not see whether their answers to assessments were correct or incorrect, nor the score received, until after the due date for the subsection has passed.') %>
- <%- gettext('If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.') %>
+ <%= edx.HtmlUtils.interpolateHtml(
+ gettext(
+ 'In a self paced course, graded subsections are assigned due dates based on each learner\'s {linkStart}Personalized Learner Schedule{linkEnd}.'
+ ),
+ {
+ linkStart: edx.HtmlUtils.HTML(''),
+ linkEnd: edx.HtmlUtils.HTML('')
+ }
+ ) %>
<% } %>
+ <%- gettext('If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.') %>