Remove certain accents in the Danish language.
props tlamedia. fixes #23907. Built from https://develop.svn.wordpress.org/trunk@26585 git-svn-id: http://core.svn.wordpress.org/trunk@26475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a593e88fa5
commit
64ff23f8f8
|
@ -812,6 +812,13 @@ function remove_accents($string) {
|
|||
$chars[ chr(195).chr(156) ] = 'Ue';
|
||||
$chars[ chr(195).chr(188) ] = 'ue';
|
||||
$chars[ chr(195).chr(159) ] = 'ss';
|
||||
} elseif ( 'da_DK' === $locale ) {
|
||||
$chars[ chr(195).chr(134) ] = 'Ae';
|
||||
$chars[ chr(195).chr(166) ] = 'ae';
|
||||
$chars[ chr(195).chr(152) ] = 'Oe';
|
||||
$chars[ chr(195).chr(184) ] = 'oe';
|
||||
$chars[ chr(195).chr(133) ] = 'Aa';
|
||||
$chars[ chr(195).chr(165) ] = 'aa';
|
||||
}
|
||||
|
||||
$string = strtr($string, $chars);
|
||||
|
|
Loading…
Reference in New Issue