lithium\util\Inflector::$_transliteration

protected static property

Contains a default map of accented and special characters to ASCII characters. Can be extended or added to using Inflector::rules().

Source

	protected static $_transliteration = array(
		'/à|á|å|â/' => 'a',
		'/è|é|ê|ẽ|ë/' => 'e',
		'/ì|í|î/' => 'i',
		'/ò|ó|ô|ø/' => 'o',
		'/ù|ú|ů|û/' => 'u',
		'/ç|ć|č/' => 'c',
		'/đ/' => 'dj',
		'/š/' => 's',
		'/ž/' => 'z',
		'/ñ/' => 'n',
		'/ä|æ/' => 'ae',
		'/ö/' => 'oe',
		'/ü/' => 'ue',
		'/Ä/' => 'Ae',
		'/Ü/' => 'Ue',
		'/Ö/' => 'Oe',
		'/ß/' => 'ss',
		'/Č|Ć/' => 'C',
		'/DŽ/' => 'Dz',
		'/Đ/' => 'Dj',
		'/Š/' => 'S',
		'/Ž/' => 'Z'
	);