Commit 6b90763d by David Baumgold

i18n some strings in LmsBlockMixin

parent 7641fbf5
...@@ -28,13 +28,14 @@ class LmsBlockMixin(XBlockMixin): ...@@ -28,13 +28,14 @@ class LmsBlockMixin(XBlockMixin):
Mixin that defines fields common to all blocks used in the LMS Mixin that defines fields common to all blocks used in the LMS
""" """
hide_from_toc = Boolean( 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, default=False,
scope=Scope.settings scope=Scope.settings
) )
format = String( format = String(
help="What format this module is in (used for deciding which " # Translators: "TOC" stands for "Table of Contents"
"grader to apply, and what to show in the TOC)", help=_("What format this module is in (used for deciding which "
"grader to apply, and what to show in the TOC)"),
scope=Scope.settings, scope=Scope.settings,
) )
chrome = String( chrome = String(
......
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