merge of typo fixes from 3.1 branch

svn: r12072
This commit is contained in:
Stéphane Charette 2009-02-22 11:07:51 +00:00
parent 8a9f3a89f9
commit 049ea61b10
2 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ class FilterParser(handler.ContentHandler):
def endElement(self, tag): def endElement(self, tag):
if tag == "rule" and self.r is not None: if tag == "rule" and self.r is not None:
if len(self.r.labels) < len(self.a): if len(self.r.labels) < len(self.a):
print _("WARNING: To many arguments in filter '%s'!\n"\ print _("WARNING: Too many arguments in filter '%s'!\n"\
"Trying to load with subset of arguments.") %\ "Trying to load with subset of arguments.") %\
self.f.get_name() self.f.get_name()
nargs = len(self.r.labels) nargs = len(self.r.labels)
@ -116,7 +116,7 @@ class FilterParser(handler.ContentHandler):
self.f.add_rule(rule) self.f.add_rule(rule)
else: else:
if len(self.r.labels) > len(self.a): if len(self.r.labels) > len(self.a):
print _("WARNING: To few arguments in filter '%s'!\n" \ print _("WARNING: Too few arguments in filter '%s'!\n" \
" Trying to load anyway in the hope this "\ " Trying to load anyway in the hope this "\
"will be upgraded.") %\ "will be upgraded.") %\
self.f.get_name() self.f.get_name()

View File

@ -79,7 +79,7 @@ class GrampsAboutDialog(gtk.AboutDialog):
_("Much of GRAMPS' artwork is either from\n" _("Much of GRAMPS' artwork is either from\n"
"the Tango Project or derived from the Tango\n" "the Tango Project or derived from the Tango\n"
"Project. This artwork is released under the\n" "Project. This artwork is released under the\n"
"Create Commons Attribution-ShareAlike 2.5\n" "Creative Commons Attribution-ShareAlike 2.5\n"
"license.") "license.")
]) ])