113067778SAndreas Gohr<?php 2*d4f83172SAndreas Gohr 313067778SAndreas Gohr/** 413067778SAndreas Gohr * UTF-8 lookup table for upper case accented letters 513067778SAndreas Gohr * 613067778SAndreas Gohr * This lookuptable defines replacements for accented characters from the ASCII-7 713067778SAndreas Gohr * range. This are upper 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', 5813067778SAndreas Gohr 'Ĵ' => 'J', 5913067778SAndreas Gohr 'Ķ' => 'K', 6013067778SAndreas Gohr 'Ĺ' => 'L', 6113067778SAndreas Gohr 'Ľ' => 'L', 6213067778SAndreas Gohr 'Ļ' => 'L', 6313067778SAndreas Gohr 'Ł' => 'L', 6413067778SAndreas Gohr 'Ṁ' => 'M', 6513067778SAndreas Gohr 'Ń' => 'N', 6613067778SAndreas Gohr 'Ň' => 'N', 6713067778SAndreas Gohr 'Ñ' => 'N', 6813067778SAndreas Gohr 'Ņ' => 'N', 6913067778SAndreas Gohr 'Ó' => 'O', 7013067778SAndreas Gohr 'Ò' => 'O', 7113067778SAndreas Gohr 'Ô' => 'O', 7213067778SAndreas Gohr 'Ö' => 'Oe', 7313067778SAndreas Gohr 'Ő' => 'O', 7413067778SAndreas Gohr 'Õ' => 'O', 7513067778SAndreas Gohr 'Ø' => 'O', 7613067778SAndreas Gohr 'Ō' => 'O', 7713067778SAndreas Gohr 'Ơ' => 'O', 7813067778SAndreas Gohr 'Ṗ' => 'P', 7913067778SAndreas Gohr 'Ŕ' => 'R', 8013067778SAndreas Gohr 'Ř' => 'R', 8113067778SAndreas Gohr 'Ŗ' => 'R', 8213067778SAndreas Gohr 'Ś' => 'S', 8313067778SAndreas Gohr 'Ŝ' => 'S', 8413067778SAndreas Gohr 'Š' => 'S', 8513067778SAndreas Gohr 'Ṡ' => 'S', 8613067778SAndreas Gohr 'Ş' => 'S', 8713067778SAndreas Gohr 'Ș' => 'S', 8813067778SAndreas Gohr 'Ť' => 'T', 8913067778SAndreas Gohr 'Ṫ' => 'T', 9013067778SAndreas Gohr 'Ţ' => 'T', 9113067778SAndreas Gohr 'Ț' => 'T', 9213067778SAndreas Gohr 'Ŧ' => 'T', 9313067778SAndreas Gohr 'Ú' => 'U', 9413067778SAndreas Gohr 'Ù' => 'U', 9513067778SAndreas Gohr 'Ŭ' => 'U', 9613067778SAndreas Gohr 'Û' => 'U', 9713067778SAndreas Gohr 'Ů' => 'U', 9813067778SAndreas Gohr 'Ü' => 'Ue', 9913067778SAndreas Gohr 'Ű' => 'U', 10013067778SAndreas Gohr 'Ũ' => 'U', 10113067778SAndreas Gohr 'Ų' => 'U', 10213067778SAndreas Gohr 'Ū' => 'U', 10313067778SAndreas Gohr 'Ư' => 'U', 10413067778SAndreas Gohr 'Ẃ' => 'W', 10513067778SAndreas Gohr 'Ẁ' => 'W', 10613067778SAndreas Gohr 'Ŵ' => 'W', 10713067778SAndreas Gohr 'Ẅ' => 'W', 10813067778SAndreas Gohr 'Ý' => 'Y', 10913067778SAndreas Gohr 'Ỳ' => 'Y', 11013067778SAndreas Gohr 'Ŷ' => 'Y', 11113067778SAndreas Gohr 'Ÿ' => 'Y', 11213067778SAndreas Gohr 'Ź' => 'Z', 11313067778SAndreas Gohr 'Ž' => 'Z', 11413067778SAndreas Gohr 'Ż' => 'Z', 11513067778SAndreas Gohr 'Þ' => 'Th', 11613067778SAndreas Gohr]; 117