Fix application name in .desktop file: Closes bgno#720781

Also corrects alpha-order problems in THANKS file.
This commit is contained in:
William Jon McCann 2013-12-20 12:46:26 -08:00 committed by Jim Nelson
parent efd15ad906
commit fc0b41d5f9
3 changed files with 7 additions and 4 deletions

5
THANKS
View file

@ -16,12 +16,13 @@ Jens Georg <mail@jensge.org>
Michael George <mdgeorge@cs.cornell.edu>
Sven Hagemann <sven@rednose.nl>
Mathias Hasselmann <mathias@openismus.com>
Charles Lehner <rdm.cel@celehner.com>
Brendan Long <self@brendanlong.com>
Timo Kluck <tkluck@infty.nl>
Charles Lehner <rdm.cel@celehner.com>
Avi Levy <avi.w.levy@gmail.com>
Brendan Long <self@brendanlong.com>
Angelo Marchesin <marchesin.angelo@gmail.com>
Kai Mast <mail@kai-mast.de>
William Jon McCann <william.jon.mccann@gmail.com>
Thomas Moschny <thomas.moschny@gmx.de>
Tom Most <twm@freecog.net>
Andreas Obergrusberger <tradiaz@yahoo.de>

View file

@ -1,6 +1,7 @@
[Desktop Entry]
_Name=Geary Mail
_Name=Geary
_GenericName=Mail Client
_X-GNOME-FullName=Geary Mail
_Comment=Send and receive email
_Keywords=Email;E-mail;Mail;
Icon=geary

View file

@ -24,8 +24,9 @@ public class GearyApplication : Gtk.Application {
// These strings must match corresponding strings in desktop/geary.desktop *exactly* and be
// internationalizable
public const string DESKTOP_NAME = _("Geary Mail");
public const string DESKTOP_NAME = _("Geary");
public const string DESKTOP_GENERIC_NAME = _("Mail Client");
public const string DESKTOP_GNOME_FULLNAME = _("Geary Mail");
public const string DESKTOP_COMMENT = _("Send and receive email");
public const string DESKTOP_KEYWORDS = _("Email;E-mail;Mail;");
public const string DESKTOP_COMPOSE_NAME = _("Compose Message");