From 7b29d1bdf25d341d74e196b07ccafa4f7e8a1a5a Mon Sep 17 00:00:00 2001 From: Mehak Nasir Date: Tue, 27 Jul 2021 20:32:31 +0500 Subject: [PATCH] fix: description updates for pages and resources --- lms/djangoapps/course_wiki/plugins/__init__.py | 2 +- lms/djangoapps/courseware/plugins.py | 6 +++--- lms/djangoapps/edxnotes/plugins.py | 2 +- openedx/core/djangoapps/discussions/plugins.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lms/djangoapps/course_wiki/plugins/__init__.py b/lms/djangoapps/course_wiki/plugins/__init__.py index 9c4e35b8c7..9c0a78aa59 100644 --- a/lms/djangoapps/course_wiki/plugins/__init__.py +++ b/lms/djangoapps/course_wiki/plugins/__init__.py @@ -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 diff --git a/lms/djangoapps/courseware/plugins.py b/lms/djangoapps/courseware/plugins.py index 6f365a4319..57169f3bf5 100644 --- a/lms/djangoapps/courseware/plugins.py +++ b/lms/djangoapps/courseware/plugins.py @@ -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: diff --git a/lms/djangoapps/edxnotes/plugins.py b/lms/djangoapps/edxnotes/plugins.py index f8ddec8efe..9df87219b5 100644 --- a/lms/djangoapps/edxnotes/plugins.py +++ b/lms/djangoapps/edxnotes/plugins.py @@ -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 diff --git a/openedx/core/djangoapps/discussions/plugins.py b/openedx/core/djangoapps/discussions/plugins.py index a1fe037e1d..3694b5cf25 100644 --- a/openedx/core/djangoapps/discussions/plugins.py +++ b/openedx/core/djangoapps/discussions/plugins.py @@ -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: