chore: Tooltip texts have been changed #68

This commit is contained in:
Yiannis Christodoulou 2025-06-11 03:56:52 +03:00
parent 687d140d9b
commit c989b1515e
2 changed files with 7 additions and 7 deletions

View File

@ -62,7 +62,7 @@ const EditingTools = ({
<button <button
className={`button segments-button`} className={`button segments-button`}
onClick={onPlaySegments} onClick={onPlaySegments}
data-tooltip={isPlayingSegments ? "Stop segments playback" : "Play all segments continuously until the end"} data-tooltip={isPlayingSegments ? "Stop segments playback" : "Play segments in one continuous flow"}
style={{ fontSize: '0.875rem' }} style={{ fontSize: '0.875rem' }}
> >
{isPlayingSegments ? ( {isPlayingSegments ? (

View File

@ -2389,7 +2389,7 @@ const TimelineControls = ({
<div className="tooltip-row"> <div className="tooltip-row">
<button <button
className="tooltip-time-btn" className="tooltip-time-btn"
data-tooltip="Decrease by 50ms (hold for continuous adjustment)" data-tooltip="Seek -50ms (click or hold)"
{...handleContinuousTimeAdjustment(-0.05)} {...handleContinuousTimeAdjustment(-0.05)}
style={{ style={{
userSelect: 'none', userSelect: 'none',
@ -2405,7 +2405,7 @@ const TimelineControls = ({
<div className="tooltip-time-display">{formatDetailedTime(displayTime)}</div> <div className="tooltip-time-display">{formatDetailedTime(displayTime)}</div>
<button <button
className="tooltip-time-btn" className="tooltip-time-btn"
data-tooltip="Increase by 50ms (hold for continuous adjustment)" data-tooltip="Seek +50ms (click or hold)"
{...handleContinuousTimeAdjustment(0.05)} {...handleContinuousTimeAdjustment(0.05)}
style={{ style={{
userSelect: 'none', userSelect: 'none',
@ -2686,7 +2686,7 @@ const TimelineControls = ({
<div className="tooltip-row"> <div className="tooltip-row">
<button <button
className="tooltip-time-btn" className="tooltip-time-btn"
data-tooltip="Decrease by 50ms (hold for continuous adjustment)" data-tooltip="Seek -50ms (click or hold)"
{...handleContinuousTimeAdjustment(-0.05)} {...handleContinuousTimeAdjustment(-0.05)}
> >
-50ms -50ms
@ -2694,7 +2694,7 @@ const TimelineControls = ({
<div className="tooltip-time-display">{formatDetailedTime(clickedTime)}</div> <div className="tooltip-time-display">{formatDetailedTime(clickedTime)}</div>
<button <button
className="tooltip-time-btn" className="tooltip-time-btn"
data-tooltip="Increase by 50ms (hold for continuous adjustment)" data-tooltip="Seek +50ms (click or hold)"
{...handleContinuousTimeAdjustment(0.05)} {...handleContinuousTimeAdjustment(0.05)}
> >
+50ms +50ms
@ -3253,7 +3253,7 @@ const TimelineControls = ({
{/* Segment end adjustment button (always shown) */} {/* Segment end adjustment button (always shown) */}
<button <button
className="tooltip-action-btn segment-end" className="tooltip-action-btn segment-end"
data-tooltip="Adjust end of previous segment or create segment from start" data-tooltip="Adjust end of previous segment"
onClick={(e) => { onClick={(e) => {
e.stopPropagation(); e.stopPropagation();
@ -3430,7 +3430,7 @@ const TimelineControls = ({
{/* Segment start adjustment button (always shown) */} {/* Segment start adjustment button (always shown) */}
<button <button
className="tooltip-action-btn segment-start" className="tooltip-action-btn segment-start"
data-tooltip="Adjust start of next segment or create segment to end" data-tooltip="Adjust start of next segment"
onClick={(e) => { onClick={(e) => {
e.stopPropagation(); e.stopPropagation();