Commit 643c8411 authored by Christophe Mutricy's avatar Christophe Mutricy

i18n: Fixes in Qt4 tooltips.

Remeber that N_( DEFINE ) is not enough

Spotted-by: Cristian Secară
parent e701a933
......@@ -849,13 +849,13 @@ void ControlsWidget::setNavigation( int navigation )
{
discFrame->hide();
} else if( navigation == 1 ) {
prevSectionButton->setToolTip( qfu( HELP_PCH ) );
nextSectionButton->setToolTip( qfu( HELP_NCH ) );
prevSectionButton->setToolTip( qtr( HELP_PCH ) );
nextSectionButton->setToolTip( qtr( HELP_NCH ) );
menuButton->show();
discFrame->show();
} else {
prevSectionButton->setToolTip( qfu( HELP_PCH ) );
nextSectionButton->setToolTip( qfu( HELP_NCH ) );
prevSectionButton->setToolTip( qtr( HELP_PCH ) );
nextSectionButton->setToolTip( qtr( HELP_NCH ) );
menuButton->hide();
discFrame->show();
}
......
......@@ -232,7 +232,7 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
b_firstvcd = true;
b_firstcdda = true;
ui.browseDiscButton->setToolTip( I_DEVICE_TOOLTIP );
ui.browseDiscButton->setToolTip( qtr( I_DEVICE_TOOLTIP ));
ui.deviceCombo->setToolTip( I_DEVICE_TOOLTIP );
#if WIN32 /* Disc drives probing for Windows */
......
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