1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 6d70512abSGreg Roach 77c2c99faSGreg Roach/** 87c2c99faSGreg Roach * @var array<string,int> $given_names 97c2c99faSGreg Roach * @var bool $show_totals 107c2c99faSGreg Roach */ 117c2c99faSGreg Roach 12d70512abSGreg Roach?> 1395768326SGreg Roach 1495768326SGreg Roach<ul> 1595768326SGreg Roach <?php foreach ($given_names as $given_name => $count) : ?> 1695768326SGreg Roach <li> 17315eb316SGreg Roach <bdi><?= e($given_name) ?></bdi> 1895768326SGreg Roach <?php if ($show_totals) : ?> 1995768326SGreg Roach (<?= I18N::number($count) ?>) 2095768326SGreg Roach <?php endif ?> 2195768326SGreg Roach </li> 2295768326SGreg Roach <?php endforeach ?> 2395768326SGreg Roach</ul> 24