Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
e61f8b62
Commit
e61f8b62
authored
Jun 01, 2017
by
Shirley He
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ENT-385 fix confirmation error message
parent
0d9146a2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
AUTHORS
+1
-0
openedx/core/djangoapps/user_api/tests/test_views.py
+1
-1
openedx/core/djangoapps/user_api/views.py
+1
-1
No files found.
AUTHORS
View file @
e61f8b62
...
@@ -281,3 +281,4 @@ Brian Mesick <bmesick@edx.org>
...
@@ -281,3 +281,4 @@ Brian Mesick <bmesick@edx.org>
Jeff LaJoie <jlajoie@edx.org>
Jeff LaJoie <jlajoie@edx.org>
Ivan Ivić <iivic@edx.org>
Ivan Ivić <iivic@edx.org>
Brandon Baker <bcbaker@wesleyan.edu>
Brandon Baker <bcbaker@wesleyan.edu>
Shirley He <she@edx.org>
openedx/core/djangoapps/user_api/tests/test_views.py
View file @
e61f8b62
...
@@ -1202,7 +1202,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, UserAPITestCase):
...
@@ -1202,7 +1202,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, UserAPITestCase):
"required"
:
True
,
"required"
:
True
,
"label"
:
"Confirm Email"
,
"label"
:
"Confirm Email"
,
"errorMessages"
:
{
"errorMessages"
:
{
"required"
:
"
Please confirm your email address
."
,
"required"
:
"
The email addresses do not match
."
,
}
}
}
}
)
)
...
...
openedx/core/djangoapps/user_api/views.py
View file @
e61f8b62
...
@@ -428,7 +428,7 @@ class RegistrationView(APIView):
...
@@ -428,7 +428,7 @@ class RegistrationView(APIView):
# Translators: This label appears above a field on the registration form
# Translators: This label appears above a field on the registration form
# meant to confirm the user's email address.
# meant to confirm the user's email address.
email_label
=
_
(
u"Confirm Email"
)
email_label
=
_
(
u"Confirm Email"
)
error_msg
=
_
(
u"
Please confirm your email address
."
)
error_msg
=
_
(
u"
The email addresses do not match
."
)
form_desc
.
add_field
(
form_desc
.
add_field
(
"confirm_email"
,
"confirm_email"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment