Change gendered language to gender-neutral 'they/them/their'

This commit is contained in:
sarina
2020-11-02 18:23:13 -05:00
parent b408d032e4
commit f414fad0cc
17 changed files with 23 additions and 23 deletions

View File

@@ -85,7 +85,7 @@ class TestActivateAccount(TestCase):
"""
Verify that account correct activation message is displayed.
If logged in user has not activated his/her account, make sure that an
If logged in user has not activated their account, make sure that an
account activation message is displayed on dashboard sidebar.
"""
# Log in with test user.

View File

@@ -249,7 +249,7 @@ class TestCourseVerificationStatus(UrlResetMixin, ModuleStoreTestCase):
attempt.mark_ready()
attempt.submit()
# Expect that learner has submitted photos for reverfication and his/her
# Expect that learner has submitted photos for reverfication and their
# previous verification is set to expired soon.
self._assert_course_verification_status(VERIFY_STATUS_RESUBMITTED)

View File

@@ -156,7 +156,7 @@ def _create_recent_enrollment_message(course_enrollments, course_modes):
def get_course_enrollments(user, org_whitelist, org_blacklist, course_limit=None):
"""
Given a user, return a filtered set of his or her course enrollments.
Given a user, return a filtered set of their course enrollments.
Arguments:
user (User): the user in question.
@@ -195,7 +195,7 @@ def get_course_enrollments(user, org_whitelist, org_blacklist, course_limit=None
def get_filtered_course_entitlements(user, org_whitelist, org_blacklist):
"""
Given a user, return a filtered set of his or her course entitlements.
Given a user, return a filtered set of their course entitlements.
Arguments:
user (User): the user in question.
@@ -428,7 +428,7 @@ def _credit_statuses(user, course_enrollments):
status["error"] = True
log.error(
u"Could not find credit provider associated with credit enrollment "
u"for user %s in course %s. The user will not be able to see his or her "
u"for user %s in course %s. The user will not be able to see their "
u"credit request status on the student dashboard. This attribute should "
u"have been set when the user purchased credit in the course.",
user.id, course_key
@@ -443,7 +443,7 @@ def _credit_statuses(user, course_enrollments):
status["error"] = True
log.error(
u"Could not find credit provider info for [%s] in [%s]. The user will not "
u"be able to see his or her credit request status on the student dashboard.",
u"be able to see their credit request status on the student dashboard.",
provider_id, provider_info_by_id
)