From dd9b16c2cfbe6e07bf958f2feaeded60f5b509d0 Mon Sep 17 00:00:00 2001 From: Anton Stupak Date: Tue, 27 Aug 2013 15:22:41 +0300 Subject: [PATCH] Replace the description in the studio editing module. --- cms/djangoapps/contentstore/features/video-editor.py | 2 +- common/lib/xmodule/xmodule/video_module.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cms/djangoapps/contentstore/features/video-editor.py b/cms/djangoapps/contentstore/features/video-editor.py index 312e2d545f..93d3be2ac0 100644 --- a/cms/djangoapps/contentstore/features/video-editor.py +++ b/cms/djangoapps/contentstore/features/video-editor.py @@ -29,7 +29,7 @@ def correct_video_settings(_step): ['Download Track', '', False], ['Download Video', '', False], ['End Time', '0', False], - ['HTML5 Subtitles', '', False], + ['HTML5 Timed Transcript', '', False], ['Show Captions', 'True', False], ['Start Time', '0', False], ['Video Sources', '', False], diff --git a/common/lib/xmodule/xmodule/video_module.py b/common/lib/xmodule/xmodule/video_module.py index 953447b2f2..be77cd2684 100644 --- a/common/lib/xmodule/xmodule/video_module.py +++ b/common/lib/xmodule/xmodule/video_module.py @@ -104,14 +104,14 @@ class VideoFields(object): default=[] ) track = String( - help="The external URL to download the subtitle track. This appears as a link beneath the video.", + help="The external URL to download the timed transcript track. This appears as a link beneath the video.", display_name="Download Track", scope=Scope.settings, default="" ) sub = String( - help="The name of the subtitle track (for non-Youtube videos).", - display_name="HTML5 Subtitles", + help="The name of the timed transcript track (for non-Youtube videos).", + display_name="HTML5 Timed Transcript", scope=Scope.settings, default="" )