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