~ubuntu-branches/ubuntu/precise/nautilus-actions/precise

« back to all changes in this revision

Viewing changes to src/core/na-iabout.c

  • Committer: Bazaar Package Importer
  • Author(s): Christine Spang
  • Date: 2011-01-01 20:45:43 UTC
  • mfrom: (3.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20110101204543-1prwld2snlallc4r
Tags: 3.0.5-1
* New upstream maintenance release.
* Switch to dpkg-source 3.0 (quilt) format
* Fix building with binutils-gold (Closes: #555763)
  - Thanks to Bhavani Shankar for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Nautilus Actions
 
2
 * Nautilus-Actions
3
3
 * A Nautilus extension which offers configurable context menu actions.
4
4
 *
5
5
 * Copyright (C) 2005 The GNOME Foundation
6
6
 * Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
7
 
 * Copyright (C) 2009, 2010 Pierre Wieser and others (see AUTHORS)
 
7
 * Copyright (C) 2009, 2010, 2011 Pierre Wieser and others (see AUTHORS)
8
8
 *
9
9
 * This Program is free software; you can redistribute it and/or
10
10
 * modify it under the terms of the GNU General Public License as
38
38
 
39
39
/* private interface data
40
40
 */
41
 
struct NAIAboutInterfacePrivate {
 
41
struct _NAIAboutInterfacePrivate {
42
42
        void *empty;                                            /* so that gcc -pedantic is happy */
43
43
};
44
44
 
141
141
        return( NULL );
142
142
}
143
143
 
144
 
/**
 
144
/*
145
145
 * na_iabout_display:
146
146
 * @instance: the #NAIAbout implementor.
147
147
 *
173
173
        };
174
174
 
175
175
        static gchar *license[] = {
176
 
                N_( "Nautilus Actions Configuration Tool is free software; you can "
 
176
                N_( "Nautilus-Actions Configuration Tool is free software; you can "
177
177
                        "redistribute it and/or modify it under the terms of the GNU General "
178
178
                        "Public License as published by the Free Software Foundation; either "
179
179
                        "version 2 of the License, or (at your option) any later version." ),
180
 
                N_( "Nautilus Actions Configuration Tool is distributed in the hope that it "
 
180
                N_( "Nautilus-Actions Configuration Tool is distributed in the hope that it "
181
181
                        "will be useful, but WITHOUT ANY WARRANTY; without even the implied "
182
182
                        "warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See "
183
183
                        "the GNU General Public License for more details." ),
184
184
                N_( "You should have received a copy of the GNU General Public License along "
185
 
                        "with Nautilus Actions Configuration Tool ; if not, write to the Free "
 
185
                        "with Nautilus-Actions Configuration Tool ; if not, write to the Free "
186
186
                        "Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, "
187
187
                        "MA 02110-1301, USA." ),
188
188
                NULL
203
203
                gtk_show_about_dialog( toplevel,
204
204
                                "artists", artists,
205
205
                                "authors", authors,
206
 
                                "comments", _( "A graphical interface to create and edit your Nautilus actions." ),
 
206
                                "comments", _( "A graphical interface to create and edit your Nautilus-Actions." ),
207
207
                                "copyright", copyright,
208
208
                                "documenters", documenters,
209
209
                                "license", license_i18n,
222
222
        }
223
223
}
224
224
 
225
 
/**
 
225
/*
226
226
 * na_iabout_get_icon_name:
227
227
 *
228
228
 * Returns: the name of the default icon for the application, as a newly
234
234
        return( g_strdup( PACKAGE ));
235
235
}
236
236
 
237
 
/**
 
237
/*
238
238
 * na_iabout_get_copyright:
239
239
 * @console: whether the string is to be printed on a console.
240
240
 *
252
252
        copyright = g_strdup_printf(
253
253
                        _( "Copyright %s 2005 The GNOME Foundation\n"
254
254
                                "Copyright %s 2006, 2007, 2008 Frederic Ruaudel <grumz@grumz.net>\n"
255
 
                                "Copyright %s 2009, 2010 Pierre Wieser <pwieser@trychlos.org>" ), symbol, symbol, symbol );
 
255
                                "Copyright %s 2009, 2010, 2011 Pierre Wieser <pwieser@trychlos.org>" ), symbol, symbol, symbol );
256
256
 
257
257
        g_free( symbol );
258
258