From 2c6226362e70fe3e33aba9053b1901d835ef276d Mon Sep 17 00:00:00 2001 From: ataki Date: Tue, 14 Apr 2015 16:00:05 -0400 Subject: [PATCH] Warning that hard start/stop times don't work for mobile --- .../xmodule/xmodule/video_module/video_xfields.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/common/lib/xmodule/xmodule/video_module/video_xfields.py b/common/lib/xmodule/xmodule/video_module/video_xfields.py index ea0cbbcfb3..fa551a63f2 100644 --- a/common/lib/xmodule/xmodule/video_module/video_xfields.py +++ b/common/lib/xmodule/xmodule/video_module/video_xfields.py @@ -52,13 +52,21 @@ class VideoFields(object): default="" ) start_time = RelativeTime( # datetime.timedelta object - help=_("Time you want the video to start if you don't want the entire video to play. Formatted as HH:MM:SS. The maximum value is 23:59:59."), + help=_( + "Time you want the video to start if you don't want the entire video to play. " + "Not supported in the native mobile app: the full video file will play. " + "Formatted as HH:MM:SS. The maximum value is 23:59:59." + ), display_name=_("Video Start Time"), scope=Scope.settings, default=datetime.timedelta(seconds=0) ) end_time = RelativeTime( # datetime.timedelta object - help=_("Time you want the video to stop if you don't want the entire video to play. Formatted as HH:MM:SS. The maximum value is 23:59:59."), + help=_( + "Time you want the video to stop if you don't want the entire video to play. " + "Not supported in the native mobile app: the full video file will play. " + "Formatted as HH:MM:SS. The maximum value is 23:59:59." + ), display_name=_("Video Stop Time"), scope=Scope.settings, default=datetime.timedelta(seconds=0)