Merge pull request #13955 from edx/ibrahimahmed443/WL-669-education-dropdown-capitalization
fix inconsistent capitalization in education drop down
This commit is contained in:
@@ -290,9 +290,9 @@ class UserProfile(models.Model):
|
||||
('jhs', ugettext_noop("Junior secondary/junior high/middle school")),
|
||||
('el', ugettext_noop("Elementary/primary school")),
|
||||
# Translators: 'None' refers to the student's level of education
|
||||
('none', ugettext_noop("No Formal Education")),
|
||||
('none', ugettext_noop("No formal education")),
|
||||
# Translators: 'Other' refers to the student's level of education
|
||||
('other', ugettext_noop("Other Education"))
|
||||
('other', ugettext_noop("Other education"))
|
||||
)
|
||||
level_of_education = models.CharField(
|
||||
blank=True, null=True, max_length=6, db_index=True,
|
||||
|
||||
Reference in New Issue
Block a user