Updated Country Label and help text

Country Label was causing confusions for learners if it was country of origin or in which they
are living so changed it to a more appropriate message.
LEARNER-174
Also updated some other error messages to some more appropriate error messages.
This commit is contained in:
ayub-khan
2017-08-22 16:00:40 +05:00
parent 6e607fcc56
commit e737728cde
6 changed files with 33 additions and 22 deletions

View File

@@ -165,7 +165,7 @@ class AccountSettingsPageTest(AccountSettingsTestMixin, AcceptanceTest):
'Email Address',
'Password',
'Language',
'Country or Region',
'Country or Region of Residence',
'Time Zone',
]
},
@@ -410,7 +410,7 @@ class AccountSettingsPageTest(AccountSettingsTestMixin, AcceptanceTest):
"""
self._test_dropdown_field(
u'country',
u'Country or Region',
u'Country or Region of Residence',
u'',
[u'Pakistan', u'Palau'],
)

View File

@@ -345,7 +345,7 @@ class RegisterFromCombinedPageTest(UniqueCourseTest):
errors = self.register_page.wait_for_errors()
self.assertIn(u'Please enter your Public Username.', errors)
self.assertIn(u'You must agree to the édX Terms of Service and Honor Code', errors)
self.assertIn(u'Please select your Country.', errors)
self.assertIn(u'Select your country or region of residence.', errors)
self.assertIn(u'Please tell us your favorite movie.', errors)
def test_toggle_to_login_form(self):