Make WordPress Core


Ignore:
Timestamp:
12/03/2013 08:38:03 PM (11 years ago)
Author:
nacin
Message:

Remove certain accents in the Danish language.

props tlamedia.
fixes #23907.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r26557 r26585  
    813813            $chars[ chr(195).chr(188) ] = 'ue';
    814814            $chars[ chr(195).chr(159) ] = 'ss';
     815        } elseif ( 'da_DK' === $locale ) {
     816            $chars[ chr(195).chr(134) ] = 'Ae';
     817            $chars[ chr(195).chr(166) ] = 'ae';
     818            $chars[ chr(195).chr(152) ] = 'Oe';
     819            $chars[ chr(195).chr(184) ] = 'oe';
     820            $chars[ chr(195).chr(133) ] = 'Aa';
     821            $chars[ chr(195).chr(165) ] = 'aa';
    815822        }
    816823
Note: See TracChangeset for help on using the changeset viewer.