From d071bf422e902851ddb136b4f50b297830199da3 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Tue, 26 Jan 2016 17:06:33 +0000 Subject: [PATCH] Cleaned up about dialog --- po/xedit.pot | 10 +++------- xedit/xedit-commands-help.c | 37 +++---------------------------------- 2 files changed, 6 insertions(+), 41 deletions(-) diff --git a/po/xedit.pot b/po/xedit.pot index f24ddee..c8ad0b7 100644 --- a/po/xedit.pot +++ b/po/xedit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -950,12 +950,8 @@ msgstr[1] "" msgid "_Revert" msgstr "" -#: ../xedit/xedit-commands-help.c:83 -msgid "Xedit is a small and lightweight text editor for the MATE Desktop" -msgstr "" - -#: ../xedit/xedit-commands-help.c:94 -msgid "translator-credits" +#: ../xedit/xedit-commands-help.c:56 +msgid "A small and lightweight text editor" msgstr "" #: ../xedit/xedit-commands-search.c:115 diff --git a/xedit/xedit-commands-help.c b/xedit/xedit-commands-help.c index 72e4c0b..82505a8 100644 --- a/xedit/xedit-commands-help.c +++ b/xedit/xedit-commands-help.c @@ -52,47 +52,16 @@ void _xedit_cmd_help_contents(GtkAction* action, XeditWindow* window) void _xedit_cmd_help_about(GtkAction* action, XeditWindow* window) { - static const gchar* const authors[] = { - "Paolo Maggi ", - "Paolo Borelli ", - "Steve Fr\303\251cinaux ", - "Jesse van den Kieboom ", - "Ignacio Casal Quinteiro ", - "James Willcox ", - "Chema Celorio", - "Federico Mena Quintero ", - "Perberos ", - NULL - }; - - static const gchar* const documenters[] = { - "Sun GNOME Documentation Team ", - "Eric Baudais ", - 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[] = \ - N_("Xedit is a small and lightweight text editor for the MATE Desktop"); + N_("A small and lightweight text editor"); xedit_debug (DEBUG_COMMANDS); gtk_show_about_dialog(GTK_WINDOW(window), - "program-name", "Xedit", - "authors", authors, + "program-name", "xedit", "comments", _(comments), - "copyright", copyright, - "documenters", documenters, "logo_icon_name", "accessories-text-editor", - "translator-credits", _("translator-credits"), "version", VERSION, - "website", "http://mate-desktop.org", + "website", "http://github.com/linuxmint/xedit", NULL); }