Merge pull request #13955 from edx/ibrahimahmed443/WL-669-education-dropdown-capitalization

fix inconsistent capitalization in education drop down
This commit is contained in:
Douglas Hall
2016-11-10 05:46:00 -05:00
committed by GitHub
2 changed files with 6 additions and 6 deletions

View File

@@ -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,