diff --git a/src/components/FixCreationTime.tsx b/src/components/FixCreationTime.tsx index 6e613c8fe..25ff329ad 100644 --- a/src/components/FixCreationTime.tsx +++ b/src/components/FixCreationTime.tsx @@ -77,7 +77,10 @@ export default function FixCreationTime(props: Props) { show={props.isOpen} onHide={props.hide} attributes={{ - title: constants.FIX_CREATION_TIME, + title: + fixState === FIX_STATE.RUNNING + ? constants.FIX_CREATION_TIME_IN_PROGRESS + : constants.FIX_CREATION_TIME, staticBackdrop: true, nonClosable: true, }}> diff --git a/src/utils/strings/englishConstants.tsx b/src/utils/strings/englishConstants.tsx index 09bd5aaf3..69aa8d8aa 100644 --- a/src/utils/strings/englishConstants.tsx +++ b/src/utils/strings/englishConstants.tsx @@ -597,17 +597,17 @@ const englishConstants = { <>could not compress some of your thumbnails, please retry ), FIX_CREATION_TIME: 'fix time', + FIX_CREATION_TIME_IN_PROGRESS: 'fixing time', CREATION_TIME_UPDATED: `file time updated`, UPDATE_CREATION_TIME_NOT_STARTED: () => ( - <>update file time with values from EXIF + <>do you want to fix time with the values found in EXIF ), UPDATE_CREATION_TIME_COMPLETED: () => <>successfully updated all files, UPDATE_CREATION_TIME_COMPLETED_WITH_ERROR: () => ( <>file time updation failed for some files, please retry ), - FIX_CREATION_TIME_LATER: 'update later', FILE_NAME_CHARACTER_LIMIT: '100 characters max', };