xref: /dokuwiki/inc/Utf8/tables/loweraccents.php (revision 130677782a0ecc9e606d2224faebae95c406f280)
1*13067778SAndreas Gohr<?php
2*13067778SAndreas Gohr/**
3*13067778SAndreas Gohr * UTF-8 lookup table for lower case accented letters
4*13067778SAndreas Gohr *
5*13067778SAndreas Gohr * This lookuptable defines replacements for accented characters from the ASCII-7
6*13067778SAndreas Gohr * range. This are lower case letters only.
7*13067778SAndreas Gohr *
8*13067778SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
9*13067778SAndreas Gohr * @see    utf8_deaccent()
10*13067778SAndreas Gohr */
11*13067778SAndreas Gohrreturn [
12*13067778SAndreas Gohr    'á' => 'a',
13*13067778SAndreas Gohr    'à' => 'a',
14*13067778SAndreas Gohr    'ă' => 'a',
15*13067778SAndreas Gohr    'â' => 'a',
16*13067778SAndreas Gohr    'å' => 'a',
17*13067778SAndreas Gohr    'ä' => 'ae',
18*13067778SAndreas Gohr    'ã' => 'a',
19*13067778SAndreas Gohr    'ą' => 'a',
20*13067778SAndreas Gohr    'ā' => 'a',
21*13067778SAndreas Gohr    'æ' => 'ae',
22*13067778SAndreas Gohr    'ḃ' => 'b',
23*13067778SAndreas Gohr    'ć' => 'c',
24*13067778SAndreas Gohr    'ĉ' => 'c',
25*13067778SAndreas Gohr    'č' => 'c',
26*13067778SAndreas Gohr    'ċ' => 'c',
27*13067778SAndreas Gohr    'ç' => 'c',
28*13067778SAndreas Gohr    'ď' => 'd',
29*13067778SAndreas Gohr    'ḋ' => 'd',
30*13067778SAndreas Gohr    'đ' => 'd',
31*13067778SAndreas Gohr    'ð' => 'dh',
32*13067778SAndreas Gohr    'é' => 'e',
33*13067778SAndreas Gohr    'è' => 'e',
34*13067778SAndreas Gohr    'ĕ' => 'e',
35*13067778SAndreas Gohr    'ê' => 'e',
36*13067778SAndreas Gohr    'ě' => 'e',
37*13067778SAndreas Gohr    'ë' => 'e',
38*13067778SAndreas Gohr    'ė' => 'e',
39*13067778SAndreas Gohr    'ę' => 'e',
40*13067778SAndreas Gohr    'ē' => 'e',
41*13067778SAndreas Gohr    'ḟ' => 'f',
42*13067778SAndreas Gohr    'ƒ' => 'f',
43*13067778SAndreas Gohr    'ğ' => 'g',
44*13067778SAndreas Gohr    'ĝ' => 'g',
45*13067778SAndreas Gohr    'ġ' => 'g',
46*13067778SAndreas Gohr    'ģ' => 'g',
47*13067778SAndreas Gohr    'ĥ' => 'h',
48*13067778SAndreas Gohr    'ħ' => 'h',
49*13067778SAndreas Gohr    'í' => 'i',
50*13067778SAndreas Gohr    'ì' => 'i',
51*13067778SAndreas Gohr    'î' => 'i',
52*13067778SAndreas Gohr    'ï' => 'i',
53*13067778SAndreas Gohr    'ĩ' => 'i',
54*13067778SAndreas Gohr    'į' => 'i',
55*13067778SAndreas Gohr    'ī' => 'i',
56*13067778SAndreas Gohr    'ĵ' => 'j',
57*13067778SAndreas Gohr    'ķ' => 'k',
58*13067778SAndreas Gohr    'ĺ' => 'l',
59*13067778SAndreas Gohr    'ľ' => 'l',
60*13067778SAndreas Gohr    'ļ' => 'l',
61*13067778SAndreas Gohr    'ł' => 'l',
62*13067778SAndreas Gohr    'ṁ' => 'm',
63*13067778SAndreas Gohr    'ń' => 'n',
64*13067778SAndreas Gohr    'ň' => 'n',
65*13067778SAndreas Gohr    'ñ' => 'n',
66*13067778SAndreas Gohr    'ņ' => 'n',
67*13067778SAndreas Gohr    'ó' => 'o',
68*13067778SAndreas Gohr    'ò' => 'o',
69*13067778SAndreas Gohr    'ô' => 'o',
70*13067778SAndreas Gohr    'ö' => 'oe',
71*13067778SAndreas Gohr    'ő' => 'o',
72*13067778SAndreas Gohr    'õ' => 'o',
73*13067778SAndreas Gohr    'ø' => 'o',
74*13067778SAndreas Gohr    'ō' => 'o',
75*13067778SAndreas Gohr    'ơ' => 'o',
76*13067778SAndreas Gohr    'ṗ' => 'p',
77*13067778SAndreas Gohr    'ŕ' => 'r',
78*13067778SAndreas Gohr    'ř' => 'r',
79*13067778SAndreas Gohr    'ŗ' => 'r',
80*13067778SAndreas Gohr    'ś' => 's',
81*13067778SAndreas Gohr    'ŝ' => 's',
82*13067778SAndreas Gohr    'š' => 's',
83*13067778SAndreas Gohr    'ṡ' => 's',
84*13067778SAndreas Gohr    'ş' => 's',
85*13067778SAndreas Gohr    'ș' => 's',
86*13067778SAndreas Gohr    'ß' => 'ss',
87*13067778SAndreas Gohr    'ť' => 't',
88*13067778SAndreas Gohr    'ṫ' => 't',
89*13067778SAndreas Gohr    'ţ' => 't',
90*13067778SAndreas Gohr    'ț' => 't',
91*13067778SAndreas Gohr    'ŧ' => 't',
92*13067778SAndreas Gohr    'ú' => 'u',
93*13067778SAndreas Gohr    'ù' => 'u',
94*13067778SAndreas Gohr    'ŭ' => 'u',
95*13067778SAndreas Gohr    'û' => 'u',
96*13067778SAndreas Gohr    'ů' => 'u',
97*13067778SAndreas Gohr    'ü' => 'ue',
98*13067778SAndreas Gohr    'ű' => 'u',
99*13067778SAndreas Gohr    'ũ' => 'u',
100*13067778SAndreas Gohr    'ų' => 'u',
101*13067778SAndreas Gohr    'ū' => 'u',
102*13067778SAndreas Gohr    'ư' => 'u',
103*13067778SAndreas Gohr    'ẃ' => 'w',
104*13067778SAndreas Gohr    'ẁ' => 'w',
105*13067778SAndreas Gohr    'ŵ' => 'w',
106*13067778SAndreas Gohr    'ẅ' => 'w',
107*13067778SAndreas Gohr    'ý' => 'y',
108*13067778SAndreas Gohr    'ỳ' => 'y',
109*13067778SAndreas Gohr    'ŷ' => 'y',
110*13067778SAndreas Gohr    'ÿ' => 'y',
111*13067778SAndreas Gohr    'ź' => 'z',
112*13067778SAndreas Gohr    'ž' => 'z',
113*13067778SAndreas Gohr    'ż' => 'z',
114*13067778SAndreas Gohr    'þ' => 'th',
115*13067778SAndreas Gohr    'µ' => 'u',
116*13067778SAndreas Gohr];
117