Commit 750d656b authored by Michael Ploujnikov's avatar Michael Ploujnikov Committed by Rémi Duraffort

improved QT4 strings

Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 506f1e4e
...@@ -70,7 +70,7 @@ ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf ) ...@@ -70,7 +70,7 @@ ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
mainTabW->addTab( videoWidget, qtr( "Video Effects" ) ); mainTabW->addTab( videoWidget, qtr( "Video Effects" ) );
SyncControls *syncW = new SyncControls( p_intf, videoTab ); SyncControls *syncW = new SyncControls( p_intf, videoTab );
mainTabW->addTab( syncW, qtr( "Synchro." ) ); mainTabW->addTab( syncW, qtr( "Synchronisation" ) );
if( module_Exists( p_intf, "v4l2" ) ) if( module_Exists( p_intf, "v4l2" ) )
{ {
......
...@@ -213,7 +213,7 @@ UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) ...@@ -213,7 +213,7 @@ UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
buttonBox->addButton( updateButton, QDialogButtonBox::ActionRole ); buttonBox->addButton( updateButton, QDialogButtonBox::ActionRole );
buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole ); buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
updateLabel = new QLabel( qtr( "Checking for the update..." ) ); updateLabel = new QLabel( qtr( "Checking for an update..." ) );
updateLabel->setWordWrap( true ); updateLabel->setWordWrap( true );
layout->addWidget( updateLabel, 0, 0 ); layout->addWidget( updateLabel, 0, 0 );
...@@ -249,7 +249,7 @@ void UpdateDialog::UpdateOrDownload() ...@@ -249,7 +249,7 @@ void UpdateDialog::UpdateOrDownload()
if( !b_checked ) if( !b_checked )
{ {
updateButton->setEnabled( false ); updateButton->setEnabled( false );
msg_Dbg( p_intf, "Launching an update Request" ); msg_Dbg( p_intf, "Launching an update request" );
update_Check( p_update, UpdateCallback, this ); update_Check( p_update, UpdateCallback, this );
} }
else else
...@@ -288,11 +288,11 @@ void UpdateDialog::updateNotify( bool b_result ) ...@@ -288,11 +288,11 @@ void UpdateDialog::updateNotify( bool b_result )
{ {
b_checked = true; b_checked = true;
updateButton->setText( "Download" ); updateButton->setText( "Download" );
updateLabel->setText( qtr( "There is a new version of vlc :\n" ) updateLabel->setText( qtr( "There is a new version of VLC :\n" )
+ qfu( p_update->release.psz_desc ) ); + qfu( p_update->release.psz_desc ) );
} }
else else
updateLabel->setText( qtr( "You have the latest version of vlc" ) ); updateLabel->setText( qtr( "You have the latest version of VLC" ) );
} }
else else
updateLabel->setText( updateLabel->setText(
......
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