diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2012-07-04 23:49:58 +0800 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2012-07-09 19:20:23 +0800 |
commit | 3fdc68f551f2fdcafd8d7d2cd0cf3045dcc1f253 (patch) | |
tree | c8f5ef0ad32daf4088f9684595fb9687ba8d1f52 | |
parent | 62de5a84128ed37e1b6a125c9d50d0243207bffb (diff) | |
download | gsoc2013-epiphany-3fdc68f551f2fdcafd8d7d2cd0cf3045dcc1f253.tar.gz gsoc2013-epiphany-3fdc68f551f2fdcafd8d7d2cd0cf3045dcc1f253.tar.zst gsoc2013-epiphany-3fdc68f551f2fdcafd8d7d2cd0cf3045dcc1f253.zip |
window-commands: Port WebKit version information in about dialog to WebKit2
https://bugzilla.gnome.org/show_bug.cgi?id=679403
-rw-r--r-- | src/window-commands.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index 0f81cf2a3..fc00d4384 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -1312,7 +1312,11 @@ window_cmd_help_about (GtkAction *action, g_key_file_free (key_file); #ifdef HAVE_WEBKIT2 - /* TODO: WebKit Version */ + comments = g_strdup_printf (_("Lets you view web pages and find information on the internet.\n" + "Powered by WebKit %d.%d.%d"), + webkit_get_major_version (), + webkit_get_minor_version (), + webkit_get_micro_version ()); #else comments = g_strdup_printf (_("Lets you view web pages and find information on the internet.\n" "Powered by WebKit %d.%d.%d"), |