From 6b90763d6bb535750562afcb205dbb9db6b74dfe Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Wed, 4 Mar 2015 14:45:20 -0500 Subject: [PATCH] i18n some strings in LmsBlockMixin --- lms/djangoapps/lms_xblock/mixin.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lms/djangoapps/lms_xblock/mixin.py b/lms/djangoapps/lms_xblock/mixin.py index 38ad6cb0c8..9c7b2e3475 100644 --- a/lms/djangoapps/lms_xblock/mixin.py +++ b/lms/djangoapps/lms_xblock/mixin.py @@ -28,13 +28,14 @@ class LmsBlockMixin(XBlockMixin): Mixin that defines fields common to all blocks used in the LMS """ hide_from_toc = Boolean( - help="Whether to display this module in the table of contents", + help=_("Whether to display this module in the table of contents"), default=False, scope=Scope.settings ) format = String( - help="What format this module is in (used for deciding which " - "grader to apply, and what to show in the TOC)", + # Translators: "TOC" stands for "Table of Contents" + help=_("What format this module is in (used for deciding which " + "grader to apply, and what to show in the TOC)"), scope=Scope.settings, ) chrome = String(