added contributors and authors info in about dialog
authorJean-Philippe Orsini <jeanfi@gmail.com>
Thu, 11 Sep 2014 22:55:12 +0000 (00:55 +0200)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Thu, 11 Sep 2014 22:55:12 +0000 (00:55 +0200)
src/ui.c

index a60a44a..fecd15b 100644 (file)
--- 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"),