3709: Typos and grammar mistakes

svn: r14841
This commit is contained in:
Benny Malengier 2010-03-15 22:11:25 +00:00
parent 86238994bb
commit 585e0fa85d
5 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,7 @@ class HasRepository(Rule):
labels = [ _('Number of instances:'), _('Number must be:')]
name = _('Sources with <count> Repository references')
description = _("Matches sources with certain number repository references")
description = _("Matches sources with a certain number of repository references")
category = _('General filters')
def prepare(self, db):

View File

@ -571,7 +571,7 @@ class PluginStatus(ManagedWindow.ManagedWindow):
callback(" " + (_("'%s' is for this version of Gramps.") % gpr_file) + "\n")
else:
# If the plugin is for another version; inform and do nothing
callback(" " + (_("'%s' is for NOT this version of Gramps.") % gpr_file) + "\n")
callback(" " + (_("'%s' is NOT for this version of Gramps.") % gpr_file) + "\n")
callback(" " + (_("It is for version %d.%d" % vtup) + "\n"))
continue
else:

View File

@ -171,7 +171,7 @@ class ArgHandler(object):
fname = value
fullpath = os.path.abspath(os.path.expanduser(fname))
if os.path.exists(fullpath):
self.__error(_("WARNING: Output file already exist!\n"
self.__error(_("WARNING: Output file already exists!\n"
"WARNING: It will be overwritten:\n %(name)s") % \
{'name' : fullpath})
answer = None

View File

@ -87,7 +87,7 @@ plg = newplugin()
plg.id = 'im_gpkg'
plg.name = _('Gramps package (portable XML)')
plg.description = _('Import data from a Gramps package (an archived XML '
'family tree together with the media object files.')
'family tree together with the media object files.)')
plg.version = '1.0'
plg.gramps_target_version = '3.3'
plg.status = STABLE

View File

@ -652,8 +652,8 @@ class IndivCompleteOptions(MenuReportOptions):
self.__update_filters()
sort = BooleanOption(_("List events chonologically"), True)
sort.set_help(_("Whether to sort events into chonological order."))
sort = BooleanOption(_("List events chronologically"), True)
sort.set_help(_("Whether to sort events into chronological order."))
menu.add_option(category_name, "sort", sort)
cites = BooleanOption(_("Include Source Information"), True)