diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-06-19 16:34:08 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-06-19 16:34:08 +0000 |
| commit | 48d37d8cd7a0e395897deeccc68e32f28af19bb2 (patch) | |
| tree | 44c562dad7648faed2c350ba524ead7d585cfcf5 /includes/functions/functions_print_lists.php | |
| parent | 161d480db6c234591a55fb98d9b8025517316e91 (diff) | |
| download | webtrees-48d37d8cd7a0e395897deeccc68e32f28af19bb2.tar.gz webtrees-48d37d8cd7a0e395897deeccc68e32f28af19bb2.tar.bz2 webtrees-48d37d8cd7a0e395897deeccc68e32f28af19bb2.zip | |
Fix: surnames with prefixes wrapping in tag-clouds
Diffstat (limited to 'includes/functions/functions_print_lists.php')
| -rw-r--r-- | includes/functions/functions_print_lists.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php index de91649963..765ee22282 100644 --- a/includes/functions/functions_print_lists.php +++ b/includes/functions/functions_print_lists.php @@ -1253,7 +1253,7 @@ function format_surname_tagcloud($surnames, $type, $totals) { foreach ($surnames as $surn=>$surns) { foreach ($surns as $spfxsurn=>$indis) { $cloud->appendTag(array( - 'title'=>$totals ? i18n::translate_c('"name (count)" in a tag cloud', '%1$s (%2$d)', $spfxsurn, count($indis)) : $spfxsurn, + 'title'=>$totals ? i18n::translate('%1$s (%2$d)', $spfxsurn, count($indis)) : $spfxsurn, 'weight'=>count($indis), 'params'=>array( 'url'=>$surn ? |
