diff --git a/public/language/en_GB/recent.json b/public/language/en_GB/recent.json
index d868eb381a..654aa9977a 100644
--- a/public/language/en_GB/recent.json
+++ b/public/language/en_GB/recent.json
@@ -1,4 +1,5 @@
{
+ "title": "Recent",
"day": "Day",
"week": "Week",
"month": "Month"
diff --git a/public/language/en_GB/unread.json b/public/language/en_GB/unread.json
index f8d5ccfbc3..92abe978e9 100644
--- a/public/language/en_GB/unread.json
+++ b/public/language/en_GB/unread.json
@@ -1,4 +1,5 @@
{
+ "title": "Unread",
"no_unread_topics": "There are no unread topics.",
"mark_all_read": "Mark all as Read",
"load_more": "Load More"
diff --git a/public/templates/outgoing.tpl b/public/templates/outgoing.tpl
index 6c6d8d9e0f..e6b8af32b6 100644
--- a/public/templates/outgoing.tpl
+++ b/public/templates/outgoing.tpl
@@ -1,7 +1,7 @@
-
- Home
+ [[global:home]]
-
[[notifications:outgoing_link]]
diff --git a/public/templates/popular.tpl b/public/templates/popular.tpl
index d26975466e..391cf8b41d 100644
--- a/public/templates/popular.tpl
+++ b/public/templates/popular.tpl
@@ -1,5 +1,5 @@
- - Home
+ - [[global:home]]
- [[global:header.popular]]
diff --git a/public/templates/recent.tpl b/public/templates/recent.tpl
index 000cbe64e1..ed2eb7285d 100644
--- a/public/templates/recent.tpl
+++ b/public/templates/recent.tpl
@@ -1,6 +1,6 @@
- - Home
- - Recent
+ - [[global:home]]
+ - [[recent:title]]
diff --git a/public/templates/unread.tpl b/public/templates/unread.tpl
index 36874fd2b8..b725361503 100644
--- a/public/templates/unread.tpl
+++ b/public/templates/unread.tpl
@@ -1,7 +1,7 @@
- [[global:home]]
- - {category_name}
+ - [[unread:title]]
diff --git a/src/topics.js b/src/topics.js
index 147447adf9..99fa141625 100644
--- a/src/topics.js
+++ b/src/topics.js
@@ -589,7 +589,6 @@ var async = require('async'),
Topics.getUnreadTopics = function(uid, start, stop, callback) {
var unreadTopics = {
- 'category_name': 'Unread',
'show_sidebar': 'hidden',
'show_topic_button': 'hidden',
'show_markallread_button': 'show',