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
7b4ea225
Commit
7b4ea225
authored
Jan 30, 2014
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove periods from error messages
parent
ead1e232
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
common/djangoapps/student/views.py
+7
-7
No files found.
common/djangoapps/student/views.py
View file @
7b4ea225
...
...
@@ -941,13 +941,13 @@ def create_account(request, post_override=None):
if
len
(
post_vars
[
field_name
])
<
min_length
:
error_str
=
{
'username'
:
_
(
'Username must be minimum of two characters long
.
'
),
'email'
:
_
(
'A properly formatted e-mail is required
.
'
),
'name'
:
_
(
'Your legal name must be a minimum of two characters long
.
'
),
'password'
:
_
(
'A valid password is required
.
'
),
'terms_of_service'
:
_
(
'Accepting Terms of Service is required
.
'
),
'honor_code'
:
_
(
'Agreeing to the Honor Code is required
.
'
),
'level_of_education'
:
_
(
'A level of education is required
.
'
),
'username'
:
_
(
'Username must be minimum of two characters long'
),
'email'
:
_
(
'A properly formatted e-mail is required'
),
'name'
:
_
(
'Your legal name must be a minimum of two characters long'
),
'password'
:
_
(
'A valid password is required'
),
'terms_of_service'
:
_
(
'Accepting Terms of Service is required'
),
'honor_code'
:
_
(
'Agreeing to the Honor Code is required'
),
'level_of_education'
:
_
(
'A level of education is required'
),
'gender'
:
_
(
'Your gender is required'
),
'year_of_birth'
:
_
(
'Your year of birth is required'
),
'mailing_address'
:
_
(
'Your mailing address is required'
),
...
...
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