improve docs #2315

pull/2320/head
Mikael Finstad 1 year ago
parent cfe7620d2e
commit ed05c76f23
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -357,7 +357,10 @@ function Settings({
{showAdvanced && (
<Row>
<KeyCell>{t('File names of extracted video frames')}</KeyCell>
<KeyCell>
{t('File names of extracted video frames')}
<div style={detailsStyle}>{t('Note that this only applies when extracting multiple frames. When "Frame number" is selected, frame numbers are relative to the start of the segment (starting from 1).')}</div>
</KeyCell>
<td>
<Button iconBefore={captureFrameFileNameFormat === 'timestamp' ? TimeIcon : NumericalIcon} onClick={() => setCaptureFrameFileNameFormat((existing) => (existing === 'timestamp' ? 'index' : 'timestamp'))}>
{captureFrameFileNameFormat === 'timestamp' ? t('Frame timestamp') : t('Frame number')}

Loading…
Cancel
Save