. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Afrikaans * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsAf extends AbstractSpecialChars { /** * A list of magiscule letters. * * @return string[] */ public function upper() { return array( 'È', 'É', 'Ê', 'Ë', 'Î', 'Ï', 'Ô', 'Û', ); } /** * A list of miniscule letters. * * @return string[] */ public function lower() { return array( 'è', 'é', 'ê', 'ë', 'î', 'ï', 'ô', 'û', 'ʼn', ); } }