. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Turkish * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsTr 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( 'â', 'ç', 'ğ', 'î', 'ı', 'ö', 'ş', 'û', 'ü', ); } }