From c11286eb2191809b9cacd89ae826e049acd27724 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Thu, 24 Feb 2022 12:28:10 +0800 Subject: [PATCH] improve menu labels someone thought it would merge right away when clicking --- src/components/BatchFilesList.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/BatchFilesList.jsx b/src/components/BatchFilesList.jsx index d3a88f21..6b0dce1b 100644 --- a/src/components/BatchFilesList.jsx +++ b/src/components/BatchFilesList.jsx @@ -11,8 +11,8 @@ const BatchFilesList = memo(({ filePath, width, batchFiles, batchOpenSingleFile, const { t } = useTranslation(); const contextMenuTemplate = useMemo(() => [ - { label: t('Merge/concatenate files'), click: onMergeFilesClick }, - { label: t('Convert to supported format'), click: onBatchConvertToSupportedFormatClick }, + { label: `${t('Merge/concatenate files')}...`, click: onMergeFilesClick }, + { label: `${t('Convert to supported format')}...`, click: onBatchConvertToSupportedFormatClick }, { type: 'separator' }, { label: t('Close batch'), click: closeBatch }, ], [closeBatch, onBatchConvertToSupportedFormatClick, onMergeFilesClick, t]);