diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-05-01 14:08:47 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-05-01 14:08:47 +0100 |
| commit | f2298a0ae81c0516f622c2f3c4f2ce014bfc1889 (patch) | |
| tree | 69c48474d936d5e1bb3827da4e41cd22874b8f2a | |
| parent | 6cee92c9fe431ce17f0b7c7c73743b9147802da9 (diff) | |
| download | webtrees-f2298a0ae81c0516f622c2f3c4f2ce014bfc1889.tar.gz webtrees-f2298a0ae81c0516f622c2f3c4f2ce014bfc1889.tar.bz2 webtrees-f2298a0ae81c0516f622c2f3c4f2ce014bfc1889.zip | |
#1308630 - Relationship - great uncle/aunt
| -rw-r--r-- | includes/functions/functions.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/functions/functions.php b/includes/functions/functions.php index ec8ae61b77..e53b5cee66 100644 --- a/includes/functions/functions.php +++ b/includes/functions/functions.php @@ -1295,9 +1295,9 @@ function get_relationship_name_from_path($path, WT_Individual $person1=null, WT_ default: switch ($sex2) { case 'M': // I18N: if you need a different number for %d, contact the developers, as a code-change is required - return WT_I18N::translate('great x%d uncle', $up-2); - case 'F': return WT_I18N::translate('great x%d aunt', $up-2); - case 'U': return WT_I18N::translate('great x%d aunt/uncle', $up-2); + return WT_I18N::translate('great x%d uncle', $up-1); + case 'F': return WT_I18N::translate('great x%d aunt', $up-1); + case 'U': return WT_I18N::translate('great x%d aunt/uncle', $up-1); } } } |
