. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Localization\Locale\LocaleEnUs; use Fisharebest\Localization\Locale\LocaleInterface; use Fisharebest\Webtrees\Relationship; use function abs; use function min; use function str_repeat; /** * Class LanguageEnglishUnitedStates. */ class LanguageEnglishUnitedStates extends AbstractModule implements ModuleLanguageInterface { use ModuleLanguageTrait; protected const COUSIN = [ 'sibling', 'first cousin', 'second cousin', 'third cousin', 'fourth cousin', 'fifth cousin', 'sixth cousin', 'seventh cousin', 'eighth cousin', 'ninth cousin', 'tenth cousin', 'eleventh cousin', 'twelfth cousin', 'thirteenth cousin', 'fourteenth cousin', 'fifteenth cousin', 'sixteenth cousin', 'seventeenth cousin', 'eighteenth cousin', 'nineteenth cousin', 'twentieth cousin', 'twenty-first cousin', 'twenty-second cousin', 'twenty-third cousin', 'twenty-fourth cousin', 'twenty-fifth cousin', 'twenty-sixth cousin', 'twenty-seventh cousin', 'twenty-eighth cousin', 'twenty-ninth cousin', 'thirtieth cousin', ]; protected const REMOVED = [ '', ' once removed', ' twice removed', ' three times removed', ' four times removed', ' five times removed', ' six times removed', ' seven times removed', ' eight times removed', ' nine times removed', ' ten times removed', ' eleven removed', ' twelve removed', ' thirteen removed', ' fourteen times removed', ' fifteen times removed', ' sixteen times removed', ' seventeen times removed', ' eighteen times removed', ' nineteen times removed', ' twenty times removed', ' twenty-one times removed', ' twenty-two times removed', ' twenty-three times removed', ' twenty-four times removed', ' twenty-five times removed', ' twenty-six times removed', ' twenty-seven times removed', ' twenty-eight times removed', ' twenty-nine times removed', ]; protected const DIRECTION = [ -1 => ' descending', 0 => '', 1 => ' ascending', ]; /** * @return LocaleInterface */ public function locale(): LocaleInterface { return new LocaleEnUs(); } /** * @return array */ public function relationships(): array { // Genitive forms in English are simple/regular, as no relationship name ends in "s". $genitive = static fn (string $s): array => [$s, $s . '’s %s']; $cousin = static fn (int $up, int $down): array => $genitive( (static::COUSIN[min($up, $down)] ?? 'distant cousin') . (static::REMOVED[abs($up - $down)] ?? ' many times removed') . static::DIRECTION[$up <=> $down] ); $great = static fn (int $n, string $prefix, string $suffix): array => $genitive( $prefix . ($n > 3 ? 'great ×' . $n . ' ' : str_repeat('great-', $n)) . $suffix ); return [ // Adopted Relationship::fixed('adoptive-mother', 'adoptive-mother’s %s')->adoptive()->mother(), Relationship::fixed('adoptive-father', 'adoptive-father’s %s')->adoptive()->father(), Relationship::fixed('adoptive-parent', 'adoptive-parent’s %s')->adoptive()->parent(), Relationship::fixed('adopted-daughter', 'adopted-daughter’s %s')->adopted()->daughter(), Relationship::fixed('adopted-son', 'adopted-son’s %s')->adopted()->son(), Relationship::fixed('adopted-child', 'adopted-child’s %s')->adopted()->child(), // Fostered Relationship::fixed('foster-mother', 'foster-mother’s %s')->fostering()->mother(), Relationship::fixed('foster-father', 'foster-father’s %s')->fostering()->father(), Relationship::fixed('foster-parent', 'foster-parent’s %s')->fostering()->parent(), Relationship::fixed('foster-daughter', 'foster-daughter’s %s')->fostered()->daughter(), Relationship::fixed('foster-son', 'foster-son’s %s')->fostered()->son(), Relationship::fixed('foster-child', 'foster-child’s %s')->fostered()->child(), // Parents Relationship::fixed('mother', 'mother’s %s')->mother(), Relationship::fixed('father', 'father’s %s')->father(), Relationship::fixed('parent', 'parent’s %s')->parent(), // Children Relationship::fixed('daughter', 'daughter’s %s')->daughter(), Relationship::fixed('son', 'son’s %s')->son(), Relationship::fixed('child', 'child’s %s')->child(), // Siblings Relationship::fixed('twin sister', 'twin sister’s %s')->twin()->sister(), Relationship::fixed('twin brother', 'twin brother’s %s')->twin()->brother(), Relationship::fixed('twin sibling', 'twin sibling’s %s')->twin()->sibling(), Relationship::fixed('elder sister', 'elder sister’s %s')->older()->sister(), Relationship::fixed('elder brother', 'elder brother’s %s')->older()->brother(), Relationship::fixed('elder sibling', 'elder sibling’s %s')->older()->sibling(), Relationship::fixed('younger sister', 'younger sister’s %s')->younger()->sister(), Relationship::fixed('younger brother', 'younger brother’s %s')->younger()->brother(), Relationship::fixed('younger sibling', 'younger sibling’s %s')->younger()->sibling(), Relationship::fixed('sister', 'sister’s %s')->sister(), Relationship::fixed('brother', 'brother’s %s')->brother(), Relationship::fixed('sibling', 'sibling’s %s')->sibling(), // Half-siblings Relationship::fixed('half-sister', 'half-sister’s %s')->parent()->daughter(), Relationship::fixed('half-brother', 'half-brother’s %s')->parent()->son(), Relationship::fixed('half-sibling', 'half-sibling’s %s')->parent()->child(), // Stepfamily Relationship::fixed('stepmother', 'stepmother’s %s')->parent()->wife(), Relationship::fixed('stepfather', 'stepfather’s %s')->parent()->husband(), Relationship::fixed('stepparent', 'stepparent’s %s')->parent()->married()->spouse(), Relationship::fixed('stepdaughter', 'stepdaughter’s %s')->married()->spouse()->daughter(), Relationship::fixed('stepson', 'stepson’s %s')->married()->spouse()->son(), Relationship::fixed('stepchild', 'stepchild’s %s')->married()->spouse()->child(), Relationship::fixed('stepsister', 'stepsister’s %s')->parent()->spouse()->daughter(), Relationship::fixed('stepbrother', 'stepbrother’s %s')->parent()->spouse()->son(), Relationship::fixed('stepsibling', 'stepsibling’s %s')->parent()->spouse()->child(), // Partners Relationship::fixed('ex-wife', 'ex-wife’s %s')->divorced()->partner()->female(), Relationship::fixed('ex-husband', 'ex-husband’s %s')->divorced()->partner()->male(), Relationship::fixed('ex-spouse', 'ex-spouse’s %s')->divorced()->partner(), Relationship::fixed('fiancée', 'fiancée’s %s')->engaged()->partner()->female(), Relationship::fixed('fiancé', 'fiancé’s %s')->engaged()->partner()->male(), Relationship::fixed('wife', 'wife’s %s')->wife(), Relationship::fixed('husband', 'husband’s %s')->husband(), Relationship::fixed('spouse', 'spouse’s %s')->spouse(), Relationship::fixed('partner', 'partner’s %s')->partner(), // In-laws Relationship::fixed('mother-in-law', 'mother-in-law’s %s')->married()->spouse()->mother(), Relationship::fixed('father-in-law', 'father-in-law’s %s')->married()->spouse()->father(), Relationship::fixed('parent-in-law', 'parent-in-law’s %s')->married()->spouse()->parent(), Relationship::fixed('daughter-in-law', 'daughter-in-law’s %s')->child()->wife(), Relationship::fixed('son-in-law', 'son-in-law’s %s')->child()->husband(), Relationship::fixed('child-in-law', 'child-in-law’s %s')->child()->married()->spouse(), Relationship::fixed('sister-in-law', 'sister-in-law’s %s')->sibling()->spouse()->sister(), Relationship::fixed('brother-in-law', 'brother-in-law’s %s')->sibling()->spouse()->brother(), Relationship::fixed('sibling-in-law', 'sibling-in-law’s %s')->sibling()->spouse()->sibling(), Relationship::fixed('sister-in-law', 'sister-in-law’s %s')->spouse()->sister(), Relationship::fixed('brother-in-law', 'brother-in-law’s %s')->spouse()->brother(), Relationship::fixed('sibling-in-law', 'sibling-in-law’s %s')->spouse()->sibling(), Relationship::fixed('sister-in-law', 'sister-in-law’s %s')->sibling()->wife(), Relationship::fixed('brother-in-law', 'brother-in-law’s %s')->sibling()->husband(), Relationship::fixed('sibling-in-law', 'sibling-in-law’s %s')->sibling()->spouse(), // Grandparents Relationship::fixed('maternal-grandmother', 'maternal-grandmother’s %s')->mother()->mother(), Relationship::fixed('maternal-grandfather', 'maternal-grandfather’s %s')->mother()->father(), Relationship::fixed('maternal-grandparent', 'maternal-grandfather’s %s')->mother()->parent(), Relationship::fixed('paternal-grandmother', 'paternal-grandmother’s %s')->father()->mother(), Relationship::fixed('paternal-grandfather', 'paternal-grandfather’s %s')->father()->father(), Relationship::fixed('paternal-grandparent', 'paternal-grandfather’s %s')->father()->parent(), Relationship::fixed('grandmother', 'grandmother’s %s')->parent()->mother(), Relationship::fixed('grandfather', 'grandfather’s %s')->parent()->father(), Relationship::fixed('grandparent', 'grandparent’s %s')->parent()->parent(), // Grandchildren Relationship::fixed('granddaughter', 'granddaughter’s %s')->child()->daughter(), Relationship::fixed('grandson', 'grandson’s %s')->child()->son(), Relationship::fixed('grandchild', 'grandchild’s %s')->child()->child(), // Relationships with dynamically generated names Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'aunt'))->ancestor()->sister(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'aunt'))->ancestor()->sibling()->wife(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'uncle'))->ancestor()->brother(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'uncle'))->ancestor()->sibling()->husband(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'niece'))->sibling()->descendant()->female(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'niece'))->married()->spouse()->sibling()->descendant()->female(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'nephew'))->sibling()->descendant()->male(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'nephew'))->married()->spouse()->sibling()->descendant()->male(), Relationship::dynamic(static fn (int $n) => $great($n - 1, 'maternal ', 'grandmother'))->mother()->ancestor()->female(), Relationship::dynamic(static fn (int $n) => $great($n - 1, 'maternal ', 'grandfather'))->mother()->ancestor()->male(), Relationship::dynamic(static fn (int $n) => $great($n - 1, 'paternal ', 'grandmother'))->father()->ancestor()->female(), Relationship::dynamic(static fn (int $n) => $great($n - 1, 'paternal ', 'grandfather'))->father()->ancestor()->male(), Relationship::dynamic(static fn (int $n) => $great($n - 1, '', 'grandparent'))->ancestor(), Relationship::dynamic(static fn (int $n) => $great($n - 2, '', 'granddaughter'))->descendant()->female(), Relationship::dynamic(static fn (int $n) => $great($n - 2, '', 'grandson'))->descendant()->male(), Relationship::dynamic(static fn (int $n) => $great($n - 2, '', 'grandchild'))->descendant(), Relationship::dynamic($cousin)->ancestor()->sibling()->descendant(), ]; } }