Home
last modified time | relevance | path

Searched refs:genitive (Results 1 – 4 of 4) sorted by relevance

/webtrees/app/Module/
H A DLanguageFrench.php113 …$genitive = static fn (string $s, string $genitive_link): array => [$s, '%s ' . $genitive_link . $…
117 $genitive($suffix . ' au ' . $n . '<sup>e</sup> degré', $genitive_link);
120 … $n <= 1 ? $genitive('arrière-' . $suffix, 'de l’') : $degree($n + 1, $suffix, $genitive_link);
123 … $n <= 1 ? $genitive($suffix, $genitive_link) : $great($n - 1, $suffix, $genitive_link);
127 …$n <= 1 ? $genitive($suffix, $genitive_none) : $firstCompound($n - 1, $first_level . $suffix, $gen…
130 …cCousin = static fn (int $n, string $sex): array => self::SYMMETRIC_COUSINS[$n][$sex] ?? $genitive(
136 …nction (int $up, int $down, string $sex) use ($symmetricCousin, $firstCompound, $genitive): array {
145 return $genitive(
H A DLanguageSlovakian.php119 $pra = static fn (int $n, string $nominative, string $genitive): array => [
121 ($n > 3 ? 'pra ×' . $n . ' ' : str_repeat('pra-', $n)) . $genitive,
124 …$cousin = static fn (int $n, array $cousins, string $nominative, string $genitive): array => $cous…
126 $genitive . '%s z ' . $n . '. kolena',
H A DLanguageEnglishUnitedStates.php134 $genitive = static fn (string $s): array => [$s, $s . '’s %s'];
136 $cousin = static fn (int $up, int $down): array => $genitive(
142 $great = static fn (int $n, string $prefix, string $suffix): array => $genitive(
/webtrees/app/
H A DRelationship.php77 * @param string $genitive
81 public static function fixed(string $nominative, string $genitive): Relationship argument
83 return new self(fn () => [$nominative, $genitive]);