aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/window-commands.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a74d30e5c..4c8d4bda9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-21 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/window-commands.c: (window_cmd_help_about):
+
+ Fix the previous commit.
+
2006-01-21 Crispin Flowerday <gnome@flowerday.cx>
* src/bookmarks/ephy-bookmarks-editor.c (cmd_bookmarks_export)
diff --git a/src/window-commands.c b/src/window-commands.c
index 274b8a9a1..f85966bd0 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -729,7 +729,7 @@ window_cmd_help_about (GtkAction *action,
NULL
};
- const char *license[] = {
+ const char *licence_part[] = {
N_("The GNOME Web Browser 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 "
@@ -746,7 +746,7 @@ window_cmd_help_about (GtkAction *action,
char *licence;
licence = g_strdup_printf ("%s\n%s\n%s",
- _(license[0]), _(license[1]), _(license[2]));
+ _(licence_part[0]), _(licence_part[1]), _(licence_part[2]));
gtk_show_about_dialog (GTK_WINDOW (window),
"name", _("GNOME Web Browser"),
@@ -767,7 +767,7 @@ window_cmd_help_about (GtkAction *action,
"logo-icon-name", "web-browser",
"website", "http://www.gnome.org/projects/epiphany",
"website-label", _("GNOME Web Browser Website"),
- "license", license,
+ "license", licence,
"wrap-license", TRUE,
NULL);