From e4564ec86ebb7c73dcc1ec5bdc6c2802ceffa3a4 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Sun, 10 Mar 2019 12:34:35 +0100 Subject: [PATCH] Webcal: better help msg for the after year option. --- gramps/plugins/webreport/webcal.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gramps/plugins/webreport/webcal.py b/gramps/plugins/webreport/webcal.py index 74d208825..7b5a703dc 100644 --- a/gramps/plugins/webreport/webcal.py +++ b/gramps/plugins/webreport/webcal.py @@ -1901,9 +1901,10 @@ class WebCalOptions(MenuReportOptions): self.__after_year = NumberOption(_('Show data only after year'), (today.get_year() - default_before), 0, today.get_year()) - self.__after_year.set_help(_("Don't show data before this year." - " should be before current year - " - " 100")) + self.__after_year.set_help(_("Show data only after this year." + " Default is current year - " + " 'maximum age probably alive' which is " + "defined in the dates preference tab.")) menu.add_option(category_name, 'after_year', self.__after_year) dbname = self.__db.get_dbname()