[vlc-devel] commit: Stick to ASCII in gettext messages ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Jun 22 21:11:39 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Jun 22 22:13:40 2008 +0300| [e03d215f1c667c493a14744d4e0cbdc29cf157c6]
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
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e03d215f1c667c493a14744d4e0cbdc29cf157c6
---
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 7b6b0fd..df020a4 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 at videolan.org, http://www.videolan.org" );
infoLabel->setWordWrap( infoLabel );
More information about the vlc-devel
mailing list