]> git.sesse.net Git - vlc/commitdiff
Qt4 - < thresh> although "Add interfaces -> Switch interface to something" isnt reall...
authorJean-Baptiste Kempf <jb@videolan.org>
Tue, 22 Jan 2008 00:59:19 +0000 (00:59 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Tue, 22 Jan 2008 00:59:19 +0000 (00:59 +0000)
modules/gui/qt4/menus.cpp

index b98d0aeb7def2e79635fdf2ddd13609e2144d6de..323fe4ea71b2d0ed1272a61c468d3706c90303b6 100644 (file)
@@ -262,7 +262,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
     if( with_intf )
     {
         QMenu *intfmenu = InterfacesMenu( p_intf, NULL );
-        intfmenu->setTitle( qtr( "Add Interfaces" ) );
+        intfmenu->setTitle( qtr( "Interfaces" ) );
         menu->addMenu( intfmenu );
         menu->addSeparator();
     }
@@ -962,7 +962,8 @@ int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var,
             case VLC_VAR_STRING:
                 var_Get( p_object, psz_var, &val );
                 another_val.psz_string = strdup( CURVAL.psz_string );
-                menutext = qfu( CURTEXT ? CURTEXT : another_val.psz_string );
+                menutext = qfu( "Add " ) /* If this function is more used, FIX*/
+                         + qfu( CURTEXT ? CURTEXT : another_val.psz_string );
                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
                         p_object->i_object_id, another_val, i_type,
                         NOTCOMMAND && val.psz_string &&