{t('What do you want to do after exporting a file or when pressing the "delete source file" button?')}
</AlertDialog.Description>
<Checkboxlabel={t('Close currently opened file')}checked={closeFile}disabled={trashSourceFile||trashTmpFiles}onCheckedChange={(checked)=>onChange('closeFile',checked)}/>
<Checkboxlabel={t('Permanently delete the files if trash fails?')}disabled={!(trashTmpFiles||trashProjectFile||trashSourceFile)}checked={deleteIfTrashFails}onCheckedChange={(checked)=>onChange('deleteIfTrashFails',checked)}/>
</div>
<divstyle={{marginBottom:'2em'}}>
<Checkboxlabel={t('Show this dialog every time?')}checked={askForCleanup}onCheckedChange={(checked)=>onChange('askForCleanup',checked)}/>
<Checkboxlabel={t('Do all of this automatically after exporting a file?')}checked={cleanupAfterExport}onCheckedChange={(checked)=>onChange('cleanupAfterExport',checked)}/>
<p>{i18n.t('What do you want to do after exporting a file or when pressing the "delete source file" button?')}</p>
<Checkboxlabel={i18n.t('Close currently opened file')}checked={closeFile}disabled={trashSourceFile||trashTmpFiles}onCheckedChange={(checked)=>onChange('closeFile',checked)}/>
<Checkboxlabel={i18n.t('Permanently delete the files if trash fails?')}disabled={!(trashTmpFiles||trashProjectFile||trashSourceFile)}checked={deleteIfTrashFails}onCheckedChange={(checked)=>onChange('deleteIfTrashFails',checked)}/>
</div>
<divstyle={{marginTop: 25}}>
<Checkboxlabel={i18n.t('Show this dialog every time?')}checked={askForCleanup}onCheckedChange={(checked)=>onChange('askForCleanup',checked)}/>
<Checkboxlabel={i18n.t('Do all of this automatically after exporting a file?')}checked={cleanupAfterExport}onCheckedChange={(checked)=>onChange('cleanupAfterExport',checked)}/>