. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Czech * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsCs 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( 'á', 'ą', 'ä', 'é', 'ę', 'ě', 'í', 'ó', 'ô', 'ú', 'ů', 'ý', 'č', 'ď', 'ť', 'ĺ', 'ň', 'ŕ', 'ř', 'š', 'ž', ); } }