Commit 7d9607f0 by polesye

Merge pull request #800 from edx/anton/replace_subtitles_with_timed_transcript

Video Player: replace the description in the studio editing module for "subtitles" with "timed transcript"
parents 4cb78630 dd9b16c2
......@@ -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],
......
......@@ -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=""
)
......
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