diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-14 19:18:40 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-14 19:18:40 +0800 |
commit | 55158b392dfc3cf9d6b7ca1f5225ba0ca6c21aad (patch) | |
tree | fabb3c55c8184584692584084c5088558afc2e7e /src | |
parent | 8fb3d72ba837704c583fa2087112ae1044b4f3e1 (diff) | |
download | gsoc2013-epiphany-55158b392dfc3cf9d6b7ca1f5225ba0ca6c21aad.tar.gz gsoc2013-epiphany-55158b392dfc3cf9d6b7ca1f5225ba0ca6c21aad.tar.zst gsoc2013-epiphany-55158b392dfc3cf9d6b7ca1f5225ba0ca6c21aad.zip |
Make the visible name of the application 'Web'
Before we had 'Epiphany' in some places and 'GNOME Web Browser' in
others, try to be consistent and use just 'Web'.
https://bugzilla.gnome.org/show_bug.cgi?id=666587
Diffstat (limited to 'src')
-rw-r--r-- | src/window-commands.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index 8e7ded6c7..f8f7e7b56 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -1158,7 +1158,7 @@ window_cmd_help_about (GtkAction *action, GtkWidget *window) { const char *licence_part[] = { - N_("The GNOME Web Browser is free software; you can redistribute it and/or modify " + N_("Web 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 " "(at your option) any later version."), @@ -1261,10 +1261,10 @@ window_cmd_help_about (GtkAction *action, NULL); gtk_show_about_dialog (window ? GTK_WINDOW (window) : NULL, - "program-name", _("GNOME Web Browser"), + "program-name", _("Web"), "version", VERSION, "copyright", "Copyright © 2002–2004 Marco Pesenti Gritti\n" - "Copyright © 2003–2011 The GNOME Web Browser Developers", + "Copyright © 2003–2011 The Web Developers", "artists", artists, "authors", authors, "comments", comments, @@ -1280,7 +1280,7 @@ window_cmd_help_about (GtkAction *action, "translator-credits", _("translator-credits"), "logo-icon-name", EPHY_STOCK_EPHY, "website", "http://www.gnome.org/projects/epiphany", - "website-label", _("GNOME Web Browser Website"), + "website-label", _("Web Website"), "license", licence, "wrap-license", TRUE, NULL); |