Replace the description in the studio editing module.

This commit is contained in:
Anton Stupak
2013-08-27 15:22:41 +03:00
parent 4cb7863074
commit dd9b16c2cf
2 changed files with 4 additions and 4 deletions

View File

@@ -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],

View File

@@ -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=""
)