diff --git a/src/BottomBar.jsx b/src/BottomBar.jsx index c56b3583..b6eccac7 100644 --- a/src/BottomBar.jsx +++ b/src/BottomBar.jsx @@ -141,7 +141,7 @@ const BottomBar = memo(({ handleCutTimeInput(e.target.value)} onPaste={handleCutTimePaste} value={isCutTimeManualSet() @@ -204,11 +204,11 @@ const BottomBar = memo(({ {renderJumpCutpointButton(-1)} - + )} - + {!simpleMode && renderCutTimeInput('start')} @@ -257,11 +257,11 @@ const BottomBar = memo(({ {!simpleMode && renderCutTimeInput('end')} - + {!simpleMode && ( <> - + {renderJumpCutpointButton(1)} diff --git a/src/SegmentList.jsx b/src/SegmentList.jsx index 45f1bb12..6827faeb 100644 --- a/src/SegmentList.jsx +++ b/src/SegmentList.jsx @@ -29,8 +29,8 @@ const Segment = memo(({ seg, index, currentSegIndex, formatTimecode, getFrameCou const contextMenuTemplate = useMemo(() => { if (invertCutSegments) return []; return [ - { label: t('Jump to cut start'), click: jumpSegStart }, - { label: t('Jump to cut end'), click: jumpSegEnd }, + { label: t('Jump to start time'), click: jumpSegStart }, + { label: t('Jump to end time'), click: jumpSegEnd }, { type: 'separator' }, diff --git a/src/components/KeyboardShortcuts.jsx b/src/components/KeyboardShortcuts.jsx index 7570c415..bf35b962 100644 --- a/src/components/KeyboardShortcuts.jsx +++ b/src/components/KeyboardShortcuts.jsx @@ -223,12 +223,12 @@ const KeyboardShortcuts = memo(({ category: seekingCategory, }, jumpCutStart: { - name: t('Jump to cut start'), + name: t('Jump to current segment\'s start time'), category: seekingCategory, before: , }, jumpCutEnd: { - name: t('Jump to cut end'), + name: t('Jump to current segment\'s end time'), category: seekingCategory, before: , }, @@ -255,12 +255,12 @@ const KeyboardShortcuts = memo(({ category: segmentsAndCutpointsCategory, }, setCutStart: { - name: t('Mark in / cut start point for current segment'), + name: t('Start current segment at current time'), category: segmentsAndCutpointsCategory, before: , }, setCutEnd: { - name: t('Mark out / cut end point for current segment'), + name: t('End current segment at current time'), category: segmentsAndCutpointsCategory, before: , },