From 70ddda4e71daf9e06bbffbcfd7052f99484e0e28 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 1 Feb 2021 07:51:35 -0500 Subject: [PATCH] fix: messages shouldn't name edx.org These messages appear on 1000 other sites that are not publishing to edx.org. There's no need to be so specific. --- common/lib/xmodule/xmodule/course_module.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/lib/xmodule/xmodule/course_module.py b/common/lib/xmodule/xmodule/course_module.py index b0b08df980..cd69c89831 100644 --- a/common/lib/xmodule/xmodule/course_module.py +++ b/common/lib/xmodule/xmodule/course_module.py @@ -374,7 +374,7 @@ class CourseFields(object): scope=Scope.settings ) display_name = String( - help=_("Enter the name of the course as it should appear in the edX.org course list."), + help=_("Enter the name of the course as it should appear in the course list."), default="Empty", display_name=_("Course Display Name"), scope=Scope.settings, @@ -443,7 +443,7 @@ class CourseFields(object): is_new = Boolean( display_name=_("Course Is New"), help=_( - "Enter true or false. If true, the course appears in the list of new courses on edx.org, and a New! " + "Enter true or false. If true, the course appears in the list of new courses, and a New! " "badge temporarily appears next to the course image." ), scope=Scope.settings @@ -742,7 +742,7 @@ class CourseFields(object): allow_public_wiki_access = Boolean( display_name=_("Allow Public Wiki Access"), help=_( - "Enter true or false. If true, edX users can view the course wiki even " + "Enter true or false. If true, students can view the course wiki even " "if they're not enrolled in the course." ), default=False,