]> git.sesse.net Git - vlc/commitdiff
i18n fixes
authorChristophe Mutricy <xtophe@videolan.org>
Sun, 19 Nov 2006 23:07:33 +0000 (23:07 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Sun, 19 Nov 2006 23:07:33 +0000 (23:07 +0000)
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/ui/equalizer.ui

index 2e7a6a5f73fe69675bde9ba8a493fa391c8eb657..ea1276984126470b4fd68d2ceb38a5156ea32688 100644 (file)
@@ -58,7 +58,7 @@ Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) :
     ui.preampSlider->setMaximum( 400 );
     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 ) );
     }
     CONNECT( ui.presetsCombo, activated( int ), this, setPreset( int ) );
index 9942c29cf64edca2871f6ee03c57d80060e3213c..ab1c953a76fb6bec5c30efcb3eaf4a199a3a6a8f 100644 (file)
@@ -177,15 +177,15 @@ void StandardPLPanel::add()
     if( currentRootId == THEPL->p_local_category->i_id ||
         currentRootId == THEPL->p_local_onelevel->i_id )
     {
-        popup->addAction( "Add file", THEDP, SLOT( simplePLAppendDialog() ) );
-        popup->addAction( "Advanced add", THEDP, SLOT( PLAppendDialog() ) );
+        popup->addAction( qtr("Add file"), THEDP, SLOT( simplePLAppendDialog() ) );
+        popup->addAction( qtr("Advanced add"), THEDP, SLOT( PLAppendDialog() ) );
     }
     else if( currentRootId == THEPL->p_ml_category->i_id ||
              currentRootId == THEPL->p_ml_onelevel->i_id )
     {
-        popup->addAction( "Add file", THEDP, SLOT( simpleMLAppendDialog() ) );
-        popup->addAction( "Advanced add", THEDP, SLOT( MLAppendDialog() ) );
-        popup->addAction( "Directory", THEDP, SLOT( openMLDirectory() ) );
+        popup->addAction( qtr("Add file"), THEDP, SLOT( simpleMLAppendDialog() ) );
+        popup->addAction( qtr("Advanced add"), THEDP, SLOT( MLAppendDialog() ) );
+        popup->addAction( qtr("Directory"), THEDP, SLOT( openMLDirectory() ) );
     }
     popup->popup( QCursor::pos() );
 }
index 99f4f8a1c1c2ba15fe46d133d43a27da8a8e7769..ae37097e47b3f2a06926202de6c497647f13fdd4 100644 (file)
@@ -60,7 +60,7 @@
      <item>
       <widget class="QLabel" name="label" >
        <property name="text" >
-        <string>Preset</string>
+        <string>_("Preset")</string>
        </property>
       </widget>
      </item>