From c94d62d29ecfc4cad4b943d1720f5ee9ddad2fed Mon Sep 17 00:00:00 2001 From: Christophe Mutricy <xtophe@videolan.org> Date: Mon, 18 Aug 2008 22:38:07 +0100 Subject: [PATCH] qt4: i18n fixes --- modules/gui/qt4/dialogs/help.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp index 837e903811bb..41352b034763 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@videolan.org, http://www.videolan.org" ); infoLabel->setWordWrap( infoLabel ); -- GitLab