Merge pull request #26278 from edx/nedbat/less-specific

fix: Studio setting descriptions shouldn't mention edx.org
This commit is contained in:
Ned Batchelder
2021-02-04 16:59:57 -05:00
committed by GitHub

View File

@@ -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,