2007-06-24 Don Allingham <don@gramps-project.org>

* configure.in: add files
	* src/DataViews/_RelationView.py: fix translation argument
	* src/RelLib/Makefile.am: Add missing files
	* src/plugins/Makefile.am: Add missing files
	* src/DbManager.py: fix translation argument
	* src/Utils.py: fix translation argument
	* src/Filters/Rules/Person/Makefile.am: Add missing files
	* src/Makefile.am: Add missing files



svn: r8661
This commit is contained in:
Don Allingham
2007-06-25 04:57:53 +00:00
parent 863a701d63
commit c0737ebfe3
11 changed files with 41 additions and 40 deletions

View File

@ -181,7 +181,10 @@ def family_upper_name(family, db):
if father and mother:
fname = father.get_primary_name().get_upper_name()
mname = mother.get_primary_name().get_upper_name()
name = _("%s and %s") % (fname,mname)
name = _("%{father}s and %{mother}s") % {
'father' : fname,
'mother' : mname
}
elif father:
name = father.get_primary_name().get_upper_name()
else: