From: Rémi Denis-Courmont Date: Sun, 22 Jun 2008 19:13:40 +0000 (+0300) Subject: Stick to ASCII in gettext messages X-Git-Tag: 0.9.0-test1~152 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=e03d215f1c667c493a14744d4e0cbdc29cf157c6;p=vlc Stick to ASCII in gettext messages We already had the discussion (again) a few weeks ago. If you want non-ASCII code points in the American English locale, create po/en.po or po/en_US.po --- diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp index 7b6b0fdbdb..df020a4a94 100644 --- a/modules/gui/qt4/dialogs/help.cpp +++ b/modules/gui/qt4/dialogs/help.cpp @@ -124,7 +124,7 @@ 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 © " COPYRIGHT_YEARS " by the VideoLAN Team.\n" ) + + qtr( "Copyright (C) " COPYRIGHT_YEARS " by the VideoLAN Team.\n" ) + "vlc@videolan.org, http://www.videolan.org" ); infoLabel->setWordWrap( infoLabel );