summaryrefslogtreecommitdiff
path: root/embed/ephy-embed-utils.c
diff options
context:
space:
mode:
authorGabriel Ivascu <ivascu.gabriel59@gmail.com>2017-07-31 13:06:00 +0300
committerMichael Catanzaro <mcatanzaro@igalia.com>2017-08-06 09:28:09 -0500
commitdd0ace0aa1914eb48b963a955f57e3845e8c42c4 (patch)
treececc8e82d7b7db981a36ce8a83f824bbc018406d /embed/ephy-embed-utils.c
parent2e0a15b06efe1a7efdd91e330726c8b95cbc848c (diff)
downloadepiphany-dd0ace0aa1914eb48b963a955f57e3845e8c42c4.tar.gz
sync: Fix issues pointed in the code review
Diffstat (limited to 'embed/ephy-embed-utils.c')
-rw-r--r--embed/ephy-embed-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed-utils.c b/embed/ephy-embed-utils.c
index 2da1f5c40..83e6065b8 100644
--- a/embed/ephy-embed-utils.c
+++ b/embed/ephy-embed-utils.c
@@ -341,7 +341,7 @@ ephy_embed_utils_get_title_from_address (const char *address)
if (!strcmp (address, EPHY_ABOUT_SCHEME ":overview") ||
!strcmp (address, "about:overview"))
- return g_strdup (_("Most Visited"));
+ return g_strdup (_(OVERVIEW_PAGE_TITLE));
return ephy_string_get_host_name (address);
}