3391: Some sentences missed the final dot
svn: r13674
This commit is contained in:
@@ -441,7 +441,7 @@ class RecordsReportOptions(MenuReportOptions):
|
||||
|
||||
self.__filter = FilterOption(_("Filter"), 0)
|
||||
self.__filter.set_help(
|
||||
_("Determines what people are included in the report"))
|
||||
_("Determines what people are included in the report."))
|
||||
menu.add_option(category_name, "filter", self.__filter)
|
||||
self.__filter.connect('value-changed', self.__filter_changed)
|
||||
|
||||
@@ -519,7 +519,7 @@ class RecordsReportOptions(MenuReportOptions):
|
||||
font.set_bold(1)
|
||||
para = ParagraphStyle()
|
||||
para.set_font(font)
|
||||
para.set_description(_("The style used for the report title"))
|
||||
para.set_description(_("The style used for the report title."))
|
||||
default_style.add_paragraph_style('REC-Title', para)
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
|
||||
@@ -903,12 +903,12 @@ class StatisticsChartOptions(MenuReportOptions):
|
||||
|
||||
self.__filter = FilterOption(_("Filter"), 0)
|
||||
self.__filter.set_help(
|
||||
_("Determines what people are included in the report"))
|
||||
_("Determines what people are included in the report."))
|
||||
menu.add_option(category_name, "filter", self.__filter)
|
||||
self.__filter.connect('value-changed', self.__filter_changed)
|
||||
|
||||
self.__pid = PersonOption(_("Filter Person"))
|
||||
self.__pid.set_help(_("The center person for the filter"))
|
||||
self.__pid.set_help(_("The center person for the filter."))
|
||||
menu.add_option(category_name, "pid", self.__pid)
|
||||
self.__pid.connect('value-changed', self.__update_filters)
|
||||
|
||||
@@ -929,7 +929,7 @@ class StatisticsChartOptions(MenuReportOptions):
|
||||
this_year = time.localtime()[0]
|
||||
year_from = NumberOption(_("People Born After"),
|
||||
1700, 1, this_year)
|
||||
year_from.set_help(_("Birth year from which to include people"))
|
||||
year_from.set_help(_("Birth year from which to include people."))
|
||||
menu.add_option(category_name,"year_from", year_from)
|
||||
|
||||
year_to = NumberOption(_("People Born Before"),
|
||||
@@ -940,7 +940,7 @@ class StatisticsChartOptions(MenuReportOptions):
|
||||
no_years = BooleanOption(_("Include people without known birth years"),
|
||||
False)
|
||||
no_years.set_help(_("Whether to include people without "
|
||||
"known birth years"))
|
||||
"known birth years."))
|
||||
menu.add_option(category_name,"no_years", no_years)
|
||||
|
||||
gender = EnumeratedListOption(_('Genders included'),
|
||||
@@ -969,7 +969,7 @@ class StatisticsChartOptions(MenuReportOptions):
|
||||
category_name = _("Charts 2")
|
||||
|
||||
opt = BooleanOption(_Extract.extractors[key][1], False)
|
||||
opt.set_help(_("Include charts with indicated data"))
|
||||
opt.set_help(_("Include charts with indicated data."))
|
||||
menu.add_option(category_name,key, opt)
|
||||
idx += 1
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
plg = newplugin()
|
||||
plg.id = 'familylines_graph'
|
||||
plg.name = _("Family Lines Graph")
|
||||
plg.description = _("Produces family line graphs using GraphViz")
|
||||
plg.description = _("Produces family line graphs using GraphViz.")
|
||||
plg.version = '1.0'
|
||||
plg.status = STABLE
|
||||
plg.fname = 'GVFamilyLines.py'
|
||||
@@ -51,7 +51,7 @@ plg.require_active = False
|
||||
plg = newplugin()
|
||||
plg.id = 'hourglass_graph'
|
||||
plg.name = _("Hourglass Graph")
|
||||
plg.description = _("Produces an hourglass graph using Graphviz")
|
||||
plg.description = _("Produces an hourglass graph using Graphviz.")
|
||||
plg.version = '1.0'
|
||||
plg.status = STABLE
|
||||
plg.fname = 'GVHourGlass.py'
|
||||
@@ -72,7 +72,7 @@ plg.report_modes = [REPORT_MODE_GUI, REPORT_MODE_CLI]
|
||||
plg = newplugin()
|
||||
plg.id = 'rel_graph'
|
||||
plg.name = _("Relationship Graph")
|
||||
plg.description = _("Produces relationship graphs using Graphviz")
|
||||
plg.description = _("Produces relationship graphs using Graphviz.")
|
||||
plg.version = '1.0'
|
||||
plg.status = STABLE
|
||||
plg.fname = 'GVRelGraph.py'
|
||||
|
||||
@@ -643,12 +643,12 @@ class IndivCompleteOptions(MenuReportOptions):
|
||||
|
||||
self.__filter = FilterOption(_("Filter"), 0)
|
||||
self.__filter.set_help(
|
||||
_("Select the filter to be applied to the report"))
|
||||
_("Select the filter to be applied to the report."))
|
||||
menu.add_option(category_name, "filter", self.__filter)
|
||||
self.__filter.connect('value-changed', self.__filter_changed)
|
||||
|
||||
self.__pid = PersonOption(_("Filter Person"))
|
||||
self.__pid.set_help(_("The center person for the filter"))
|
||||
self.__pid.set_help(_("The center person for the filter."))
|
||||
menu.add_option(category_name, "pid", self.__pid)
|
||||
self.__pid.connect('value-changed', self.__update_filters)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user