Make WordPress Core

Ticket #46277: 46277.diff

File 46277.diff, 3.0 KB (added by dimadin, 6 years ago)
  • src/wp-admin/includes/class-wp-plugin-install-list-table.php

    diff --git src/wp-admin/includes/class-wp-plugin-install-list-table.php src/wp-admin/includes/class-wp-plugin-install-list-table.php
    index 3ff7991fc5..9c09a80a16 100644
    class WP_Plugin_Install_List_Table extends WP_List_Table { 
    634634                        if ( ! $compatible_php || ! $compatible_wp ) {
    635635                                echo '<div class="notice inline notice-error notice-alt"><p>';
    636636                                if ( ! $compatible_php && ! $compatible_wp ) {
    637                                         _e( 'This plugin doesn&#8217;t work with your versions of WordPress and PHP. ' );
     637                                        _e( 'This plugin doesn&#8217;t work with your versions of WordPress and PHP.' );
    638638                                        if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    639639                                                printf(
    640640                                                        /* translators: 1: "Update WordPress" screen URL, 2: "Update PHP" page URL */
    641                                                         __( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
     641                                                        ' ' . __( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
    642642                                                        self_admin_url( 'update-core.php' ),
    643643                                                        esc_url( wp_get_update_php_url() )
    644644                                                );
    class WP_Plugin_Install_List_Table extends WP_List_Table { 
    646646                                        } elseif ( current_user_can( 'update_core' ) ) {
    647647                                                printf(
    648648                                                        /* translators: %s: "Update WordPress" screen URL */
    649                                                         __( '<a href="%s">Please update WordPress</a>.' ),
     649                                                        ' ' . __( '<a href="%s">Please update WordPress</a>.' ),
    650650                                                        self_admin_url( 'update-core.php' )
    651651                                                );
    652652                                        } elseif ( current_user_can( 'update_php' ) ) {
    653653                                                printf(
    654654                                                        /* translators: %s: "Update PHP" page URL */
    655                                                         __( '<a href="%s">Learn more about updating PHP</a>.' ),
     655                                                        ' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
    656656                                                        esc_url( wp_get_update_php_url() )
    657657                                                );
    658658                                                wp_update_php_annotation();
    659659                                        }
    660660                                } elseif ( ! $compatible_wp ) {
    661                                         _e( 'This plugin doesn&#8217;t work with your version of WordPress. ' );
     661                                        _e( 'This plugin doesn&#8217;t work with your version of WordPress.' );
    662662                                        if ( current_user_can( 'update_core' ) ) {
    663663                                                printf(
    664664                                                        /* translators: %s: "Update WordPress" screen URL */
    665                                                         __( '<a href="%s">Please update WordPress</a>.' ),
     665                                                        ' ' . __( '<a href="%s">Please update WordPress</a>.' ),
    666666                                                        self_admin_url( 'update-core.php' )
    667667                                                );
    668668                                        }
    669669                                } elseif ( ! $compatible_php ) {
    670                                         _e( 'This plugin doesn&#8217;t work with your version of PHP. ' );
     670                                        _e( 'This plugin doesn&#8217;t work with your version of PHP.' );
    671671                                        if ( current_user_can( 'update_php' ) ) {
    672672                                                printf(
    673673                                                        /* translators: %s: "Update PHP" page URL */
    674                                                         __( '<a href="%s">Learn more about updating PHP</a>.' ),
     674                                                        ' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
    675675                                                        esc_url( wp_get_update_php_url() )
    676676                                                );
    677677                                                wp_update_php_annotation();