[vlc-devel] commit: Fix invalid use of gettext ( Rémi Denis-Courmont )

git version control git at videolan.org
Tue May 12 17:46:58 CEST 2009


vlc | branch: 0.9-bugfix | Rémi Denis-Courmont <remi at remlab.net> | Tue May 12 18:41:19 2009 +0300| [ad93b08a932faed9e84ba9b35916526dee3b1a2b] | committer: Rémi Denis-Courmont 

Fix invalid use of gettext
(cherry picked from commit d3b7e531f11ed50bc680ad3c31ff84c2e2e13b85)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ad93b08a932faed9e84ba9b35916526dee3b1a2b
---

 modules/gui/qt4/dialogs/help.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp
index dd52042..73e3f1b 100644
--- a/modules/gui/qt4/dialogs/help.cpp
+++ b/modules/gui/qt4/dialogs/help.cpp
@@ -98,7 +98,7 @@ AboutDialog::AboutDialog( QWidget *parent, intf_thread_t *_p_intf)
     closeButton->setDefault( true );
 
     QLabel *introduction = new QLabel(
-            qtr( "VLC media player" " " VERSION_MESSAGE ) );
+            qtr( "VLC media player" ) + qfu( " " VERSION_MESSAGE );
     QLabel *iconVLC = new QLabel;
     if( QDate::currentDate().dayOfYear() >= 354 )
         iconVLC->setPixmap( QPixmap( ":/vlc48-christmas.png" ) );




More information about the vlc-devel mailing list