]> git.0d.be Git - empathy.git/blob - src/empathy-about-dialog.c
13a8aa3531f746c4b9e564ae6e06bcb57cb150d8
[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., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, 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 #include <glade/glade.h>
31
32 #include "empathy-about-dialog.h"
33 #include <libempathy-gtk/empathy-ui-utils.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         "Mikael Hallendal",
43         "Richard Hult",
44         "Martyn Russell",
45         "Geert-Jan Van den Bogaerde",
46         "Kevin Dougherty",
47         "Eitan Isaacson",
48         "Xavier Claessens",
49         NULL
50 };
51
52 static const char *documenters[] = {
53         NULL
54 };
55
56 static const char *artists[] = {
57         "Andreas Nilsson <nisses.mail@home.se>",
58         "Vinicius Depizzol <vdepizzol@gmail.com>",
59         NULL
60 };
61
62 static const char *license[] = {
63         N_("Empathy is free software; you can redistribute it and/or modify "
64            "it under the terms of the GNU General Public License as published by "
65            "the Free Software Foundation; either version 2 of the License, or "
66            "(at your option) any later version."),
67         N_("Empathy is distributed in the hope that it will be useful, "
68            "but WITHOUT ANY WARRANTY; without even the implied warranty of "
69            "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the "
70            "GNU General Public License for more details."),
71         N_("You should have received a copy of the GNU General Public License "
72            "along with Empathy; if not, write to the Free Software Foundation, Inc., "
73            "51 Franklin Street, Fifth Floor, Boston, MA 02110-130159 USA")
74 };
75
76 static void
77 about_dialog_activate_link_cb (GtkAboutDialog *about,
78                                const gchar    *link,
79                                gpointer        data)
80 {
81         empathy_url_show (link);
82 }
83
84 void
85 empathy_about_dialog_new (GtkWindow *parent)
86 {
87         gchar *license_trans;
88
89         gtk_about_dialog_set_url_hook (about_dialog_activate_link_cb, NULL, NULL);
90
91         license_trans = g_strconcat (_(license[0]), "\n\n",
92                                      _(license[1]), "\n\n",
93                                      _(license[2]), "\n\n",
94                                      NULL);
95
96         gtk_show_about_dialog (parent,
97                                "artists", artists,
98                                "authors", authors,
99                                "comments", _("An Instant Messaging client for GNOME"),
100                                "license", license_trans,
101                                "wrap-license", TRUE,
102                                "copyright", "Imendio AB 2002-2007\nCollabora Ltd 2007",
103                                "documenters", documenters,
104                                "logo-icon-name", "empathy",
105                                "translator-credits", _("translator-credits"),
106                                "version", PACKAGE_VERSION,
107                                "website", WEB_SITE,
108                                NULL);
109
110         g_free (license_trans);
111 }
112
113