. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Localization\Locale\LocaleEs; use Fisharebest\Localization\Locale\LocaleInterface; use Fisharebest\Webtrees\Encodings\UTF8; use Illuminate\Database\Query\Builder; /** * Class LanguageSpanish. */ class LanguageSpanish extends AbstractModule implements ModuleLanguageInterface { use ModuleLanguageTrait; /** * Phone-book ordering of letters. * * @return array */ public function alphabet(): array { return [ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', UTF8::LATIN_CAPITAL_LETTER_N_WITH_TILDE, 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ]; } /** * @return LocaleInterface */ public function locale(): LocaleInterface { return new LocaleEs(); } /** * Letters with diacritics that are considered distinct letters in this language. * * @return array */ protected function normalizeExceptions(): array { return [ 'N' . UTF8::COMBINING_TILDE => UTF8::LATIN_CAPITAL_LETTER_N_WITH_TILDE, 'n' . UTF8::COMBINING_TILDE => UTF8::LATIN_SMALL_LETTER_N_WITH_TILDE, ]; } }