From a16822176e2bdb982c2330a33749f76aea9f1a8b Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Fri, 12 Sep 2014 00:55:12 +0200 Subject: [PATCH] added contributors and authors info in about dialog --- src/ui.c | 4 ++++ 1 file changed, 4 insertions(+) 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"), -- 2.7.4