fix: description updates for pages and resources

This commit is contained in:
Mehak Nasir
2021-07-27 20:32:31 +05:00
parent c927e2cebf
commit 7b29d1bdf2
4 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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

View File

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