fix: description updates for pages and resources
This commit is contained in:
@@ -24,7 +24,7 @@ class WikiCourseApp(CourseApp):
|
||||
|
||||
app_id = "wiki"
|
||||
name = _("Wiki")
|
||||
description = _("Enable learners to access, and collaborate on information about your course.")
|
||||
description = _("Enable learners to access, and collaborate on course related information.")
|
||||
|
||||
@classmethod
|
||||
def is_available(cls, course_key: CourseKey) -> bool: # pylint: disable=unused-argument
|
||||
|
||||
@@ -24,7 +24,7 @@ class ProgressCourseApp(CourseApp):
|
||||
|
||||
app_id = "progress"
|
||||
name = _("Progress")
|
||||
description = _("Allow students to track their progress throughout the course.")
|
||||
description = _("Keep learners engaged and on track throughout the course.")
|
||||
|
||||
@classmethod
|
||||
def is_available(cls, course_key: CourseKey) -> bool:
|
||||
@@ -68,7 +68,7 @@ class TextbooksCourseApp(CourseApp):
|
||||
|
||||
app_id = "textbooks"
|
||||
name = _("Textbooks")
|
||||
description = _("Provide links to applicable resources for your course.")
|
||||
description = _("Create and manage a library of course readings, textbooks, and chapters.")
|
||||
|
||||
@classmethod
|
||||
def is_available(cls, course_key: CourseKey) -> bool: # pylint: disable=unused-argument
|
||||
@@ -116,7 +116,7 @@ class CalculatorCourseApp(CourseApp):
|
||||
|
||||
app_id = "calculator"
|
||||
name = _("Calculator")
|
||||
description = _("Provide an in-browser calculator that supports simple and complex calculations.")
|
||||
description = _("Provide an in-course calculator for simple and complex calculations.")
|
||||
|
||||
@classmethod
|
||||
def is_available(cls, course_key: CourseKey) -> bool:
|
||||
|
||||
@@ -53,7 +53,7 @@ class EdxNotesCourseApp(CourseApp):
|
||||
|
||||
app_id = "edxnotes"
|
||||
name = _("Notes")
|
||||
description = _("Allow students to take notes.")
|
||||
description = _("Allow learners to highlight passages and make notes right in the course.")
|
||||
|
||||
@classmethod
|
||||
def is_available(cls, course_key: CourseKey) -> bool: # pylint: disable=unused-argument
|
||||
|
||||
@@ -20,7 +20,7 @@ class DiscussionCourseApp(CourseApp):
|
||||
|
||||
app_id = "discussion"
|
||||
name = _("Discussion")
|
||||
description = _("Encourage participation and engagement in your course with discussion forums.")
|
||||
description = _("Encourage participation and engagement in your course with discussions.")
|
||||
|
||||
@classmethod
|
||||
def is_available(cls, course_key: CourseKey) -> bool:
|
||||
|
||||
Reference in New Issue
Block a user