From 6b9d3603eccec87d524383d0015615233ad744b4 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Sun, 3 May 2020 21:42:16 +0800 Subject: [PATCH] improve text #322 --- public/locales/en/translation.json | 4 ++-- src/App.jsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index dc88a220c24..9cdb6e521b9 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -11,7 +11,7 @@ "Will now cut at the nearest keyframe before the desired start cutpoint. This is recommended for most files.": "Will now cut at the nearest keyframe before the desired start cutpoint. This is recommended for most files.", "Keyframe cut disabled": "Keyframe cut disabled", "Will now cut at the exact position, but may leave an empty portion at the beginning of the file. You may have to set the cutpoint a few frames before the next keyframe to achieve a precise cut": "Will now cut at the exact position, but may leave an empty portion at the beginning of the file. You may have to set the cutpoint a few frames before the next keyframe to achieve a precise cut", - "File not natively supported. Preview may have no audio or low quality. The final export will however be lossless with audio. You may convert it from the menu for a better preview.": "File not natively supported. Preview may have no audio or low quality. The final export will however be lossless with audio. You may convert it from the menu for a better preview.", + "File not natively supported. Preview may have no audio or low quality. The final export will however be lossless with audio. You may convert it from the menu for a better preview with audio.": "File not natively supported. Preview may have no audio or low quality. The final export will however be lossless with audio. You may convert it from the menu for a better preview with audio.", "Unable to playback this file. Try to convert to supported format from the menu": "Unable to playback this file. Try to convert to supported format from the menu", "Converting to supported format": "Converting to supported format", "Are you sure you want to move the source file to trash?": "Are you sure you want to move the source file to trash?", @@ -239,7 +239,7 @@ "Close": "Close", "Failed to run ffmpeg:": "Failed to run ffmpeg:", "Set custom start time offset": "Set custom start time offset", - "Instead of video apparently starting at 0, you can offset by a specified value (useful for viewing/cutting videos according to timecodes)": "Instead of video apparently starting at 0, you can offset by a specified value (useful for viewing/cutting videos according to timecodes)", + "Instead of video apparently starting at 0, you can offset by a specified value. This only applies to the preview inside LosslessCut and does not modify the file in any way. Useful for viewing/cutting videos according to timecodes)": "Instead of video apparently starting at 0, you can offset by a specified value. This only applies to the preview inside LosslessCut and does not modify the file in any way. Useful for viewing/cutting videos according to timecodes)", "Fastest: Low playback speed (no audio)": "Fastest: Low playback speed (no audio)", "Fastest: Low playback speed": "Fastest: Low playback speed", "Fast: Full quality remux (no audio), likely to fail": "Fast: Full quality remux (no audio), likely to fail", diff --git a/src/App.jsx b/src/App.jsx index 967610ea671..85694140f7e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -835,7 +835,7 @@ const App = memo(() => { useEffect(() => () => waveform && URL.revokeObjectURL(waveform.url), [waveform]); function showUnsupportedFileMessage() { - toast.fire({ timer: 13000, text: i18n.t('File not natively supported. Preview may have no audio or low quality. The final export will however be lossless with audio. You may convert it from the menu for a better preview.') }); + toast.fire({ timer: 13000, text: i18n.t('File not natively supported. Preview may have no audio or low quality. The final export will however be lossless with audio. You may convert it from the menu for a better preview with audio.') }); } const createDummyVideo = useCallback(async (cod, fp) => {