diff --git a/src/renderer/src/components/OutSegTemplateEditor.tsx b/src/renderer/src/components/OutSegTemplateEditor.tsx index c69d1665..4c98c062 100644 --- a/src/renderer/src/components/OutSegTemplateEditor.tsx +++ b/src/renderer/src/components/OutSegTemplateEditor.tsx @@ -5,6 +5,7 @@ import { useTranslation } from 'react-i18next'; import { WarningSignIcon, ErrorIcon, Button, IconButton, TickIcon, ResetIcon } from 'evergreen-ui'; import { IoIosHelpCircle } from 'react-icons/io'; import { motion, AnimatePresence } from 'framer-motion'; +import { FaEdit } from 'react-icons/fa'; import { ReactSwal } from '../swal'; import HighlightedText from './HighlightedText'; @@ -117,7 +118,12 @@ function OutSegTemplateEditor({ outSegTemplate, setOutSegTemplate, generateOutSe
{outSegFileNames != null && t('Output name(s):', { count: outSegFileNames.length })}
- {outSegFileNames != null && {outSegFileNames[currentSegIndexSafe] || outSegFileNames[0] || '-'}} + {outSegFileNames != null && ( + + {outSegFileNames[currentSegIndexSafe] || outSegFileNames[0] || '-'} + {!needToShow && } + + )} {needToShow && ( @@ -127,6 +133,7 @@ function OutSegTemplateEditor({ outSegTemplate, setOutSegTemplate, generateOutSe animate={{ opacity: 1, height: 'auto', marginTop: '1em' }} exit={{ opacity: 0, height: 0, marginTop: 0 }} > +
{t('Output file name template')}:
diff --git a/src/renderer/src/components/Settings.tsx b/src/renderer/src/components/Settings.tsx index 21057e61..3881d400 100644 --- a/src/renderer/src/components/Settings.tsx +++ b/src/renderer/src/components/Settings.tsx @@ -129,7 +129,7 @@ function Settings({ {t('Show export options screen before exporting?')}
- {t('This gives you an overview of the export and allows you to customise more parameters before exporting.')} + {t('This gives you an overview of the export and allows you to customise more parameters before exporting, like changing the output file name.')}