]> git.0d.be Git - empathy.git/blobdiff - src/empathy-about-dialog.c
add K.Vishnoo Charan Reddy as an artist contributor
[empathy.git] / src / empathy-about-dialog.c
index d8d9dfa95290410669fc4273a70b6e75a69e033a..299d5a4b7cfcf699614b388f48db7d170279b494 100644 (file)
@@ -15,9 +15,9 @@
  *
  * You should have received a copy of the GNU General Public
  * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- * 
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA  02110-1301  USA
+ *
  * Authors: Martyn Russell <martyn@imendio.com>
  *          Xavier Claessens <xclaesse@gmail.com>
  */
@@ -25,9 +25,7 @@
 #include <config.h>
 
 #include <glib/gi18n.h>
-#include <gtk/gtkaboutdialog.h>
-#include <gtk/gtksizegroup.h>
-#include <glade/glade.h>
+#include <gtk/gtk.h>
 
 #include <libempathy-gtk/empathy-ui-utils.h>
 
@@ -40,23 +38,45 @@ static void about_dialog_activate_link_cb (GtkAboutDialog  *about,
                                           gpointer         data);
 
 static const char *authors[] = {
-       "Mikael Hallendal",
-       "Richard Hult",
-       "Martyn Russell",
+       "Alban Crequy",
+       "Andreas Lööw",
+       "Aurelien Naldi",
+       "Bastien Nocera",
+       "Christoffer Olsen",
+       "Cosimo Cecchi",
+       "Elliot Fairweather",
+       "Frederic Crozat",
+       "Frederic Peters",
        "Geert-Jan Van den Bogaerde",
-       "Kevin Dougherty",
-       "Eitan Isaacson",
-       "Xavier Claessens",
+       "Guillaume Desmottes",
+       "Johan Hammar",
+       "Jonatan Magnusson",
+       "Jonny Lamb",
+       "Jordi Mallach",
+       "Kim Andersen",
+       "Marco Barisione",
+       "Martyn Russell <martyn@gnome.org>",
+       "Mikael Hallendal <micke@imendio.com>",
+       "Mike Gratton",
+       "Richard Hult <richard@imendio.com>",
+       "Ross Burton",
+       "Sjoerd Simons",
+       "Thomas Reynolds",
+       "Vincent Untz",
+       "Xavier Claessens <xclaesse@gmail.com>",
        NULL
 };
 
 static const char *documenters[] = {
+       "Milo Casagrande",
+       "Seth Dudenhofer",
        NULL
 };
 
 static const char *artists[] = {
        "Andreas Nilsson <nisses.mail@home.se>",
        "Vinicius Depizzol <vdepizzol@gmail.com>",
+       "K.Vishnoo Charan Reddy <drkvi-a@yahoo.com>",
        NULL
 };
 
@@ -79,7 +99,7 @@ about_dialog_activate_link_cb (GtkAboutDialog *about,
                               const gchar    *link,
                               gpointer        data)
 {
-       empathy_url_show (link);
+       empathy_url_show (GTK_WIDGET (about), link);
 }
 
 void
@@ -100,7 +120,7 @@ empathy_about_dialog_new (GtkWindow *parent)
                               "comments", _("An Instant Messaging client for GNOME"),
                               "license", license_trans,
                               "wrap-license", TRUE,
-                              "copyright", "Imendio AB 2002-2007\nCollabora Ltd 2007",
+                              "copyright", "Imendio AB 2002-2007\nCollabora Ltd 2007-2008",
                               "documenters", documenters,
                               "logo-icon-name", "empathy",
                               "translator-credits", _("translator-credits"),