Help text update for full name

ECOM-2993
This commit is contained in:
Ahsan Ulhaq
2015-11-25 14:39:22 +05:00
parent 5043b46525
commit dffdd13928
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",