Skip to content

Commit

Permalink
Say if the child is a son or daughter
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Oct 4, 2024
1 parent 2a4fa52 commit 06c1088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gedcom
Original file line number Diff line number Diff line change
Expand Up @@ -3241,15 +3241,15 @@ sub print_person
if($language eq 'French') {
$phrase->append("'enfant");
} else {
$phrase->append(i18n('child'));
$phrase->append(i18n(($sex eq 'M') ? 'son' : 'daughter'));
}
}
} else {
# print ' only child of';
if($language eq 'French') {
$phrase->append("'enfant");
} else {
$phrase->append(i18n('child'));
$phrase->append(i18n(($sex eq 'M') ? 'son' : 'daughter'));
}
}
} else {
Expand Down

0 comments on commit 06c1088

Please sign in to comment.