Changeset 37853 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 06/23/2016 01:27:32 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r37852 r37853 1485 1485 * | U+00E5 | å | aa | Latin small letter a with ring above | 1486 1486 * 1487 * Catalan (`ca`) locale: 1488 * 1489 * | Code | Glyph | Replacement | Description | 1490 * | -------- | ----- | ----------- | --------------------------------------- | 1491 * | U+00B7 | l·l | ll | Flown dot (between two Ls) | 1492 * 1487 1493 * @since 1.2.1 1488 * @since 4.6.0 Locale support was added for `de_CH` and `de_CH_informal`.1494 * @since 4.6.0 Locale support was added for `de_CH`, `de_CH_informal`, and `ca`. 1489 1495 * 1490 1496 * @param string $string Text that might have accent characters … … 1690 1696 $chars[ chr(195).chr(133) ] = 'Aa'; 1691 1697 $chars[ chr(195).chr(165) ] = 'aa'; 1698 } elseif ( 'ca' === $locale ) { 1699 $chars[ chr(108).chr(194).chr(183).chr(108) ] = 'll'; 1692 1700 } 1693 1701
Note: See TracChangeset
for help on using the changeset viewer.