From: Jean-Philippe Orsini Date: Thu, 11 Sep 2014 22:55:12 +0000 (+0200) Subject: added contributors and authors info in about dialog X-Git-Tag: v1.1.2~108 X-Git-Url: http://git.wpitchoune.net/gitweb/?a=commitdiff_plain;h=a16822176e2bdb982c2330a33749f76aea9f1a8b;p=psensor.git added contributors and authors info in about dialog --- diff --git a/src/ui.c b/src/ui.c index a60a44a..fecd15b 100644 --- a/src/ui.c +++ b/src/ui.c @@ -78,8 +78,11 @@ on_delete_event_cb(GtkWidget *widget, GdkEvent *event, gpointer data) void ui_show_about_dialog() { + static const char *const authors[] = { "jeanfi@gmail.com", NULL }; + gtk_show_about_dialog (NULL, + "authors", authors, "comments", _("Psensor is a GTK+ application for monitoring hardware " "sensors"), @@ -91,6 +94,7 @@ void ui_show_about_dialog() "logo-icon-name", "psensor", "program-name", "Psensor", "title", _("About Psensor"), + "translator-credits", _("translator-credits"), "version", VERSION, "website", PACKAGE_URL, "website-label", _("Psensor Homepage"),