]> git.0d.be Git - empathy.git/blob - src/empathy-about-dialog.c
Merge branch 'debug'
[empathy.git] / src / empathy-about-dialog.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2006-2007 Imendio AB
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: Martyn Russell <martyn@imendio.com>
22  *          Xavier Claessens <xclaesse@gmail.com>
23  */
24
25 #include <config.h>
26
27 #include <glib/gi18n.h>
28 #include <gtk/gtkaboutdialog.h>
29 #include <gtk/gtksizegroup.h>
30
31 #include <libempathy-gtk/empathy-ui-utils.h>
32
33 #include "empathy-about-dialog.h"
34
35 #define WEB_SITE "http://live.gnome.org/Empathy"
36
37 static void about_dialog_activate_link_cb (GtkAboutDialog  *about,
38                                            const gchar     *link,
39                                            gpointer         data);
40
41 static const char *authors[] = {
42         "Alban Crequy",
43         "Andreas Lööw",
44         "Aurelien Naldi",
45         "Bastien Nocera",
46         "Christoffer Olsen",
47         "Cosimo Cecchi",
48         "Elliot Fairweather",
49         "Frederic Crozat",
50         "Frederic Peters",
51         "Geert-Jan Van den Bogaerde",
52         "Guillaume Desmottes",
53         "Johan Hammar",
54         "Jonatan Magnusson",
55         "Jonny Lamb",
56         "Jordi Mallach",
57         "Kim Andersen",
58         "Marco Barisione",
59         "Martyn Russell <martyn@gnome.org>",
60         "Mikael Hallendal <micke@imendio.com>",
61         "Mike Gratton",
62         "Richard Hult <richard@imendio.com>",
63         "Ross Burton",
64         "Sjoerd Simons",
65         "Thomas Reynolds",
66         "Vincent Untz",
67         "Xavier Claessens <xclaesse@gmail.com>",
68         NULL
69 };
70
71 static const char *documenters[] = {
72         "Milo Casagrande",
73         "Seth Dudenhofer",
74         NULL
75 };
76
77 static const char *artists[] = {
78         "Andreas Nilsson <nisses.mail@home.se>",
79         "Vinicius Depizzol <vdepizzol@gmail.com>",
80         NULL
81 };
82
83 static const char *license[] = {
84         N_("Empathy is free software; you can redistribute it and/or modify "
85            "it under the terms of the GNU General Public License as published by "
86            "the Free Software Foundation; either version 2 of the License, or "
87            "(at your option) any later version."),
88         N_("Empathy is distributed in the hope that it will be useful, "
89            "but WITHOUT ANY WARRANTY; without even the implied warranty of "
90            "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the "
91            "GNU General Public License for more details."),
92         N_("You should have received a copy of the GNU General Public License "
93            "along with Empathy; if not, write to the Free Software Foundation, Inc., "
94            "51 Franklin Street, Fifth Floor, Boston, MA 02110-130159 USA")
95 };
96
97 static void
98 about_dialog_activate_link_cb (GtkAboutDialog *about,
99                                const gchar    *link,
100                                gpointer        data)
101 {
102         empathy_url_show (GTK_WIDGET (about), link);
103 }
104
105 void
106 empathy_about_dialog_new (GtkWindow *parent)
107 {
108         gchar *license_trans;
109
110         gtk_about_dialog_set_url_hook (about_dialog_activate_link_cb, NULL, NULL);
111
112         license_trans = g_strconcat (_(license[0]), "\n\n",
113                                      _(license[1]), "\n\n",
114                                      _(license[2]), "\n\n",
115                                      NULL);
116
117         gtk_show_about_dialog (parent,
118                                "artists", artists,
119                                "authors", authors,
120                                "comments", _("An Instant Messaging client for GNOME"),
121                                "license", license_trans,
122                                "wrap-license", TRUE,
123                                "copyright", "Imendio AB 2002-2007\nCollabora Ltd 2007-2008",
124                                "documenters", documenters,
125                                "logo-icon-name", "empathy",
126                                "translator-credits", _("translator-credits"),
127                                "version", PACKAGE_VERSION,
128                                "website", WEB_SITE,
129                                NULL);
130
131         g_free (license_trans);
132 }
133
134