Commit 75369351 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Strings changes by tonsofpcs.

parent 5e4dc54c
...@@ -72,7 +72,8 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) ...@@ -72,7 +72,8 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
closeButton->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum ); closeButton->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
closeButton->setDefault( true ); 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( introduction, 0, 0, 1, 2 );
layout->addWidget( tab, 1, 0, 1, 2 ); layout->addWidget( tab, 1, 0, 1, 2 );
...@@ -91,7 +92,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf ) ...@@ -91,7 +92,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
thanksEdit->setReadOnly( true ); thanksEdit->setReadOnly( true );
/* add the tabs to the Tabwidget */ /* add the tabs to the Tabwidget */
tab->addTab( NULL, qtr( "Information" ) ); tab->addTab( NULL, qtr( "General Info" ) );
tab->addTab( NULL, qtr( "Authors" ) ); tab->addTab( NULL, qtr( "Authors" ) );
tab->addTab( thanksEdit, qtr("Thanks") ); tab->addTab( thanksEdit, qtr("Thanks") );
tab->addTab( licenseEdit, qtr("Distribution License") ); tab->addTab( licenseEdit, qtr("Distribution License") );
......
...@@ -176,7 +176,7 @@ void InteractionDialog::update() ...@@ -176,7 +176,7 @@ void InteractionDialog::update()
{ {
assert( progressBar ); assert( progressBar );
progressBar->setValue( (int)(p_dialog->val.f_float*1000) ); 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() );
} }
} }
......
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