Skip to content
Snippets Groups Projects
Unverified Commit ceb0933f authored by Ned Batchelder's avatar Ned Batchelder Committed by GitHub
Browse files

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

fix: Studio setting descriptions shouldn't mention edx.org
parents 1fe0eee9 70ddda4e
No related branches found
Tags release-2021-02-04-20.02
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment