Changeset 38646 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 09/23/2016 12:06:24 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r38593 r38646 1491 1491 * | U+00B7 | l·l | ll | Flown dot (between two Ls) | 1492 1492 * 1493 * Serbian (`sr_RS`) locale: 1494 * 1495 * | Code | Glyph | Replacement | Description | 1496 * | -------- | ----- | ----------- | --------------------------------------- | 1497 * | U+0110 | Đ | DJ | Latin capital letter D with stroke | 1498 * | U+0111 | đ | dj | Latin small letter d with stroke | 1499 * 1493 1500 * @since 1.2.1 1494 1501 * @since 4.6.0 Added locale support for `de_CH`, `de_CH_informal`, and `ca`. 1502 * @since 4.7.0 Added locale support for `sr_RS`. 1495 1503 * 1496 1504 * @param string $string Text that might have accent characters … … 1698 1706 } elseif ( 'ca' === $locale ) { 1699 1707 $chars[ 'l·l' ] = 'll'; 1708 } elseif ( 'sr_RS' === $locale ) { 1709 $chars[ 'Đ' ] = 'DJ'; 1710 $chars[ 'đ' ] = 'dj'; 1700 1711 } 1701 1712
Note: See TracChangeset
for help on using the changeset viewer.