102086832SGreg Roach<?php 23976b470SGreg Roach 302086832SGreg Roach/** 402086832SGreg Roach * webtrees: online genealogy 55bfc6897SGreg Roach * Copyright (C) 2022 webtrees development team 602086832SGreg Roach * This program is free software: you can redistribute it and/or modify 702086832SGreg Roach * it under the terms of the GNU General Public License as published by 802086832SGreg Roach * the Free Software Foundation, either version 3 of the License, or 902086832SGreg Roach * (at your option) any later version. 1002086832SGreg Roach * This program is distributed in the hope that it will be useful, 1102086832SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 1202086832SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1302086832SGreg Roach * GNU General Public License for more details. 1402086832SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 1602086832SGreg Roach */ 17fcfa147eSGreg Roach 1802086832SGreg Roachdeclare(strict_types=1); 1902086832SGreg Roach 2002086832SGreg Roachnamespace Fisharebest\Webtrees\Module; 2102086832SGreg Roach 2202086832SGreg Roachuse Fisharebest\Localization\Locale\LocaleInterface; 2302086832SGreg Roachuse Fisharebest\Localization\Locale\LocaleNl; 24*52288ec7SGreg Roachuse Fisharebest\Webtrees\Encodings\UTF8; 2502086832SGreg Roach 264a9a6095SGreg Roachuse function mb_substr; 274a9a6095SGreg Roachuse function str_starts_with; 284a9a6095SGreg Roach 2902086832SGreg Roach/** 3002086832SGreg Roach * Class LanguageDutch. 3102086832SGreg Roach */ 3202086832SGreg Roachclass LanguageDutch extends AbstractModule implements ModuleLanguageInterface 3302086832SGreg Roach{ 3402086832SGreg Roach use ModuleLanguageTrait; 3502086832SGreg Roach 3602086832SGreg Roach /** 374a9a6095SGreg Roach * Phone-book ordering of letters. 384a9a6095SGreg Roach * 394a9a6095SGreg Roach * @return array<int,string> 404a9a6095SGreg Roach */ 414a9a6095SGreg Roach public function alphabet(): array 424a9a6095SGreg Roach { 43*52288ec7SGreg Roach return [ 44*52288ec7SGreg Roach 'A', 45*52288ec7SGreg Roach 'B', 46*52288ec7SGreg Roach 'C', 47*52288ec7SGreg Roach 'D', 48*52288ec7SGreg Roach 'E', 49*52288ec7SGreg Roach 'F', 50*52288ec7SGreg Roach 'G', 51*52288ec7SGreg Roach 'H', 52*52288ec7SGreg Roach 'I', 53*52288ec7SGreg Roach 'J', 54*52288ec7SGreg Roach 'K', 55*52288ec7SGreg Roach 'L', 56*52288ec7SGreg Roach 'M', 57*52288ec7SGreg Roach 'N', 58*52288ec7SGreg Roach 'O', 59*52288ec7SGreg Roach 'P', 60*52288ec7SGreg Roach 'Q', 61*52288ec7SGreg Roach 'R', 62*52288ec7SGreg Roach 'S', 63*52288ec7SGreg Roach 'T', 64*52288ec7SGreg Roach 'U', 65*52288ec7SGreg Roach 'V', 66*52288ec7SGreg Roach 'W', 67*52288ec7SGreg Roach 'X', 68*52288ec7SGreg Roach 'Y', 69*52288ec7SGreg Roach 'Z', 70*52288ec7SGreg Roach 'IJ', 71*52288ec7SGreg Roach ]; 724a9a6095SGreg Roach } 734a9a6095SGreg Roach 744a9a6095SGreg Roach /** 754a9a6095SGreg Roach * Some languages use digraphs and trigraphs. 764a9a6095SGreg Roach * 774a9a6095SGreg Roach * @param string $string 784a9a6095SGreg Roach * 794a9a6095SGreg Roach * @return string 804a9a6095SGreg Roach */ 814a9a6095SGreg Roach public function initialLetter(string $string): string 824a9a6095SGreg Roach { 834a9a6095SGreg Roach if (str_starts_with($string, 'IJ')) { 844a9a6095SGreg Roach return 'IJ'; 854a9a6095SGreg Roach } 864a9a6095SGreg Roach 874a9a6095SGreg Roach return mb_substr($string, 0, 1); 884a9a6095SGreg Roach } 894a9a6095SGreg Roach 904a9a6095SGreg Roach /** 9102086832SGreg Roach * @return LocaleInterface 9202086832SGreg Roach */ 9302086832SGreg Roach public function locale(): LocaleInterface 9402086832SGreg Roach { 9502086832SGreg Roach return new LocaleNl(); 9602086832SGreg Roach } 97*52288ec7SGreg Roach 98*52288ec7SGreg Roach /** 99*52288ec7SGreg Roach * Letters with diacritics that are considered distinct letters in this language. 100*52288ec7SGreg Roach * 101*52288ec7SGreg Roach * @return array<string,string> 102*52288ec7SGreg Roach */ 103*52288ec7SGreg Roach protected function normalizeExceptions(): array 104*52288ec7SGreg Roach { 105*52288ec7SGreg Roach return [ 106*52288ec7SGreg Roach 'IJ' => UTF8::LATIN_CAPITAL_LIGATURE_IJ, 107*52288ec7SGreg Roach 'Ij' => UTF8::LATIN_CAPITAL_LIGATURE_IJ, 108*52288ec7SGreg Roach 'ij' => UTF8::LATIN_SMALL_LIGATURE_IJ, 109*52288ec7SGreg Roach 'iJ' => UTF8::LATIN_SMALL_LIGATURE_IJ, 110*52288ec7SGreg Roach ]; 111*52288ec7SGreg Roach } 11202086832SGreg Roach} 113