summaryrefslogtreecommitdiff
path: root/embed/ephy-about-handler.c
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2018-07-25 07:24:34 -0500
committerMichael Catanzaro <mcatanzaro@igalia.com>2018-07-25 07:25:04 -0500
commitdbcad84c97b1d74657074bd5205facb2fda0d23d (patch)
treeb29cc87cbe9912904de62c9c6386b5b011e985c2 /embed/ephy-about-handler.c
parent17cd06fc53e477460b47a10d399955df6fe55a9b (diff)
downloadepiphany-dbcad84c97b1d74657074bd5205facb2fda0d23d.tar.gz
Slightly improve about:web
Diffstat (limited to 'embed/ephy-about-handler.c')
-rw-r--r--embed/ephy-about-handler.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/embed/ephy-about-handler.c b/embed/ephy-about-handler.c
index dd0a489af..970f2af2c 100644
--- a/embed/ephy-about-handler.c
+++ b/embed/ephy-about-handler.c
@@ -185,10 +185,14 @@ ephy_about_handler_handle_about (EphyAboutHandler *handler,
"</div></body></html>",
_("About Web"),
icon_info ? gtk_icon_info_get_filename (icon_info) : "",
- _("Web"),
+#if !TECH_PREVIEW
+ _("Web"),
+#else
+ _("Epiphany Technology Preview"),
+#endif
version,
_("A simple, clean, beautiful view of the web"),
- "WebKit", webkit_get_major_version (), webkit_get_minor_version (), webkit_get_micro_version ());
+ "WebKitGTK+", webkit_get_major_version (), webkit_get_minor_version (), webkit_get_micro_version ());
g_free (version);
if (icon_info)
g_object_unref (icon_info);