Commit dffdd139 by Ahsan Ulhaq

Help text update for full name

ECOM-2993
parent 5043b465
...@@ -892,7 +892,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase): ...@@ -892,7 +892,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
u"required": True, u"required": True,
u"label": u"Full name", u"label": u"Full name",
u"placeholder": u"Jane Doe", 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": { u"restrictions": {
"max_length": 255 "max_length": 255
}, },
...@@ -978,7 +978,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase): ...@@ -978,7 +978,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
u"required": True, u"required": True,
u"label": u"Full name", u"label": u"Full name",
u"placeholder": u"Jane Doe", 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": { u"restrictions": {
"max_length": NAME_MAX_LENGTH, "max_length": NAME_MAX_LENGTH,
} }
......
...@@ -360,7 +360,7 @@ class RegistrationView(APIView): ...@@ -360,7 +360,7 @@ class RegistrationView(APIView):
# Translators: These instructions appear on the registration form, immediately # Translators: These instructions appear on the registration form, immediately
# below a field meant to hold the user's full name. # 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( form_desc.add_field(
"name", "name",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment