if(!includeAllStreams)notices.push(i18n.t('If your source files have more than two tracks, the extra tracks might have been removed. You can change this option before merging.'));
if(!exportConfirmEnabled)notices.push(i18n.t('Export options are not shown. You can enable export options by clicking the icon right next to the export button.'));
//https://github.com/mifi/lossless-cut/issues/329
if(isIphoneHevc(mainFileFormatData,mainStreams))warnings.push(i18n.t('There is a known issue with cutting iPhone HEVC videos. The output file may not work in all players.'));
<ListItemicon={TickCircleIcon}iconColor="success"fontWeight="bold">{i18n.t('Export is done!')}</ListItem>
<ListItemicon={TickCircleIcon}iconColor={hasWarnings?'warning':'success'}fontWeight="bold">{hasWarnings?i18n.t('Export finished with warning(s)'):i18n.t('Export is done!')}</ListItem>
<ListItemicon={InfoSignIcon}>{i18n.t('Please test the output file in your desired player/editor before you delete the source file.')}</ListItem>
<ListItemicon={TickCircleIcon}iconColor={hasWarnings?'warning':'success'}fontWeight="bold">{hasWarnings?i18n.t('Files merged with warning(s)'):i18n.t('Files merged!')}</ListItem>
<ListItemicon={InfoSignIcon}>{i18n.t('Please test the output files in your desired player/editor before you delete the source files.')}</ListItem>
if(relDiff>maxDiffPercent/100)returni18n.t('The size of the merged output file ({{outputFileTotalSize}}) differs from the total size of source files ({{sourceFilesTotalSize}}) by more than {{maxDiffPercent}}%. This could indicate that there was a problem during the merge.',{maxDiffPercent,sourceFilesTotalSize,outputFileTotalSize});