[vlc-devel] commit: improved QT4 strings (Michael Ploujnikov )
git version control
git at videolan.org
Sun Apr 13 10:06:19 CEST 2008
vlc | branch: master | Michael Ploujnikov <ploujj at gmail.com> | Sun Apr 13 00:14:27 2008 -0400| [750d656b42cb85adb1b76b80fdb18f0c9355853e]
improved QT4 strings
Signed-off-by: Rémi Duraffort <ivoire at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=750d656b42cb85adb1b76b80fdb18f0c9355853e
---
modules/gui/qt4/dialogs/extended.cpp | 2 +-
modules/gui/qt4/dialogs/help.cpp | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/gui/qt4/dialogs/extended.cpp b/modules/gui/qt4/dialogs/extended.cpp
index 52af419..a19f4a5 100644
--- a/modules/gui/qt4/dialogs/extended.cpp
+++ b/modules/gui/qt4/dialogs/extended.cpp
@@ -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" ) )
{
diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp
index 86e674a..63a6401 100644
--- a/modules/gui/qt4/dialogs/help.cpp
+++ b/modules/gui/qt4/dialogs/help.cpp
@@ -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(
More information about the vlc-devel
mailing list