113067778SAndreas Gohr<?php 2*d4f83172SAndreas Gohr 313067778SAndreas Gohr/** 413067778SAndreas Gohr * UTF-8 lookup table for lower case accented letters 513067778SAndreas Gohr * 613067778SAndreas Gohr * This lookuptable defines replacements for accented characters from the ASCII-7 713067778SAndreas Gohr * range. This are lower case letters only. 813067778SAndreas Gohr * 913067778SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 108cbc5ee8SAndreas Gohr * @see \dokuwiki\Utf8\Clean::deaccent() 1113067778SAndreas Gohr */ 12*d4f83172SAndreas Gohr 1313067778SAndreas Gohrreturn [ 1413067778SAndreas Gohr 'á' => 'a', 1513067778SAndreas Gohr 'à' => 'a', 1613067778SAndreas Gohr 'ă' => 'a', 1713067778SAndreas Gohr 'â' => 'a', 1813067778SAndreas Gohr 'å' => 'a', 1913067778SAndreas Gohr 'ä' => 'ae', 2013067778SAndreas Gohr 'ã' => 'a', 2113067778SAndreas Gohr 'ą' => 'a', 2213067778SAndreas Gohr 'ā' => 'a', 2313067778SAndreas Gohr 'æ' => 'ae', 2413067778SAndreas Gohr 'ḃ' => 'b', 2513067778SAndreas Gohr 'ć' => 'c', 2613067778SAndreas Gohr 'ĉ' => 'c', 2713067778SAndreas Gohr 'č' => 'c', 2813067778SAndreas Gohr 'ċ' => 'c', 2913067778SAndreas Gohr 'ç' => 'c', 3013067778SAndreas Gohr 'ď' => 'd', 3113067778SAndreas Gohr 'ḋ' => 'd', 3213067778SAndreas Gohr 'đ' => 'd', 3313067778SAndreas Gohr 'ð' => 'dh', 3413067778SAndreas Gohr 'é' => 'e', 3513067778SAndreas Gohr 'è' => 'e', 3613067778SAndreas Gohr 'ĕ' => 'e', 3713067778SAndreas Gohr 'ê' => 'e', 3813067778SAndreas Gohr 'ě' => 'e', 3913067778SAndreas Gohr 'ë' => 'e', 4013067778SAndreas Gohr 'ė' => 'e', 4113067778SAndreas Gohr 'ę' => 'e', 4213067778SAndreas Gohr 'ē' => 'e', 4313067778SAndreas Gohr 'ḟ' => 'f', 4413067778SAndreas Gohr 'ƒ' => 'f', 4513067778SAndreas Gohr 'ğ' => 'g', 4613067778SAndreas Gohr 'ĝ' => 'g', 4713067778SAndreas Gohr 'ġ' => 'g', 4813067778SAndreas Gohr 'ģ' => 'g', 4913067778SAndreas Gohr 'ĥ' => 'h', 5013067778SAndreas Gohr 'ħ' => 'h', 5113067778SAndreas Gohr 'í' => 'i', 5213067778SAndreas Gohr 'ì' => 'i', 5313067778SAndreas Gohr 'î' => 'i', 5413067778SAndreas Gohr 'ï' => 'i', 5513067778SAndreas Gohr 'ĩ' => 'i', 5613067778SAndreas Gohr 'į' => 'i', 5713067778SAndreas Gohr 'ī' => 'i', 58a178f5e0SRojen Zaman 'ı' => 'i', 5913067778SAndreas Gohr 'ĵ' => 'j', 6013067778SAndreas Gohr 'ķ' => 'k', 6113067778SAndreas Gohr 'ĺ' => 'l', 6213067778SAndreas Gohr 'ľ' => 'l', 6313067778SAndreas Gohr 'ļ' => 'l', 6413067778SAndreas Gohr 'ł' => 'l', 6513067778SAndreas Gohr 'ṁ' => 'm', 6613067778SAndreas Gohr 'ń' => 'n', 6713067778SAndreas Gohr 'ň' => 'n', 6813067778SAndreas Gohr 'ñ' => 'n', 6913067778SAndreas Gohr 'ņ' => 'n', 7013067778SAndreas Gohr 'ó' => 'o', 7113067778SAndreas Gohr 'ò' => 'o', 7213067778SAndreas Gohr 'ô' => 'o', 7313067778SAndreas Gohr 'ö' => 'oe', 7413067778SAndreas Gohr 'ő' => 'o', 7513067778SAndreas Gohr 'õ' => 'o', 7613067778SAndreas Gohr 'ø' => 'o', 7713067778SAndreas Gohr 'ō' => 'o', 7813067778SAndreas Gohr 'ơ' => 'o', 7913067778SAndreas Gohr 'ṗ' => 'p', 8013067778SAndreas Gohr 'ŕ' => 'r', 8113067778SAndreas Gohr 'ř' => 'r', 8213067778SAndreas Gohr 'ŗ' => 'r', 8313067778SAndreas Gohr 'ś' => 's', 8413067778SAndreas Gohr 'ŝ' => 's', 8513067778SAndreas Gohr 'š' => 's', 8613067778SAndreas Gohr 'ṡ' => 's', 8713067778SAndreas Gohr 'ş' => 's', 8813067778SAndreas Gohr 'ș' => 's', 8913067778SAndreas Gohr 'ß' => 'ss', 9013067778SAndreas Gohr 'ť' => 't', 9113067778SAndreas Gohr 'ṫ' => 't', 9213067778SAndreas Gohr 'ţ' => 't', 9313067778SAndreas Gohr 'ț' => 't', 9413067778SAndreas Gohr 'ŧ' => 't', 9513067778SAndreas Gohr 'ú' => 'u', 9613067778SAndreas Gohr 'ù' => 'u', 9713067778SAndreas Gohr 'ŭ' => 'u', 9813067778SAndreas Gohr 'û' => 'u', 9913067778SAndreas Gohr 'ů' => 'u', 10013067778SAndreas Gohr 'ü' => 'ue', 10113067778SAndreas Gohr 'ű' => 'u', 10213067778SAndreas Gohr 'ũ' => 'u', 10313067778SAndreas Gohr 'ų' => 'u', 10413067778SAndreas Gohr 'ū' => 'u', 10513067778SAndreas Gohr 'ư' => 'u', 10613067778SAndreas Gohr 'ẃ' => 'w', 10713067778SAndreas Gohr 'ẁ' => 'w', 10813067778SAndreas Gohr 'ŵ' => 'w', 10913067778SAndreas Gohr 'ẅ' => 'w', 11013067778SAndreas Gohr 'ý' => 'y', 11113067778SAndreas Gohr 'ỳ' => 'y', 11213067778SAndreas Gohr 'ŷ' => 'y', 11313067778SAndreas Gohr 'ÿ' => 'y', 11413067778SAndreas Gohr 'ź' => 'z', 11513067778SAndreas Gohr 'ž' => 'z', 11613067778SAndreas Gohr 'ż' => 'z', 11713067778SAndreas Gohr 'þ' => 'th', 11813067778SAndreas Gohr 'µ' => 'u', 11913067778SAndreas Gohr]; 120