* src/DateParser.py: handle leap year in gregorial validity check

* src/MergeData.py: Preserve more data when merging
the 1.0.X patch from Julio Sanchez)
* src/plugins/ReadGedcom.py: Attach top leve source to the
person instead of the primary name (ported from	the 1.0.X patch
from Julio Sanchez)
* src/const.py: Add support for "Number of Children" attribute
(GEDCOM NCHI) (ported from the 1.0.X patch from Julio Sanchez)


svn: r3728
This commit is contained in:
Don Allingham
2004-11-15 02:07:21 +00:00
parent 824df0bf5a
commit 5aefd4463f
5 changed files with 61 additions and 31 deletions

View File

@@ -382,6 +382,7 @@ personalConstantAttributes = {
"Description" : "DSCR",
"Identification Number" : "IDNO",
"National Origin" : "NATI",
"Number of Children" : "NCHI",
"Social Security Number": "SSN"
}
@@ -396,6 +397,7 @@ personal_attributes = TransTable({
"Description" : _("Description"),
"Identification Number" : _("Identification Number"),
"National Origin" : _("National Origin"),
"Number of Children" : _("Number of Children"),
"Social Security Number": _("Social Security Number")
})