From 10688f99f41e57f42aea7c2b980b6904a6eb3941 Mon Sep 17 00:00:00 2001
From: Bertrand Marron <bertrand.marron@ionis-group.com>
Date: Tue, 4 Mar 2014 16:40:16 +0100
Subject: [PATCH] Add translator comments for 'other' and 'none' strings

---
 common/djangoapps/student/models.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py
index 75865205cb1..c2fcdea3547 100644
--- a/common/djangoapps/student/models.py
+++ b/common/djangoapps/student/models.py
@@ -193,6 +193,7 @@ class UserProfile(models.Model):
     GENDER_CHOICES = (
         ('m', ugettext_noop('Male')),
         ('f', ugettext_noop('Female')),
+        # Translators: 'Other' refers to the student's gender
         ('o', ugettext_noop('Other'))
     )
     gender = models.CharField(
@@ -211,7 +212,9 @@ class UserProfile(models.Model):
         ('hs', ugettext_noop("Secondary/high school")),
         ('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("None")),
+        # Translators: 'Other' refers to the student's level of education
         ('other', ugettext_noop("Other"))
     )
     level_of_education = models.CharField(
-- 
GitLab