diff --git a/src/plugins/webreport/WebCal.py b/src/plugins/webreport/WebCal.py
index 749e41c67..47f768792 100644
--- a/src/plugins/webreport/WebCal.py
+++ b/src/plugins/webreport/WebCal.py
@@ -568,10 +568,15 @@ class WebCalReport(Report):
# Figure out if we need
or just plain
cs = url_fname == currentsection and 'class="CurrentSection"' or ''
+
+ if nav_text == _("Home"):
+ title = _("Narrative Web Home")
+ else:
+ title = url_fname
unordered += Html("li", attr = cs, inline = True) + (
# create hyperlink
- Html("a", nav_text, href = url, title = url_fname, inline = True) )
+ Html("a", nav_text, href = url, title = title) )
# return monthnav to its caller
return section