Commit 9024e28c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Disambiguate trivial tool tips (fixes: #3068)

This was requested for Arabic.
parent bdf005c4
......@@ -140,7 +140,7 @@ void SoundWidget::updateVolume( int i_sliderVolume )
if( i_sliderVolume == 0 )
{
volMuteLabel->setPixmap( QPixmap(":/toolbar/volume-muted" ) );
volMuteLabel->setToolTip( qtr( "Unmute" ) );
volMuteLabel->setToolTip(qfu(vlc_pgettext("Tooltip|Unmute", "Unmute")));
return;
}
......@@ -149,7 +149,7 @@ void SoundWidget::updateVolume( int i_sliderVolume )
else if( i_sliderVolume > (VOLUME_MAX * 2 / 3 ) )
volMuteLabel->setPixmap( QPixmap( ":/toolbar/volume-high" ) );
else volMuteLabel->setPixmap( QPixmap( ":/toolbar/volume-medium" ) );
volMuteLabel->setToolTip( qtr( "Mute" ) );
volMuteLabel->setToolTip( qfu(vlc_pgettext("Tooltip|Mute", "Mute")) );
}
void SoundWidget::updateVolume()
......
......@@ -133,7 +133,7 @@ SearchLineEdit::SearchLineEdit( QWidget *parent ) : QFrame( parent )
clearButton->setAutoRaise( true );
clearButton->setMaximumWidth( 30 );
clearButton->setIcon( QIcon( ":/toolbar/clear" ) );
clearButton->setToolTip( qtr( "Clear" ) );
clearButton->setToolTip( qfu(vlc_pgettext("Tooltip|Clear", "Clear")) );
clearButton->hide();
CONNECT( clearButton, clicked(), searchLine, clear() );
......
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