Add options to limit video duration

This commit is contained in:
Kijin Sung 2023-05-24 13:23:00 +09:00
parent a14cf85763
commit 0071d3f2dc
4 changed files with 29 additions and 0 deletions

View file

@ -57,6 +57,7 @@ $lang->msg_exceeds_max_image_height = 'This image is too large. The maximum perm
$lang->msg_exceeds_max_video_size = 'This video is too large. Videos must be no larger than %dx%dpx.';
$lang->msg_exceeds_max_video_width = 'This video is too large. The maximum permitted width is %dpx.';
$lang->msg_exceeds_max_video_height = 'This video is too large. The maximum permitted height is %dpx.';
$lang->msg_exceeds_max_video_duration = 'This video is too long. The maximum permitted duration is %d seconds.';
$lang->msg_file_not_found = 'Could not find requested file.';
$lang->msg_file_key_expired = 'This download link is expired. Please initiate the download again.';
$lang->file_search_target_list['filename'] = 'File Name';
@ -94,6 +95,7 @@ $lang->about_max_image_size = 'Limit the dimensions of uploaded images. Note tha
$lang->max_image_size_action_nothing = 'If exceeded, do nothing';
$lang->max_image_size_action_block = 'If exceeded, block upload';
$lang->max_image_size_action_resize = 'If exceeded, resize automatically';
$lang->max_image_size_action_cut = 'If exceeded, cut automatically';
$lang->max_image_size_same_format_Y = 'Maintain file format';
$lang->max_image_size_same_format_N = 'Convert to JPG';
$lang->max_image_size_admin = 'Also apply to administrator';