diff options
Diffstat (limited to 'src/ephy-navigation-history-action.c')
-rw-r--r-- | src/ephy-navigation-history-action.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ephy-navigation-history-action.c b/src/ephy-navigation-history-action.c index 6898001ee..9ad165a9e 100644 --- a/src/ephy-navigation-history-action.c +++ b/src/ephy-navigation-history-action.c @@ -33,6 +33,7 @@ #include "ephy-gui.h" #include "ephy-history-service.h" #include "ephy-link.h" +#include "ephy-overview.h" #include "ephy-shell.h" #include "ephy-type-builtins.h" #include "ephy-window.h" @@ -544,7 +545,7 @@ build_dropdown_menu (EphyNavigationHistoryAction *action) /* The overview is not actually a webpage, so we need to hardcode * this here. */ if (g_strcmp0 (uri, "ephy-about:overview") == 0) - title = g_strdup (_("Most Visited")); + title = g_strdup (EPHY_OVERVIEW_TITLE); if (title == NULL || g_strstrip (title)[0] == '\0') item = new_history_menu_item (EPHY_WEB_VIEW (web_view), uri, uri); |