From a889b91b576efe912f292b3360549f8b2c0c26d7 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Tue, 1 Jun 2021 17:37:02 +0100 Subject: [PATCH] Further changes --- gramps/plugins/webreport/narrativeweb.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index 2e8c02c3a..ea128edfa 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -1585,8 +1585,6 @@ class NavWebReport(Report): The extension is added to the filename as well. Notice that we do NOT use os.path.join() because we're creating a URL. - Imagine we run Gramps on Windows (gods forbidding), we don't want to - see backslashes in the URL. """ if not fname: return "" @@ -2382,14 +2380,14 @@ class NavWebOptions(MenuReportOptions): _('Add a complete events list and relevant pages or not')) addopt("inc_events", inc_events) - inc_places = BooleanOption(_('Include places pages'), False) + inc_places = BooleanOption(_('Include place pages'), False) inc_places.set_help( - _('Whether or not to include the places pages.')) + _('Whether or not to include the place pages.')) addopt("inc_places", inc_places) - inc_sources = BooleanOption(_('Include sources pages'), False) + inc_sources = BooleanOption(_('Include source pages'), False) inc_sources.set_help( - _('Whether or not to include the sources pages.')) + _('Whether or not to include the source pages.')) addopt("inc_sources", inc_sources) inc_repository = BooleanOption(_('Include repository pages'), False)