X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fabout.c;h=d9bc2803321e0ad2efe5411dd728b840047b5b34;hb=df9a9bc6db7bd302a39b944d4bf5b6548d0eff1a;hp=34a3ccbe0b52eb815eed98a4297a23c8ae6554a6;hpb=09a1109ddc398f36fe720208e1d38053850cbd2a;p=pspp-builds.git diff --git a/src/ui/gui/about.c b/src/ui/gui/about.c index 34a3ccbe..d9bc2803 100644 --- a/src/ui/gui/about.c +++ b/src/ui/gui/about.c @@ -1,45 +1,49 @@ -/* - PSPPIRE --- A Graphical User Interface for PSPP - Copyright (C) 2006, 2007 Free Software Foundation +/* PSPPIRE - a graphical user interface for PSPP. + Copyright (C) 2006, 2007 Free Software Foundation - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ +#include + #include -#include +#include #include #include "about.h" #include "helper.h" +#include +#define _(msgid) gettext (msgid) +#define N_(msgid) msgid + + +static const gchar *artists[] = { "Patrick Brunier", "Dondi Bogusky", NULL}; + void about_new (GtkMenuItem *m, GtkWindow *parent) { - GladeXML *xml = glade_xml_new (PKGDATADIR "/psppire.glade", NULL, NULL); - - GtkWidget *about = get_widget_assert (xml, "aboutdialog1"); + GtkWidget *about = gtk_about_dialog_new (); GdkPixbuf *pb = - gdk_pixbuf_new_from_file_at_size (PKGDATADIR "/pspplogo.png", 64, 64, 0); + gdk_pixbuf_new_from_file_at_size (relocate (PKGDATADIR "/pspplogo.png"), + 64, 64, 0); gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (about), pb); - gtk_window_set_icon_from_file (GTK_WINDOW (about), - PKGDATADIR "/psppicon.png", 0); + gtk_window_set_icon_name (GTK_WINDOW (about), "psppicon"); gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (about), "http://www.gnu.org/software/pspp"); @@ -50,6 +54,24 @@ about_new (GtkMenuItem *m, GtkWindow *parent) gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (about), (const gchar **) authors); + gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG (about), + artists); + + gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (about), + copyleft); + + gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG (about), + _("A program for the analysis of sampled data")); + + gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (about), + "Free Software Foundation"); + + + /* TRANSLATORS: Use this string to list the people who have helped with + translation to your language. */ + gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG (about), + _("translator-credits")); + gtk_window_set_transient_for (GTK_WINDOW (about), parent); gtk_window_set_modal (GTK_WINDOW (about), TRUE);