From b40010912ef574cca664182d9388e180e0e3eae7 Mon Sep 17 00:00:00 2001 From: Carla Duarte Date: Wed, 12 Jan 2022 14:15:08 -0500 Subject: [PATCH] fix: update assessment visibility copy in studio --- .../js/show-correctness-editor.underscore | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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.') %>