uawdijnntqw1x1x1
IP : 216.73.216.28
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
theiconic
/
name-parser
/
src
/
Language
/
.
/
German.php
/
/
<?php namespace TheIconic\NameParser\Language; use TheIconic\NameParser\LanguageInterface; class German implements LanguageInterface { const SUFFIXES = [ '1.' => '1.', '2.' => '2.', '3.' => '3.', '4.' => '4.', '5.' => '5.', 'i' => 'I', 'ii' => 'II', 'iii' => 'III', 'iv' => 'IV', 'v' => 'V', ]; const SALUTATIONS = [ 'herr' => 'Herr', 'hr' => 'Herr', 'frau' => 'Frau', 'fr' => 'Frau' ]; const LASTNAME_PREFIXES = [ 'der' => 'der', 'von' => 'von', ]; public function getSuffixes(): array { return self::SUFFIXES; } public function getSalutations(): array { return self::SALUTATIONS; } public function getLastnamePrefixes(): array { return self::LASTNAME_PREFIXES; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/theiconic/name-parser/src/Language/./German.php