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 fb0e904 commit 32d0c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -3191,11 +3191,11 @@ sub print_person
if($language eq 'French') {
$phrase->append("'enfant");
} else {
$phrase->append(i18n('child'));
$phrase->append(i18n(($sex eq 'M') ? 'son' : 'daughter'));
}
}
} else {
$phrase->append(i18n('child'));
$phrase->append(i18n(($sex eq 'M') ? 'son' : 'daughter'));
}
if($language eq 'French') {
$phrase->replace({ 'Le a' => "L'a" });
Expand Down

0 comments on commit 32d0c46

Please sign in to comment.