. */ namespace Fisharebest\Webtrees\SpecialChars; /** * Exemplar characters for Lithuanian * * For each language, list the symbols, puncutation and letters with diacritics * that may be difficult to type. */ class SpecialCharsLt 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( 'ą', 'č', 'ę', 'ė', 'į', 'š', 'ų', 'ū', 'ž', ); } }