Cleaned up about dialog

This commit is contained in:
Clement Lefebvre 2016-01-26 17:06:33 +00:00
parent 2a6b8373fc
commit d071bf422e
2 changed files with 6 additions and 41 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 15:59+0000\n" "POT-Creation-Date: 2016-01-26 17:04+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -950,12 +950,8 @@ msgstr[1] ""
msgid "_Revert" msgid "_Revert"
msgstr "" msgstr ""
#: ../xedit/xedit-commands-help.c:83 #: ../xedit/xedit-commands-help.c:56
msgid "Xedit is a small and lightweight text editor for the MATE Desktop" msgid "A small and lightweight text editor"
msgstr ""
#: ../xedit/xedit-commands-help.c:94
msgid "translator-credits"
msgstr "" msgstr ""
#: ../xedit/xedit-commands-search.c:115 #: ../xedit/xedit-commands-search.c:115

View File

@ -52,47 +52,16 @@ void _xedit_cmd_help_contents(GtkAction* action, XeditWindow* window)
void _xedit_cmd_help_about(GtkAction* action, XeditWindow* window) void _xedit_cmd_help_about(GtkAction* action, XeditWindow* window)
{ {
static const gchar* const authors[] = {
"Paolo Maggi <paolo@gnome.org>",
"Paolo Borelli <pborelli@katamail.com>",
"Steve Fr\303\251cinaux <steve@istique.net>",
"Jesse van den Kieboom <jessevdk@gnome.org>",
"Ignacio Casal Quinteiro <icq@gnome.org>",
"James Willcox <jwillcox@gnome.org>",
"Chema Celorio",
"Federico Mena Quintero <federico@novell.com>",
"Perberos <perberos@gmail.com>",
NULL
};
static const gchar* const documenters[] = {
"Sun GNOME Documentation Team <gdocteam@sun.com>",
"Eric Baudais <baudais@okstate.edu>",
NULL
};
static const gchar copyright[] = \
"Copyright \xc2\xa9 1998-2000 Evan Lawrence, Alex Robert\n"
"Copyright \xc2\xa9 2000-2002 Chema Celorio, Paolo Maggi\n"
"Copyright \xc2\xa9 2003-2006 Paolo Maggi\n"
"Copyright \xc2\xa9 2004-2010 Paolo Borelli, Jesse van den Kieboom\nSteve Fr\303\251cinaux, Ignacio Casal Quinteiro\n"
"Copyright \xc2\xa9 2011 Perberos\n"
"Copyright \xc2\xa9 2012-2014 MATE developers";
static const gchar comments[] = \ static const gchar comments[] = \
N_("Xedit is a small and lightweight text editor for the MATE Desktop"); N_("A small and lightweight text editor");
xedit_debug (DEBUG_COMMANDS); xedit_debug (DEBUG_COMMANDS);
gtk_show_about_dialog(GTK_WINDOW(window), gtk_show_about_dialog(GTK_WINDOW(window),
"program-name", "Xedit", "program-name", "xedit",
"authors", authors,
"comments", _(comments), "comments", _(comments),
"copyright", copyright,
"documenters", documenters,
"logo_icon_name", "accessories-text-editor", "logo_icon_name", "accessories-text-editor",
"translator-credits", _("translator-credits"),
"version", VERSION, "version", VERSION,
"website", "http://mate-desktop.org", "website", "http://github.com/linuxmint/xedit",
NULL); NULL);
} }