[vlc-devel] commit: qt4: i18n fixes (Christophe Mutricy )
git version control
git at videolan.org
Tue Aug 19 00:01:04 CEST 2008
vlc | branch: master | Christophe Mutricy <xtophe at videolan.org> | Mon Aug 18 22:38:07 2008 +0100| [c94d62d29ecfc4cad4b943d1720f5ee9ddad2fed] | committer: Christophe Mutricy
qt4: i18n fixes
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c94d62d29ecfc4cad4b943d1720f5ee9ddad2fed
---
modules/gui/qt4/dialogs/help.cpp | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp
index 837e903..41352b0 100644
--- a/modules/gui/qt4/dialogs/help.cpp
+++ b/modules/gui/qt4/dialogs/help.cpp
@@ -61,7 +61,7 @@ HelpDialog::HelpDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
QGridLayout *layout = new QGridLayout( this );
QTextBrowser *helpBrowser = new QTextBrowser( this );
helpBrowser->setOpenExternalLinks( true );
- helpBrowser->setHtml( I_LONGHELP );
+ helpBrowser->setHtml( qtr(I_LONGHELP) );
QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
closeButton->setDefault( true );
@@ -125,7 +125,8 @@ AboutDialog::AboutDialog( QWidget *parent, intf_thread_t *_p_intf)
+ "Compiler: " + qfu( VLC_Compiler() ) + ".\n"
+ qtr( "Based on Git commit: " ) + qfu( VLC_Changeset() ) + ".\n"
+ qtr( "You are using the Qt4 Interface.\n\n" )
- + qtr( "Copyright (C) " COPYRIGHT_YEARS " by the VideoLAN Team.\n" )
+ + qtr( "Copyright (C) " ) + COPYRIGHT_YEARS
+ + qtr( " by the VideoLAN Team.\n" )
+ "vlc at videolan.org, http://www.videolan.org" );
infoLabel->setWordWrap( infoLabel );
More information about the vlc-devel
mailing list