]> git.sesse.net Git - vlc/commitdiff
Qt4 - Strings changes by tonsofpcs.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 2 Aug 2007 19:18:21 +0000 (19:18 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 2 Aug 2007 19:18:21 +0000 (19:18 +0000)
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/interaction.cpp

index ee49e61f72460b3280547afdfdaaa044b0dbb9f0..c5a24e8834b9faafe2871e14147180c5d7f4eb71 100644 (file)
@@ -72,7 +72,8 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
     closeButton->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
     closeButton->setDefault( true );
 
-    QLabel *introduction = new QLabel( qtr( "Infos about VLC media player" ) );
+    QLabel *introduction = new QLabel(
+            qtr( "Information about VLC media player" ) );
 
     layout->addWidget( introduction, 0, 0, 1, 2 );
     layout->addWidget( tab, 1, 0, 1, 2 );
@@ -91,7 +92,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
     thanksEdit->setReadOnly( true );
 
     /* add the tabs to the Tabwidget */
-    tab->addTab( NULL, qtr( "Information" ) );
+    tab->addTab( NULL, qtr( "General Info" ) );
     tab->addTab( NULL, qtr( "Authors" ) );
     tab->addTab( thanksEdit, qtr("Thanks") );
     tab->addTab( licenseEdit, qtr("Distribution License") );
index e2bbef79523eec8ef4bc85081830955bee722601..2ee8f3f0c82fa34a0e4a3b0213c041a67f986bdc 100644 (file)
@@ -176,7 +176,7 @@ void InteractionDialog::update()
     {
         assert( progressBar );
         progressBar->setValue( (int)(p_dialog->val.f_float*1000) );
-        fprintf (stderr, "Setting progress to %i\n", progressBar->value() );
+        msg_Err( p_intf, "Setting progress to %i\n", progressBar->value() );
     }
 }