Commit 0e2bf223 by polesye

BLD-726: ChoiceTextGroup i18n.

parent 04c94265
...@@ -1661,23 +1661,28 @@ class ChoiceTextGroup(InputTypeBase): ...@@ -1661,23 +1661,28 @@ class ChoiceTextGroup(InputTypeBase):
elif self.tag == 'checkboxtextgroup': elif self.tag == 'checkboxtextgroup':
self.html_input_type = "checkbox" self.html_input_type = "checkbox"
else: else:
raise Exception("ChoiceGroup: unexpected tag {0}".format(self.tag)) _ = self.capa_system.i18n.ugettext
msg = _("{input_type}: unexpected tag {tag_name}").format(
input_type="ChoiceTextGroup", tag_name=self.tag
)
raise Exception(msg)
if self.value == '': if self.value == '':
# Make `value` an empty dictionary, if it currently has an empty # Make `value` an empty dictionary, if it currently has an empty
# value. This is necessary because the template expects a # value. This is necessary because the template expects a
# dictionary. # dictionary.
self.value = {} self.value = {}
self.choices = self.extract_choices(self.xml) self.choices = self.extract_choices(self.xml, self.capa_system.i18n)
@classmethod @classmethod
def get_attributes(cls): def get_attributes(cls):
""" """
Returns a list of `Attribute` for this problem type Returns a list of `Attribute` for this problem type
""" """
_ = lambda text: text
return [ return [
Attribute("show_correctness", "always"), Attribute("show_correctness", "always"),
Attribute("submitted_message", "Answer received."), Attribute("submitted_message", _("Answer received.")),
Attribute("label", ""), Attribute("label", ""),
] ]
...@@ -1694,7 +1699,7 @@ class ChoiceTextGroup(InputTypeBase): ...@@ -1694,7 +1699,7 @@ class ChoiceTextGroup(InputTypeBase):
} }
@staticmethod @staticmethod
def extract_choices(element): def extract_choices(element, i18n):
""" """
Extracts choices from the xml for this problem type. Extracts choices from the xml for this problem type.
If we have xml that is as follows(choice names will have been assigned If we have xml that is as follows(choice names will have been assigned
...@@ -1734,14 +1739,19 @@ class ChoiceTextGroup(InputTypeBase): ...@@ -1734,14 +1739,19 @@ class ChoiceTextGroup(InputTypeBase):
] ]
""" """
_ = i18n.ugettext
choices = [] choices = []
for choice in element: for choice in element:
if choice.tag != 'choice': if choice.tag != 'choice':
raise Exception( msg = "[capa.inputtypes.extract_choices] {0}".format(
"[capa.inputtypes.extract_choices] Expected a <choice>" + # Translators: a "tag" is an XML element, such as "<b>" in HTML
"tag; got {0} instead".format(choice.tag) _("Expected a {expected_tag} tag; got {given_tag} instead").format(
expected_tag=u"<choice>",
given_tag=choice.tag,
)
) )
raise Exception(msg)
components = [] components = []
choice_text = '' choice_text = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment