Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #20253 from edx/waheed/LEARNER-5258-message-updates
Browse files Browse the repository at this point in the history
Update third party auth login page message.
  • Loading branch information
waheedahmed committed Apr 17, 2019
2 parents cd2e58e + 3bdf83d commit fd6170f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/djangoapps/third_party_auth/tests/specs/base.py
Expand Up @@ -123,7 +123,7 @@ def assert_json_failure_response_is_missing_social_auth(self, response):
"""Asserts failure on /login for missing social auth looks right."""
self.assertEqual(403, response.status_code)
self.assertIn(
u"successfully logged into your %s account, but this account isn't linked" % self.provider.name,
u"successfully signed in to your %s account, but this account isn't linked" % self.provider.name,
response.content.decode(response.charset)
)

Expand Down
4 changes: 2 additions & 2 deletions openedx/core/djangoapps/user_authn/views/login.py
Expand Up @@ -57,9 +57,9 @@ def _do_third_party_auth(request):
username=username, backend_name=backend_name)
)
message = Text(_(
u"You've successfully logged into your {provider_name} account, "
u"You've successfully signed in to your {provider_name} account, "
u"but this account isn't linked with your {platform_name} account yet. {blank_lines}"
u"Use your {platform_name} username and password to log into {platform_name} below, "
u"Use your {platform_name} username and password to sign in to {platform_name} below, "
u"and then link your {platform_name} account with {provider_name} from your dashboard. {blank_lines}"
u"If you don't have an account on {platform_name} yet, "
u"click {register_label_strong} at the top of the page."
Expand Down

0 comments on commit fd6170f

Please sign in to comment.