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 )
mainTabW->addTab( videoWidget, qtr( "Video Effects" ) );
SyncControls *syncW = new SyncControls( p_intf, videoTab );
mainTabW->addTab( syncW, qtr( "Synchro." ) );
mainTabW->addTab( syncW, qtr( "Synchronisation" ) );
if( module_Exists( p_intf, "v4l2" ) )
{
......
......@@ -213,7 +213,7 @@ UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
buttonBox->addButton( updateButton, QDialogButtonBox::ActionRole );
buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
updateLabel = new QLabel( qtr( "Checking for the update..." ) );
updateLabel = new QLabel( qtr( "Checking for an update..." ) );
updateLabel->setWordWrap( true );
layout->addWidget( updateLabel, 0, 0 );
......@@ -249,7 +249,7 @@ void UpdateDialog::UpdateOrDownload()
if( !b_checked )
{
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 );
}
else
......@@ -288,11 +288,11 @@ void UpdateDialog::updateNotify( bool b_result )
{
b_checked = true;
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 ) );
}
else
updateLabel->setText( qtr( "You have the latest version of vlc" ) );
updateLabel->setText( qtr( "You have the latest version of VLC" ) );
}
else
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