]> git.sesse.net Git - vlc/commitdiff
improved QT4 strings
authorMichael Ploujnikov <ploujj@gmail.com>
Sun, 13 Apr 2008 04:14:27 +0000 (00:14 -0400)
committerRémi Duraffort <ivoire@videolan.org>
Sun, 13 Apr 2008 08:03:12 +0000 (10:03 +0200)
Signed-off-by: Rémi Duraffort <ivoire@videolan.org>
modules/gui/qt4/dialogs/extended.cpp
modules/gui/qt4/dialogs/help.cpp

index 52af419c97b862fef82af1af5d8c27d365a241ca..a19f4a557d545a52319a197c70a6308b45878d56 100644 (file)
@@ -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" ) )
     {
index 86e674a9583d8dbb00a6b43e4c146640626bf1ca..63a64017c48f35bdf4f301cc6f21b0b87ec2a2f9 100644 (file)
@@ -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(