diff --git a/cms/static/js/factories/manage_users.js b/cms/static/js/factories/manage_users.js index 5886f5eab9..2f4e5b406f 100644 --- a/cms/static/js/factories/manage_users.js +++ b/cms/static/js/factories/manage_users.js @@ -32,7 +32,7 @@ define(['jquery', 'underscore', 'gettext', 'js/views/feedback_prompt'], function msg = new PromptView.Warning({ title: gettext('Already a course team member'), message: _.template( - gettext("{email} is already on the “{course}” team. If you're trying to add a new member, please double-check the email address you provided."), { + gettext("{email} is already on the {course} team. Recheck the email address if you want to add a new member."), { email: email, course: course.escape('name') }, {interpolate: /\{(.+?)\}/g} diff --git a/cms/static/js/factories/manage_users_lib.js b/cms/static/js/factories/manage_users_lib.js index bf2fdcd6f7..388ec56c73 100644 --- a/cms/static/js/factories/manage_users_lib.js +++ b/cms/static/js/factories/manage_users_lib.js @@ -67,7 +67,7 @@ function($, _, gettext, PromptView, ViewUtils) { msg = new PromptView.Warning({ title: gettext('Already a library team member'), message: _.template( - gettext("{email} is already on the “{course}” team. If you're trying to add a new member, please double-check the email address you provided."), { + gettext("{email} is already on the {course} team. Recheck the email address if you want to add a new member."), { email: email, course: libraryName }, {interpolate: /\{(.+?)\}/g} diff --git a/cms/templates/manage_users_lib.html b/cms/templates/manage_users_lib.html index f361e01d50..0f3959ed93 100644 --- a/cms/templates/manage_users_lib.html +++ b/cms/templates/manage_users_lib.html @@ -44,7 +44,7 @@
  • - ${_("Please provide the email address of the user you'd like to add")} + ${_("Provide the email address of the user you want to add")}
  • @@ -99,7 +99,7 @@ % else:
  • - ${_("Promote another member to Admin to remove admin rights")} + ${_("Promote another member to Admin to remove your admin rights")}
  • % endif % elif is_staff: @@ -133,7 +133,7 @@

    ${_('Add More Users to This Library')}

    -

    ${_('Adding team members makes content authoring collaborative. Users must be signed up for Studio and have an active account. ')}

    +

    ${_('Grant other members of your course team access to this library. New library users must have an active {studio_name} account.').format(studio_name=settings.STUDIO_SHORT_NAME)}

    @@ -149,22 +149,11 @@ diff --git a/common/test/acceptance/tests/studio/test_studio_library.py b/common/test/acceptance/tests/studio/test_studio_library.py index afd5e8eb36..f7cb98ad03 100644 --- a/common/test/acceptance/tests/studio/test_studio_library.py +++ b/common/test/acceptance/tests/studio/test_studio_library.py @@ -361,7 +361,7 @@ class LibraryUsersPageTest(StudioLibraryTest): self.assertFalse(user.can_demote) self.assertFalse(user.can_delete) self.assertTrue(user.has_no_change_warning) - self.assertIn("Promote another member to Admin to remove admin rights", user.no_change_warning_text) + self.assertIn("Promote another member to Admin to remove your admin rights", user.no_change_warning_text) self.assertEqual(len(self.page.users), 1) user = self.page.users[0]