{t('This dialog can be used to concatenate files in series, e.g. one after the other:\n[file1][file2][file3]\nIt can NOT be used for merging tracks in parallell (like adding an audio track to a video).\nMake sure all files are of the exact same codecs & codec parameters (fps, resolution etc).')}
{t('This dialog can be used to concatenate files in series, e.g. one after the other:\n[file1][file2][file3]\nIt can NOT be used for merging tracks in parallell (like adding an audio track to a video).\nMake sure all files are of the exact same codecs & codec parameters (fps, resolution etc).')}
<Checkboxchecked={includeAllStreams}onChange={(e)=>setIncludeAllStreams(e.target.checked)}label={`${t('Include all tracks?')}${t('If this is checked, all audio/video/subtitle/data tracks will be included. This may not always work for all file types. If not checked, only default streams will be included.')}`}/>
<Checkboxchecked={includeAllStreams}onChange={(e)=>setIncludeAllStreams(e.target.checked)}label={`${t('Include all tracks?')}${t('If this is checked, all audio/video/subtitle/data tracks will be included. This may not always work for all file types. If not checked, only default streams will be included.')}`}/>
<Checkboxchecked={preserveMetadataOnMerge}onChange={(e)=>setPreserveMetadataOnMerge(e.target.checked)}label={t('Preserve original metadata when merging? (slow)')}/>
<Checkboxchecked={preserveMetadataOnMerge}onChange={(e)=>setPreserveMetadataOnMerge(e.target.checked)}label={t('Preserve original metadata when merging? (slow)')}/>
<Checkboxchecked={preserveMovData}onChange={(e)=>setPreserveMovData(e.target.checked)}label={t('Preserve all MP4/MOV metadata?')}/>
<Checkboxchecked={preserveMovData}onChange={(e)=>setPreserveMovData(e.target.checked)}label={t('Preserve all MP4/MOV metadata?')}/>
<Checkboxchecked={segmentsToChapters}onChange={(e)=>setSegmentsToChapters(e.target.checked)}label={t('Create chapters from merged segments? (slow)')}/>
<Checkboxchecked={segmentsToChapters}onChange={(e)=>setSegmentsToChapters(e.target.checked)}label={t('Create chapters from merged segments? (slow)')}/>
<Checkboxchecked={alwaysConcatMultipleFiles}onChange={(e)=>setAlwaysConcatMultipleFiles(e.target.checked)}label={t('Always open this dialog when opening multiple files')}/>
<Checkboxchecked={alwaysConcatMultipleFiles}onChange={(e)=>setAlwaysConcatMultipleFiles(e.target.checked)}label={t('Always open this dialog when opening multiple files')}/>
<Paragraph>{t('Note that also other settings from the normal export dialog apply to this merge function. For more information about all options, see the export dialog.')}</Paragraph>
</div>
<Checkboxchecked={clearBatchFilesAfterConcat}onChange={(e)=>setClearBatchFilesAfterConcat(e.target.checked)}label={t('Clear batch file list after merge')}/>
<Paragraph>{t('Note that also other settings from the normal export dialog apply to this merge function. For more information about all options, see the export dialog.')}</Paragraph>