]> git.0d.be Git - empathy.git/blob - src/empathy-about-dialog.c
Updated Swedish translation
[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 #include "empathy-about-dialog.h"
27
28 #include <glib/gi18n.h>
29
30 #define WEB_SITE "http://live.gnome.org/Empathy"
31
32 static const char *authors[] = {
33         "Alban Crequy",
34         "Andreas Lööw",
35         "Aurelien Naldi",
36         "Bastien Nocera",
37         "Christoffer Olsen",
38         "Cosimo Cecchi",
39         "Danielle Madeley",
40         "Elliot Fairweather",
41         "Frederic Crozat",
42         "Frederic Peters",
43         "Geert-Jan Van den Bogaerde",
44         "Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>",
45         "Johan Hammar",
46         "Jonatan Magnusson",
47         "Jonny Lamb",
48         "Jordi Mallach",
49         "Kim Andersen",
50         "Marco Barisione",
51         "Martyn Russell <martyn@gnome.org>",
52         "Mikael Hallendal <micke@imendio.com>",
53         "Mike Gratton",
54         "Richard Hult <richard@imendio.com>",
55         "Ross Burton",
56         "Sjoerd Simons",
57         "Thomas Reynolds",
58         "Vincent Untz",
59         "Xavier Claessens <xclaesse@gmail.com>",
60         NULL
61 };
62
63 static const char *documenters[] = {
64         "Milo Casagrande",
65         "Seth Dudenhofer",
66         NULL
67 };
68
69 static const char *artists[] = {
70         "Andreas Nilsson <nisses.mail@home.se>",
71         "Vinicius Depizzol <vdepizzol@gmail.com>",
72         "K.Vishnoo Charan Reddy <drkvi-a@yahoo.com>",
73         NULL
74 };
75
76 void
77 empathy_about_dialog_new (GtkWindow *parent)
78 {
79         gtk_show_about_dialog (parent,
80                                "artists", artists,
81                                "authors", authors,
82                                "comments", _("An Instant Messaging client for GNOME"),
83                                "license-type", GTK_LICENSE_GPL_2_0,
84                                "wrap-license", TRUE,
85                                "copyright", "Imendio AB 2002-2007\nCollabora Ltd 2007-2011",
86                                "documenters", documenters,
87                                "logo-icon-name", "empathy",
88                                "translator-credits", _("translator-credits"),
89                                "version", PACKAGE_VERSION,
90                                "website", WEB_SITE,
91                                NULL);
92 }