Fixed typos for translations
svn: r1601
This commit is contained in:
parent
b70da6f5a4
commit
39a88d2934
@ -178,7 +178,7 @@ class IsDescendantOf(Rule):
|
|||||||
def search(self,p):
|
def search(self,p):
|
||||||
if self.map.has_key(p.getId()) == 1:
|
if self.map.has_key(p.getId()) == 1:
|
||||||
raise Errors.FilterError(_("Loop detected while applying filter"),
|
raise Errors.FilterError(_("Loop detected while applying filter"),
|
||||||
_("A relationship loop was detected between %s [%s]"
|
_("A relationship loop was detected between %s [%s] "
|
||||||
"and %s [%s]. This is probably due to an error in the "
|
"and %s [%s]. This is probably due to an error in the "
|
||||||
"database.") % (self.orig.getPrimaryName().getName(),
|
"database.") % (self.orig.getPrimaryName().getName(),
|
||||||
self.orig.getId(),
|
self.orig.getId(),
|
||||||
@ -215,7 +215,7 @@ class IsDescendantFamilyOf(Rule):
|
|||||||
def search(self,p,val):
|
def search(self,p,val):
|
||||||
if self.map.has_key(p.getId()):
|
if self.map.has_key(p.getId()):
|
||||||
Errors.FilterError(_("Loop detected while applying filter"),
|
Errors.FilterError(_("Loop detected while applying filter"),
|
||||||
_("A relationship loop was detected between %s [%s]"
|
_("A relationship loop was detected between %s [%s] "
|
||||||
"and %s [%s]. This is probably due to an error in the "
|
"and %s [%s]. This is probably due to an error in the "
|
||||||
"database.") % (self.orig.getPrimaryName().getName(),
|
"database.") % (self.orig.getPrimaryName().getName(),
|
||||||
self.orig.getId(),
|
self.orig.getId(),
|
||||||
@ -264,7 +264,7 @@ class IsAncestorOf(Rule):
|
|||||||
def search(self,p):
|
def search(self,p):
|
||||||
if self.map.has_key(p.getId()) == 1:
|
if self.map.has_key(p.getId()) == 1:
|
||||||
raise Errors.FilterError(_("Loop detected while applying filter"),
|
raise Errors.FilterError(_("Loop detected while applying filter"),
|
||||||
_("A relationship loop was detected between %s [%s]"
|
_("A relationship loop was detected between %s [%s] "
|
||||||
"and %s [%s]. This is probably due to an error in the "
|
"and %s [%s]. This is probably due to an error in the "
|
||||||
"database.") % (self.orig.getPrimaryName().getName(),
|
"database.") % (self.orig.getPrimaryName().getName(),
|
||||||
self.orig.getId(),
|
self.orig.getId(),
|
||||||
|
@ -124,7 +124,7 @@ class MediaView:
|
|||||||
,_("There is no suitable tool to generate thumbnails for the images. "
|
,_("There is no suitable tool to generate thumbnails for the images. "
|
||||||
"If you would like to enable this feature, "
|
"If you would like to enable this feature, "
|
||||||
"install Python Imaging Library (PIL), available at http://www.pythonware.com/products/pil/ "
|
"install Python Imaging Library (PIL), available at http://www.pythonware.com/products/pil/ "
|
||||||
"or ImageMagick, available http://www.imagemagick.org/"))
|
"or ImageMagick, available at http://www.imagemagick.org/"))
|
||||||
|
|
||||||
def goto(self,id):
|
def goto(self,id):
|
||||||
self.selection.unselect_all()
|
self.selection.unselect_all()
|
||||||
|
@ -98,7 +98,7 @@ class StartupDialog:
|
|||||||
p.set_text(_('GRAMPS is an Open Source project. Its success '
|
p.set_text(_('GRAMPS is an Open Source project. Its success '
|
||||||
'depends on the users. User feedback is important. '
|
'depends on the users. User feedback is important. '
|
||||||
'Please join the mailing lists, submit bug reports, '
|
'Please join the mailing lists, submit bug reports, '
|
||||||
'suggest improvements, and see how you can '
|
'suggest improvements, and see how you can '
|
||||||
'contribute.\n\nPlease enjoy using GRAMPS.'))
|
'contribute.\n\nPlease enjoy using GRAMPS.'))
|
||||||
return p
|
return p
|
||||||
|
|
||||||
|
@ -112,6 +112,7 @@ comments = _("GRAMPS (Genealogical Research and Analysis "
|
|||||||
authors = [
|
authors = [
|
||||||
"Donald N. Allingham",
|
"Donald N. Allingham",
|
||||||
"Donald A. Peterson",
|
"Donald A. Peterson",
|
||||||
|
"Alexander Roitman",
|
||||||
"David Hampton",
|
"David Hampton",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -557,7 +557,7 @@
|
|||||||
<child>
|
<child>
|
||||||
<widget class="GtkEntry" id="nickname">
|
<widget class="GtkEntry" id="nickname">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="tooltip" translatable="yes">A name that the person was more commonly know by</property>
|
<property name="tooltip" translatable="yes">A name that the person was more commonly known by</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="editable">True</property>
|
<property name="editable">True</property>
|
||||||
<property name="visibility">True</property>
|
<property name="visibility">True</property>
|
||||||
|
@ -361,7 +361,7 @@ class FtmAncestorReport(Report.Report):
|
|||||||
'endnotes' : self.endnotes(event),
|
'endnotes' : self.endnotes(event),
|
||||||
})
|
})
|
||||||
else:
|
else:
|
||||||
self.doc.write_text(_('She married %(spouse)s%(endnotes)s ') % {
|
self.doc.write_text(_('She married %(spouse)s%(endnotes)s.') % {
|
||||||
'spouse' : spouse.getPrimaryName().getRegularName(),
|
'spouse' : spouse.getPrimaryName().getRegularName(),
|
||||||
'endnotes' : self.endnotes(event),
|
'endnotes' : self.endnotes(event),
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user