Skip to content

Commit

Permalink
Improve layout for spouse relationship with the home person
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Mar 13, 2024
1 parent f4fa8a5 commit 6177aa4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions gedcom
Original file line number Diff line number Diff line change
Expand Up @@ -2766,14 +2766,11 @@ sub print_person
}
$phrase->append(i18n(' of '));
if(my $s = $spouse->as_string({ middle_names => 1, title => 1 })) {
$phrase->append("$s, ");
$phrase->append("$s (");
} else {
complain({ person => $spouse, warning => 'Seems to have no name' });
}
$phrase->append(i18n('your ') . $spouserelationship);
if($aob || $aod) {
$phrase->append(', ');
}
$phrase->append(i18n('your ') . $spouserelationship)->append(') ');
$haveprintedspousename = 1;
}

Expand Down

0 comments on commit 6177aa4

Please sign in to comment.