Make WordPress Core

Ticket #47327: 47327.6.diff

File 47327.6.diff, 5.5 KB (added by audrasjb, 4 years ago)

Remove useless italic: WP 5.7 edition

  • src/wp-admin/includes/file.php

    diff --git a/src/wp-admin/includes/file.php b/src/wp-admin/includes/file.php
    index acce21a15f..9928582c7a 100644
    a b function request_filesystem_credentials( $form_post, $type = '', $error = false, 
    22462246        <label for="password">
    22472247                <span class="field-title"><?php echo $label_pass; ?></span>
    22482248                <input name="password" type="password" id="password" value="<?php echo $password_value; ?>"<?php disabled( defined( 'FTP_PASS' ) ); ?> />
    2249                 <em>
    22502249                <?php
    22512250                if ( ! defined( 'FTP_PASS' ) ) {
    22522251                        _e( 'This password will not be stored on the server.' );}
    22532252                ?>
    2254 </em>
    22552253        </label>
    22562254</div>
    22572255<fieldset>
  • src/wp-admin/plugin-editor.php

    diff --git a/src/wp-admin/plugin-editor.php b/src/wp-admin/plugin-editor.php
    index 7467ace6aa..a9a43e4804 100644
    a b $content = esc_textarea( $content ); 
    288288                        <span class="spinner"></span>
    289289                </p>
    290290        <?php else : ?>
    291                 <p><em>
     291                <p>
    292292                        <?php
    293293                        printf(
    294294                                /* translators: %s: Documentation URL. */
    $content = esc_textarea( $content ); 
    296296                                __( 'https://wordpress.org/support/article/changing-file-permissions/' )
    297297                        );
    298298                        ?>
    299                 </em></p>
     299                </p>
    300300        <?php endif; ?>
    301301
    302302        <?php wp_print_file_editor_templates(); ?>
  • src/wp-admin/theme-editor.php

    diff --git a/src/wp-admin/theme-editor.php b/src/wp-admin/theme-editor.php
    index 3cf24cc77e..45781f2eff 100644
    a b else : 
    315315                                        <span class="spinner"></span>
    316316                                </p>
    317317                        <?php else : ?>
    318                                 <p><em>
     318                                <p>
    319319                                        <?php
    320320                                        printf(
    321321                                                /* translators: %s: Documentation URL. */
    else : 
    323323                                                __( 'https://wordpress.org/support/article/changing-file-permissions/' )
    324324                                        );
    325325                                        ?>
    326                                 </em></p>
     326                                </p>
    327327                        <?php endif; ?>
    328328                </div>
    329329
  • src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php

    diff --git a/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php b/src/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php
    index 93db8ac013..92125618ea 100644
    a b class WP_Customize_Nav_Menu_Locations_Control extends WP_Customize_Control { 
    4646                                        <# if ( data.isCreating ) { #>
    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 { #>
    6664                                                <p><?php echo _x( 'Here&#8217;s where this menu appears. If you&#8217;d like to change that, pick another location.', 'menu locations' ); ?></p>
  • src/wp-signup.php

    diff --git a/src/wp-signup.php b/src/wp-signup.php
    index 8dacd322b1..654c45d0bb 100644
    a b if ( 'none' === $active_signup ) { 
    984984                                if ( 'blog' === $active_signup || 'all' === $active_signup ) {
    985985                                        printf(
    986986                                                /* translators: %s: Site address. */
    987                                                 '<p><em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>',
     987                                                '<p>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</p>',
    988988                                                '<strong>' . $newblog . '</strong>'
    989989                                        );
    990990                                } else {
    991991                                        printf(
    992992                                                /* translators: %s: Site address. */
    993                                                 '<p><em>' . __( 'The site you were looking for, %s, does not exist.' ) . '</em></p>',
     993                                                '<p>' . __( 'The site you were looking for, %s, does not exist.' ) . '</p>',
    994994                                                '<strong>' . $newblog . '</strong>'
    995995                                        );
    996996                                }
  • tests/phpunit/tests/rest-api/rest-plugins-controller.php

    diff --git a/tests/phpunit/tests/rest-api/rest-plugins-controller.php b/tests/phpunit/tests/rest-api/rest-plugins-controller.php
    index bab1e87ec9..739f553650 100644
    a b class WP_REST_Plugins_Controller_Test extends WP_Test_REST_Controller_Testcase { 
    443443                }
    444444
    445445                wp_set_current_user( self::$super_admin );
    446                 $this->setup_plugin_download();
    447446
    448447                $request = new WP_REST_Request( 'POST', self::BASE );
    449448                $request->set_body_params(
    class WP_REST_Plugins_Controller_Test extends WP_Test_REST_Controller_Testcase { 
    467466                }
    468467
    469468                wp_set_current_user( self::$super_admin );
    470                 $this->setup_plugin_download();
    471469
    472470                $request = new WP_REST_Request( 'POST', self::BASE );
    473471                $request->set_body_params(