. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Dutch * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsNl extends AbstractSpecialChars { /** * A list of magiscule letters. * * @return string[] */ public function upper() { return array( 'Á', 'Â', 'È', 'É', 'Ê', 'Ë', 'Í', 'Ï', 'IJ', 'Ó', 'Ô', 'Ö', 'Ú', 'Ù', 'Ä', 'Û', 'Ü', ); } /** * A list of miniscule letters. * * @return string[] */ public function lower() { return array( 'á', 'â', 'è', 'é', 'ê', 'ë', 'í', 'ï', 'ij', 'ó', 'ô', 'ö', 'ú', 'ù', 'ä', 'û', 'ü', ); } }