. */ declare(strict_types=1); namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\Elements\NameType; use Fisharebest\Webtrees\Individual; /** * Lithuanian — Children take their father’s surname. Wives take their husband’s surname. Surnames are inflected to indicate an individual’s sex and marital status. */ class LithuanianSurnameTradition extends PaternalSurnameTradition { // Inflect a surname for wives private const INFLECT_WIFE = [ 'as\b' => 'ienė', 'is\b' => 'ienė', 'ys\b' => 'ienė', 'us\b' => 'ienė', ]; // Inflect a surname for daughters private const INFLECT_DAUGHTER = [ 'a\b' => 'aitė', 'as\b' => 'aitė', 'is\b' => 'ytė', 'ys\b' => 'ytė', 'ius\b' => 'iūtė', 'us\b' => 'utė', ]; // Inflect a surname for males private const INFLECT_MALE = [ 'aitė\b' => 'as', 'ytė\b' => 'is', 'iūtė\b' => 'ius', 'utė\b' => 'us', ]; /** * What name is given to a new child * * @param Individual|null $father * @param Individual|null $mother * @param string $sex * * @return array */ public function newChildNames(?Individual $father, ?Individual $mother, string $sex): array { if (preg_match(self::REGEX_SURN, $this->extractName($father), $match)) { if ($sex === 'F') { $name = $this->inflect($match['NAME'], self::INFLECT_DAUGHTER); $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); } else { $name = $match['NAME']; $surn = $match['SURN']; } return [ $this->buildName($name, ['TYPE' => NameType::TYPE_BIRTH, 'SURN' => $surn]), ]; } return [ $this->buildName('//', ['TYPE' => NameType::TYPE_BIRTH]), ]; } /** * What name is given to a new parent * * @param Individual $child * @param string $sex * * @return array */ public function newParentNames(Individual $child, string $sex): array { if ($sex === 'M' && preg_match(self::REGEX_SURN, $this->extractName($child), $match)) { $name = $this->inflect($match['NAME'], self::INFLECT_MALE); $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); return [ $this->buildName($name, ['TYPE' => NameType::TYPE_BIRTH, 'SURN' => $surn]), ]; } return [ $this->buildName('//', ['TYPE' => NameType::TYPE_BIRTH]), ]; } /** * What names are given to a new spouse * * @param Individual $spouse * @param string $sex * * @return array */ public function newSpouseNames(Individual $spouse, string $sex): array { if ($sex === 'F' && preg_match(self::REGEX_SURN, $this->extractName($spouse), $match)) { $name = $this->inflect($match['NAME'], self::INFLECT_WIFE); $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); return [ $this->buildName('//', ['TYPE' => NameType::TYPE_BIRTH]), $this->buildName($name, ['TYPE' => NameType::TYPE_MARRIED, 'SURN' => $surn]), ]; } return [ $this->buildName('//', ['TYPE' => NameType::TYPE_BIRTH]), ]; } }