Make WordPress Core


Ignore:
Timestamp:
01/27/2021 09:02:12 PM (4 years ago)
Author:
joedolson
Message:

Administration: Remove italic text to improve readability.

Italicized text can be difficult to read for some people with dyslexia or related forms of reading disorders. This removes italics on a number of larger blocks onpm run grunt rpf text in the admin. This has been a task 5.3; this commit closes the task. Further instances of italicized text should be addressed individually.

Props afercia, xkon, audrasjb
Fixes #47327

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php

    r46586 r50032  
    4747                        <p>
    4848                            <?php echo _x( 'Where do you want this menu to appear?', 'menu locations' ); ?>
    49                             <em class="new-menu-locations-widget-note">
    50                                 <?php
    51                                 printf(
    52                                     /* translators: 1: Documentation URL, 2: Additional link attributes, 3: Accessibility text. */
    53                                     _x( '(If you plan to use a menu <a href="%1$s" %2$s>widget%3$s</a>, skip this step.)', 'menu locations' ),
    54                                     __( 'https://wordpress.org/support/article/wordpress-widgets/' ),
    55                                     ' class="external-link" target="_blank"',
    56                                     sprintf(
    57                                         '<span class="screen-reader-text"> %s</span>',
    58                                         /* translators: Accessibility text. */
    59                                         __( '(opens in a new tab)' )
    60                                     )
    61                                 );
    62                                 ?>
    63                             </em>
     49                            <?php
     50                            printf(
     51                                /* translators: 1: Documentation URL, 2: Additional link attributes, 3: Accessibility text. */
     52                                _x( '(If you plan to use a menu <a href="%1$s" %2$s>widget%3$s</a>, skip this step.)', 'menu locations' ),
     53                                __( 'https://wordpress.org/support/article/wordpress-widgets/' ),
     54                                ' class="external-link" target="_blank"',
     55                                sprintf(
     56                                    '<span class="screen-reader-text"> %s</span>',
     57                                    /* translators: Accessibility text. */
     58                                    __( '(opens in a new tab)' )
     59                                )
     60                            );
     61                            ?>
    6462                        </p>
    6563                    <# } else { #>
Note: See TracChangeset for help on using the changeset viewer.