* data\gramps.desktop: Add french entry and comment

* plugins\DetDescendantReport.py: Same patch as DetAncestralReport (age calculated bug)


svn: r5761
This commit is contained in:
Jérôme Rapinat 2006-01-16 15:17:37 +00:00
parent 28b56af746
commit 882d9c0b17
2 changed files with 5 additions and 2 deletions

View File

@ -9,6 +9,7 @@ Name[de]=GRAMPS
Name[hu]=GRAMPS Name[hu]=GRAMPS
Name[nl]=GRAMPS genealogie Name[nl]=GRAMPS genealogie
Name[fi]=GRAMPS sukututkimusohjelma Name[fi]=GRAMPS sukututkimusohjelma
Name[fr]=GRAMPS
Comment=Manage genealogical information, perform genealogical research and analysis Comment=Manage genealogical information, perform genealogical research and analysis
Comment[nl]=Een programma voor genealogie infomatie beheer en genealogisch onderzoek en analyse Comment[nl]=Een programma voor genealogie infomatie beheer en genealogisch onderzoek en analyse
Comment[sv]=Ett släktforskningsprogram Comment[sv]=Ett släktforskningsprogram
@ -18,6 +19,7 @@ Comment[ru]=Система исследования и анализа генеа
Comment[de]=Ein Programm zur Ahnenforschung Comment[de]=Ein Programm zur Ahnenforschung
Comment[hu]=Örökléskutató és elemző program Comment[hu]=Örökléskutató és elemző program
Comment[fi]=Hallinnoi, tutki ja analysoi sukutietoa Comment[fi]=Hallinnoi, tutki ja analysoi sukutietoa
Comment[fr]=Gestion des informations genealogiques, optimisation de la recherche et de l'analyse
Icon=gramps.png Icon=gramps.png
Terminal=false Terminal=false
Type=Application Type=Application

View File

@ -262,8 +262,9 @@ class DetDescendantReport(Report.Report):
self.endnotes(self.database.get_event_from_handle(birth_handle)) self.endnotes(self.database.get_event_from_handle(birth_handle))
first = 0 first = 0
age,units = self.calc_age(person)
text = ReportUtils.died_str(self.database,person,first, text = ReportUtils.died_str(self.database,person,first,
self.EMPTY_DATE,self.EMPTY_PLACE) self.EMPTY_DATE,self.EMPTY_PLACE,age,units)
if text: if text:
self.doc.write_text(text) self.doc.write_text(text)
death_handle = person.get_birth_handle() death_handle = person.get_birth_handle()