. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Danish * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsDa extends AbstractSpecialChars { /** * A list of magiscule letters. * * @return string[] */ public function upper() { return [ 'Å', 'Æ', 'É', 'Ø', 'Á', 'Í', 'Ó', 'Ú', 'Ý', ]; } /** * A list of miniscule letters. * * @return string[] */ public function lower() { return [ 'å', 'æ', 'é', 'ø', 'á', 'í', 'ó', 'ú', 'ý', ]; } }