aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-01-22 05:07:19 +0800
committerChristian Persch <chpe@src.gnome.org>2006-01-22 05:07:19 +0800
commitdbc0b3af9051885a4f70e831e16fa535b6bf7866 (patch)
treee91e8c3aee8bdadecf42e83ac9ba58a59b794454 /src
parentf869893ec4745e99d49b279e33ef5abaa2f69958 (diff)
downloadgsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.tar
gsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.tar.gz
gsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.tar.bz2
gsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.tar.lz
gsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.tar.xz
gsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.tar.zst
gsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.zip
Fix the previous commit.
2006-01-21 Christian Persch <chpe@cvs.gnome.org> * src/window-commands.c: (window_cmd_help_about): Fix the previous commit.
Diffstat (limited to 'src')
-rw-r--r--src/window-commands.c6
1 files changed, 3 insertions, 3 deletions
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);