Commit 0333f05e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: clarify a text

Close #5321
parent 0d18d564
...@@ -1496,7 +1496,7 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) : ...@@ -1496,7 +1496,7 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
AVLayout->addWidget( plusAV, 0, 3, 1, 1 ); AVLayout->addWidget( plusAV, 0, 3, 1, 1 );
QLabel *AVLabel = new QLabel; QLabel *AVLabel = new QLabel;
AVLabel->setText( qtr( "Advance of audio over video:" ) ); AVLabel->setText( qtr( "Add a delay to the audio track:" ) );
AVLayout->addWidget( AVLabel, 0, 0, 1, 1 ); AVLayout->addWidget( AVLabel, 0, 0, 1, 1 );
AVSpin = new QDoubleSpinBox; AVSpin = new QDoubleSpinBox;
...@@ -1505,8 +1505,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) : ...@@ -1505,8 +1505,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
AVSpin->setMinimum( -600.0 ); AVSpin->setMinimum( -600.0 );
AVSpin->setMaximum( 600.0 ); AVSpin->setMaximum( 600.0 );
AVSpin->setSingleStep( 0.1 ); AVSpin->setSingleStep( 0.1 );
AVSpin->setToolTip( qtr( "A positive value means that\n" AVSpin->setToolTip( qtr( "A positive value will delay\n"
"the audio is ahead of the video" ) ); "the audio, when it was ahead of the video" ) );
AVSpin->setSuffix( " s" ); AVSpin->setSuffix( " s" );
AVLayout->addWidget( AVSpin, 0, 2, 1, 1 ); AVLayout->addWidget( AVSpin, 0, 2, 1, 1 );
mainLayout->addWidget( AVBox, 1, 0, 1, 5 ); mainLayout->addWidget( AVBox, 1, 0, 1, 5 );
...@@ -1529,7 +1529,7 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) : ...@@ -1529,7 +1529,7 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
subsLayout->addWidget( plussubs, 0, 3, 1, 1 ); subsLayout->addWidget( plussubs, 0, 3, 1, 1 );
QLabel *subsLabel = new QLabel; QLabel *subsLabel = new QLabel;
subsLabel->setText( qtr( "Advance of subtitles over video:" ) ); subsLabel->setText( qtr( "Add a delay to the subtitle track:" ) );
subsLayout->addWidget( subsLabel, 0, 0, 1, 1 ); subsLayout->addWidget( subsLabel, 0, 0, 1, 1 );
subsSpin = new QDoubleSpinBox; subsSpin = new QDoubleSpinBox;
...@@ -1538,8 +1538,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) : ...@@ -1538,8 +1538,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
subsSpin->setMinimum( -600.0 ); subsSpin->setMinimum( -600.0 );
subsSpin->setMaximum( 600.0 ); subsSpin->setMaximum( 600.0 );
subsSpin->setSingleStep( 0.1 ); subsSpin->setSingleStep( 0.1 );
subsSpin->setToolTip( qtr( "A positive value means that\n" subsSpin->setToolTip( qtr( "A positive value will delay the\n"
"the subtitles are ahead of the video" ) ); "subtitles, when they were ahead of the video" ) );
subsSpin->setSuffix( " s" ); subsSpin->setSuffix( " s" );
subsLayout->addWidget( subsSpin, 0, 2, 1, 1 ); subsLayout->addWidget( subsSpin, 0, 2, 1, 1 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment