Changeset 49967
- Timestamp:
- 01/17/2021 03:44:04 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r49927 r49967 1538 1538 * 1539 1539 * German (`de_DE`), German formal (`de_DE_formal`), German (Switzerland) formal (`de_CH`), 1540 * and German (Switzerland) informal (`de_CH_informal`) locales:1540 * German (Switzerland) informal (`de_CH_informal`), and German (Austria) (`de_AT`) locales: 1541 1541 * 1542 1542 * | Code | Glyph | Replacement | Description | … … 1578 1578 * @since 4.7.0 Added locale support for `sr_RS`. 1579 1579 * @since 4.8.0 Added locale support for `bs_BA`. 1580 * @since 5.7.0 Added locale support for `de_AT`. 1580 1581 * 1581 1582 * @param string $string Text that might have accent characters … … 1920 1921 $locale = get_locale(); 1921 1922 1922 if ( in_array( $locale, array( 'de_DE', 'de_DE_formal', 'de_CH', 'de_CH_informal' ), true ) ) {1923 if ( in_array( $locale, array( 'de_DE', 'de_DE_formal', 'de_CH', 'de_CH_informal', 'de_AT' ), true ) ) { 1923 1924 $chars['Ä'] = 'Ae'; 1924 1925 $chars['ä'] = 'ae';
Note: See TracChangeset
for help on using the changeset viewer.