Commit f2086f23 by Anton Stupak

Merge pull request #3586 from edx/anton/i18n-custom-response

CustomResponse i18n.
parents ed70a082 0fa910aa
...@@ -1511,6 +1511,7 @@ class CustomResponse(LoncapaResponse): ...@@ -1511,6 +1511,7 @@ class CustomResponse(LoncapaResponse):
student_answers is a dict with everything from request.POST, but with the first part student_answers is a dict with everything from request.POST, but with the first part
of each key removed (the string before the first "_"). of each key removed (the string before the first "_").
""" """
_ = self.capa_system.i18n.ugettext
log.debug('%s: student_answers=%s', unicode(self), student_answers) log.debug('%s: student_answers=%s', unicode(self), student_answers)
...@@ -1520,9 +1521,16 @@ class CustomResponse(LoncapaResponse): ...@@ -1520,9 +1521,16 @@ class CustomResponse(LoncapaResponse):
# ordered list of answers # ordered list of answers
submission = [student_answers[k] for k in idset] submission = [student_answers[k] for k in idset]
except Exception as err: except Exception as err:
msg = ('[courseware.capa.responsetypes.customresponse] error getting' msg = _(
' student answer from %s' % student_answers) "[courseware.capa.responsetypes.customresponse] error getting"
msg += '\n idset = %s, error = %s' % (idset, err) " student answer from {student_answers}"
"\n idset = {idset}, error = {err}"
).format(
student_answers=student_answers,
idset=idset,
err=err
);
log.error(msg) log.error(msg)
raise Exception(msg) raise Exception(msg)
...@@ -1535,7 +1543,7 @@ class CustomResponse(LoncapaResponse): ...@@ -1535,7 +1543,7 @@ class CustomResponse(LoncapaResponse):
# default to no error message on empty answer (to be consistent with other # default to no error message on empty answer (to be consistent with other
# responsetypes) but allow author to still have the old behavior by setting # responsetypes) but allow author to still have the old behavior by setting
# empty_answer_err attribute # empty_answer_err attribute
msg = ('<span class="inline-error">No answer entered!</span>' msg = (u'<span class="inline-error">{0}</span>'.format(_(u'No answer entered!'))
if self.xml.get('empty_answer_err') else '') if self.xml.get('empty_answer_err') else '')
return CorrectMap(idset[0], 'incorrect', msg=msg) return CorrectMap(idset[0], 'incorrect', msg=msg)
......
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