Updated Spanish translation
[gnome-utils.git] / gnome-dictionary / src / gdict-about.c
blob2f52fcc7ecf2a939e85b8ff8cb9c6a198e82e9b5
1 /* gdict-about.c - GtkAboutDialog wrapper
3 * This file is part of GNOME Dictionary
5 * Copyright (C) 2005 Emmanuele Bassi
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
31 #include <glib/gi18n.h>
32 #include <gdk-pixbuf/gdk-pixbuf.h>
34 #include "gdict-about.h"
36 void
37 gdict_show_about_dialog (GtkWidget *parent)
39 const gchar *authors[] = {
40 "Mike Hughes <mfh@psilord.com>",
41 "Spiros Papadimitriou <spapadim+@cs.cmu.edu>",
42 "Bradford Hovinen <hovinen@udel.edu>",
43 "Vincent Noel <vnoel@cox.net>",
44 "Emmanuele Bassi <ebassi@gmail.com>",
45 NULL
48 const gchar *documenters[] = {
49 "Sun GNOME Documentation Team <gdocteam@sun.com>",
50 "John Fleck <jfleck@inkstain.net>",
51 "Emmanuele Bassi <ebassi@gmail.com>",
52 NULL
55 const gchar *translator_credits = _("translator-credits");
56 const gchar *copyright = "Copyright \xc2\xa9 2005-2006 Emmanuele Bassi";
57 const gchar *comments = _("Look up words in dictionaries");
59 g_return_if_fail (GTK_IS_WIDGET (parent));
61 gtk_show_about_dialog (GTK_IS_WINDOW (parent) ? GTK_WINDOW (parent) : NULL,
62 "name", _("Dictionary"),
63 "version", VERSION,
64 "copyright", copyright,
65 "comments", comments,
66 "authors", authors,
67 "documenters", documenters,
68 "translator-credits", translator_credits,
69 "logo-icon-name", "accessories-dictionary",
70 "license-type", GTK_LICENSE_GPL_2_0,
71 "screen", gtk_widget_get_screen (parent),
72 NULL);