From 26e7290d7a59864998da83c855e3d93d71f2850c Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 14 Jun 2008 22:30:30 +0000 Subject: Fix NetSurf capitalisation and add me. svn path=/trunk/netsurf/; revision=4330 --- gtk/dialogs/gtk_about.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'gtk/dialogs') diff --git a/gtk/dialogs/gtk_about.c b/gtk/dialogs/gtk_about.c index d97d13d65..81d22cea8 100644 --- a/gtk/dialogs/gtk_about.c +++ b/gtk/dialogs/gtk_about.c @@ -22,25 +22,25 @@ GtkAboutDialog* about_dialog; -static gchar *authors[] = {"John-Mark Bell", "James Bursa", - "Rob Kendrick", "Adrian Lees", "Vincent Sanders", "Daniel Silverstone", +static gchar *authors[] = {"John-Mark Bell", "James Bursa", "Michael Drake", + "Rob Kendrick", "Adrian Lees", "Vincent Sanders", "Daniel Silverstone", "Richard Wilson", "\nContributors:", "Kevin Bagust", "Stefaan Claes", - "Matthew Hambley", "Rob Jackson", "Jeffrey Lee", "Phil Mellor", + "Matthew Hambley", "Rob Jackson", "Jeffrey Lee", "Phil Mellor", "Philip Pemberton", "Darren Salt", "Andrew Timmins", "John Tytgat", "Chris Williams", "\nGoogle Summer of Code Contributors:", "Adam Blokus", "Sean Fox", "Michael Lester", "Andrew Sidwell", NULL}; static gchar *translators = "Sebastian Barthel \nBruno D'Arcangeli \nGerard van Katwijk \nJérôme Mathevet \nSimon Voortman."; -static gchar *artists[] = {"Michael Drake", "\nContributors:", +static gchar *artists[] = {"Michael Drake", "\nContributors:", "Andrew Duffell", "John Duffell", "Richard Hallas", "Phil Mellor", NULL}; static gchar *documenters[] = {"John-Mark Bell", "James Bursa", "Michael Drake", "Richard Wilson", "\nContributors:", "James Shaw", NULL}; static gchar *name = "NetSurf"; -static gchar *description = "Small as a mouse, fast as a cheetah, and available for free.\nNetsurf is a web browser for RISC OS and UNIX-like platforms."; -static gchar *url = "http://www.netsurf-browser.org"; +static gchar *description = "Small as a mouse, fast as a cheetah, and available for free.\nNetSurf is a web browser for RISC OS and UNIX-like platforms."; +static gchar *url = "http://www.netsurf-browser.org/"; static gchar *url_label = "NetSurf Website"; static gchar *copyright = "Copyright © 2003 - 2008 The NetSurf Developers"; -static gchar* licence = "licence"; +static gchar* licence = "licence"; static void launch_url (GtkAboutDialog *about_dialog, const gchar *url, gpointer data){ struct browser_window *bw = data; @@ -50,12 +50,12 @@ static void launch_url (GtkAboutDialog *about_dialog, const gchar *url, gpointer void nsgtk_about_dialog_init(GtkWindow *parent, struct browser_window *bw, const char *version) { g_file_get_contents(g_strconcat(res_dir_location, licence, NULL), &licence, NULL, NULL); gtk_about_dialog_set_url_hook (launch_url, (gpointer) bw, NULL); - + gtk_show_about_dialog(parent, "artists", artists, "authors", authors, "comments", description,"copyright", copyright, "documenters", documenters, "license", licence, "program-name", name, "translator-credits", translators, - "version", version, "website", url, "website-label", url_label, + "version", version, "website", url, "website-label", url_label, "wrap-license", FALSE, NULL); -} - +} + -- cgit v1.2.3