Merge pull request #10735 from edx/ahsan/ECOM-2993-Help-text-update-for-full-name

Help text update for full name
This commit is contained in:
Ahsan Ulhaq
2015-11-27 15:14:08 +05:00
2 changed files with 3 additions and 3 deletions

View File

@@ -892,7 +892,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
u"required": True,
u"label": u"Full name",
u"placeholder": u"Jane Doe",
u"instructions": u"Needed for any certificates you may earn",
u"instructions": u"Your legal name, used for any certificates you earn.",
u"restrictions": {
"max_length": 255
},
@@ -978,7 +978,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
u"required": True,
u"label": u"Full name",
u"placeholder": u"Jane Doe",
u"instructions": u"Needed for any certificates you may earn",
u"instructions": u"Your legal name, used for any certificates you earn.",
u"restrictions": {
"max_length": NAME_MAX_LENGTH,
}

View File

@@ -360,7 +360,7 @@ class RegistrationView(APIView):
# Translators: These instructions appear on the registration form, immediately
# below a field meant to hold the user's full name.
name_instructions = _(u"Needed for any certificates you may earn")
name_instructions = _(u"Your legal name, used for any certificates you earn.")
form_desc.add_field(
"name",