diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-01-22 05:07:19 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-01-22 05:07:19 +0800 |
commit | dbc0b3af9051885a4f70e831e16fa535b6bf7866 (patch) | |
tree | e91e8c3aee8bdadecf42e83ac9ba58a59b794454 /src/window-commands.c | |
parent | f869893ec4745e99d49b279e33ef5abaa2f69958 (diff) | |
download | gsoc2013-epiphany-dbc0b3af9051885a4f70e831e16fa535b6bf7866.tar.gz 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/window-commands.c')
-rw-r--r-- | src/window-commands.c | 6 |
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); |