diff --git a/lms/djangoapps/courseware/date_summary.py b/lms/djangoapps/courseware/date_summary.py index 22cce48a90..9eb47d9ac8 100644 --- a/lms/djangoapps/courseware/date_summary.py +++ b/lms/djangoapps/courseware/date_summary.py @@ -333,8 +333,9 @@ class CourseEndDate(DateSummary): if self.date and self.current_time <= self.date: mode, is_active = CourseEnrollment.enrollment_mode_for_user(self.user, self.course_id) if is_active and CourseMode.is_eligible_for_certificate(mode): - return _('This course will be archived, which means you can review the course content ' - 'but can no longer participate in graded assignments or earn a certificate.') + return _('After this date, the course will be archived, which means you can review the ' + 'course content but can no longer participate in graded assignments or work towards earning ' + 'a certificate.') else: return _('After the course ends, the course content will be archived and no longer active.') elif self.date: diff --git a/lms/djangoapps/courseware/tests/test_date_summary.py b/lms/djangoapps/courseware/tests/test_date_summary.py index d11c1bbe21..e9d0b35f86 100644 --- a/lms/djangoapps/courseware/tests/test_date_summary.py +++ b/lms/djangoapps/courseware/tests/test_date_summary.py @@ -520,8 +520,9 @@ class CourseDateSummaryTest(SharedModuleStoreTestCase): user = create_user() CourseEnrollmentFactory(course_id=course.id, user=user, mode=CourseMode.VERIFIED) block = CourseEndDate(course, user) - assert block.description == ('This course will be archived, which means you can review the course content ' - 'but can no longer participate in graded assignments or earn a certificate.') + assert block.description == ('After this date, the course will be archived, which means you can review the ' + 'course content but can no longer participate in graded assignments or work ' + 'towards earning a certificate.') def test_course_end_date_for_non_certificate_eligible_mode(self): course = create_course_run(days_till_start=-1)