3391: Some sentences missed the final dot
svn: r13674
This commit is contained in:
parent
8aa9a86c59
commit
15f9344340
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Events changed after <date time>')
|
||||
description = _("Matches event records changed after a specified "
|
||||
"date/time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date/time is given")
|
||||
"date/time is given.")
|
||||
|
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Families changed after <date time>')
|
||||
description = _("Matches family records changed after a specified "
|
||||
"date-time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date-time is given")
|
||||
"date-time is given.")
|
||||
|
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Media objects changed after <date time>')
|
||||
description = _("Matches media objects changed after a specified "
|
||||
"date:time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date:time is given")
|
||||
"date:time is given.")
|
||||
|
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Notes changed after <date time>')
|
||||
description = _("Matches note records changed after a specified "
|
||||
"date-time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date-time is given")
|
||||
"date-time is given.")
|
||||
|
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Persons changed after <date time>')
|
||||
description = _("Matches person records changed after a specified "
|
||||
"date-time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date-time is given")
|
||||
"date-time is given.")
|
||||
|
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Places changed after <date time>')
|
||||
description = _("Matches place records changed after a specified "
|
||||
"date-time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date-time is given")
|
||||
"date-time is given.")
|
||||
|
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Repositories changed after <date time>')
|
||||
description = _("Matches repository records changed after a specified "
|
||||
"date/time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date/time is given")
|
||||
"date/time is given.")
|
||||
|
@ -23,4 +23,4 @@ class ChangedSince(ChangedSinceBase):
|
||||
name = _('Sources changed after <date time>')
|
||||
description = _("Matches source records changed after a specified "
|
||||
"date-time (yyyy-mm-dd hh:mm:ss) or in the range, if a second "
|
||||
"date-time is given")
|
||||
"date-time is given.")
|
||||
|
@ -28,7 +28,7 @@ class ChangedSinceBase(Rule):
|
||||
name = _('Objects changed after <date time>')
|
||||
description = _("Matches object records changed after a specified "
|
||||
"date/time (yyyy-mm-dd hh:mm:ss) or in range, if a second "
|
||||
"date/time is given")
|
||||
"date/time is given.")
|
||||
category = _('General filters')
|
||||
|
||||
def add_time(self, date):
|
||||
|
@ -205,20 +205,20 @@ class GrampsPreferences(ManagedWindow.ManagedWindow):
|
||||
table.set_col_spacings(6)
|
||||
table.set_row_spacings(6)
|
||||
self.add_checkbox(
|
||||
table, _('Suppress warning when adding parents to a child'),
|
||||
table, _('Suppress warning when adding parents to a child.'),
|
||||
0, 'preferences.family-warn')
|
||||
|
||||
self.add_checkbox(
|
||||
table, _('Suppress warning when cancelling with changed data'),
|
||||
table, _('Suppress warning when cancelling with changed data.'),
|
||||
1, 'interface.dont-ask')
|
||||
|
||||
self.add_checkbox(
|
||||
table, _('Suppress warning about missing researcher when'
|
||||
' exporting to GEDCOM'),
|
||||
' exporting to GEDCOM.'),
|
||||
2, 'behavior.owner-warn')
|
||||
|
||||
self.add_checkbox(
|
||||
table, _('Show plugin status dialog on plugin load error'),
|
||||
table, _('Show plugin status dialog on plugin load error.'),
|
||||
3, 'behavior.pop-plugin-status')
|
||||
|
||||
return table
|
||||
@ -450,7 +450,7 @@ class GrampsPreferences(ManagedWindow.ManagedWindow):
|
||||
oldname = self.fmt_model.get_value(node, COL_NAME)
|
||||
# check to see if this pattern already exists
|
||||
if self.__check_for_name(translation, node):
|
||||
ErrorDialog(_("This format exists already"),
|
||||
ErrorDialog(_("This format exists already."),
|
||||
translation)
|
||||
self.edit_button.emit('clicked')
|
||||
return
|
||||
@ -472,7 +472,7 @@ class GrampsPreferences(ManagedWindow.ManagedWindow):
|
||||
t = (_nd.format_str(self.name, escape(obj.get_text())))
|
||||
self.valid = True
|
||||
except NameDisplayError:
|
||||
t = _("Invalid or incomplete format definition")
|
||||
t = _("Invalid or incomplete format definition.")
|
||||
self.valid = False
|
||||
self.fmt_model.set(self.iter, COL_EXPL, t)
|
||||
|
||||
@ -1062,7 +1062,7 @@ class NameFormatEditDlg(object):
|
||||
self.response = gtk.RESPONSE_CANCEL
|
||||
elif (self.fmt_name == '') ^ (self.fmt_str == ''):
|
||||
ErrorDialog(
|
||||
_('Both Format name and definition have to be defined'),
|
||||
_('Both Format name and definition have to be defined.'),
|
||||
parent=self.dlg)
|
||||
running = True
|
||||
|
||||
@ -1075,7 +1075,7 @@ class NameFormatEditDlg(object):
|
||||
sample = '<span weight="bold" style="italic">%s</span>' % t
|
||||
self.valid = True
|
||||
except NameDisplayError:
|
||||
t = _("Invalid or incomplete format definition")
|
||||
t = _("Invalid or incomplete format definition.")
|
||||
sample = '<span foreground="#FF0000">%s</span>' % t
|
||||
self.valid = False
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user