/* $Id$ */ /* * Papadimitriou Spiros * * This code released under the GNU GPL. * Read the file COPYING for more information. * * About box * */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE #include "mateweather.h" #include "mateweather-about.h" void mateweather_about_run(MateWeatherApplet* gw_applet) { static const gchar* authors[] = { "Todd Kulesza ", "Philip Langdale ", "Ryan Lortie ", "Davyd Madeley ", "Spiros Papadimitriou ", "Kevin Vandersloot ", NULL }; char copyright[] = \ "Copyright \xc2\xa9 2012-2017 MATE developers\n" "Copyright \xC2\xA9 1999-2005 by S. Papadimitriou and others"; const gchar* documenters[] = { "Dan Mueth ", "Spiros Papadimitriou ", "Sun GNOME Documentation Team ", "Davyd Madeley ", NULL }; gtk_show_about_dialog(NULL, "version", VERSION, "copyright", copyright, "comments", _("A panel application for monitoring local weather conditions."), "authors", authors, "documenters", documenters, "translator-credits", _("translator-credits"), "logo-icon-name", "weather-storm", NULL); }