Merge pull request #9868 from louyihua/i18n_fix

i18n fix
This commit is contained in:
Ned Batchelder
2015-09-24 10:23:58 -04:00
8 changed files with 32 additions and 15 deletions

View File

@@ -193,12 +193,12 @@ class CapaFields(object):
scope=Scope.settings
)
matlab_api_key = String(
display_name="Matlab API key",
help="Enter the API key provided by MathWorks for accessing the MATLAB Hosted Service. "
"This key is granted for exclusive use by this course for the specified duration. "
"Please do not share the API key with other courses and notify MathWorks immediately "
"if you believe the key is exposed or compromised. To obtain a key for your course, "
"or to report an issue, please contact moocsupport@mathworks.com",
display_name=_("Matlab API key"),
help=_("Enter the API key provided by MathWorks for accessing the MATLAB Hosted Service. "
"This key is granted for exclusive use by this course for the specified duration. "
"Please do not share the API key with other courses and notify MathWorks immediately "
"if you believe the key is exposed or compromised. To obtain a key for your course, "
"or to report an issue, please contact moocsupport@mathworks.com"),
scope=Scope.settings
)

View File

@@ -163,7 +163,7 @@ class VideoFields(object):
"Specify whether access to this video is limited to browsers only, or if it can be "
"accessed from other applications including mobile apps."
),
display_name="Video Available on Web Only",
display_name=_("Video Available on Web Only"),
scope=Scope.settings,
default=False
)