Commit e03d215f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

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
parent 03fa43b1
......@@ -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 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment