Skip to content
Snippets Groups Projects
Commit 89fafa9a authored by Christophe Mutricy's avatar Christophe Mutricy
Browse files

i18n fixes

parent 213f7a98
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) : ...@@ -58,7 +58,7 @@ Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) :
ui.preampSlider->setMaximum( 400 ); ui.preampSlider->setMaximum( 400 );
for( int i = 0 ; i < NB_PRESETS ; i ++ ) for( int i = 0 ; i < NB_PRESETS ; i ++ )
{ {
ui.presetsCombo->addItem( qfu( preset_list_text[i] ), ui.presetsCombo->addItem( qtr( preset_list_text[i] ),
QVariant( i ) ); QVariant( i ) );
} }
CONNECT( ui.presetsCombo, activated( int ), this, setPreset( int ) ); CONNECT( ui.presetsCombo, activated( int ), this, setPreset( int ) );
......
...@@ -177,15 +177,15 @@ void StandardPLPanel::add() ...@@ -177,15 +177,15 @@ void StandardPLPanel::add()
if( currentRootId == THEPL->p_local_category->i_id || if( currentRootId == THEPL->p_local_category->i_id ||
currentRootId == THEPL->p_local_onelevel->i_id ) currentRootId == THEPL->p_local_onelevel->i_id )
{ {
popup->addAction( "Add file", THEDP, SLOT( simplePLAppendDialog() ) ); popup->addAction( qtr("Add file"), THEDP, SLOT( simplePLAppendDialog() ) );
popup->addAction( "Advanced add", THEDP, SLOT( PLAppendDialog() ) ); popup->addAction( qtr("Advanced add"), THEDP, SLOT( PLAppendDialog() ) );
} }
else if( currentRootId == THEPL->p_ml_category->i_id || else if( currentRootId == THEPL->p_ml_category->i_id ||
currentRootId == THEPL->p_ml_onelevel->i_id ) currentRootId == THEPL->p_ml_onelevel->i_id )
{ {
popup->addAction( "Add file", THEDP, SLOT( simpleMLAppendDialog() ) ); popup->addAction( qtr("Add file"), THEDP, SLOT( simpleMLAppendDialog() ) );
popup->addAction( "Advanced add", THEDP, SLOT( MLAppendDialog() ) ); popup->addAction( qtr("Advanced add"), THEDP, SLOT( MLAppendDialog() ) );
popup->addAction( "Directory", THEDP, SLOT( openMLDirectory() ) ); popup->addAction( qtr("Directory"), THEDP, SLOT( openMLDirectory() ) );
} }
popup->popup( QCursor::pos() ); popup->popup( QCursor::pos() );
} }
......
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
<item> <item>
<widget class="QLabel" name="label" > <widget class="QLabel" name="label" >
<property name="text" > <property name="text" >
<string>Preset</string> <string>_("Preset")</string>
</property> </property>
</widget> </widget>
</item> </item>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment