Make WordPress Core

Ticket #50708: 50708.2.patch

File 50708.2.patch, 1.7 KB (added by ramiy, 4 years ago)
  • wp-admin/includes/class-wp-automatic-updater.php

     
    386386
    387387                        // Core doesn't output this, so let's append it so we don't get confused.
    388388                        if ( is_wp_error( $upgrade_result ) ) {
    389                                 $skin->error( __( 'Installation Failed' ), $upgrade_result );
     389                                $skin->error( __( 'Installation failed' ), $upgrade_result );
    390390                        } else {
    391391                                $skin->feedback( __( 'WordPress updated successfully' ) );
    392392                        }
  • wp-admin/js/updates.js

     
    727727                                        $button.data( 'name' )
    728728                                )
    729729                        )
    730                         .text( __( 'Installation Failed!' ) );
     730                        .text( __( 'Installation failed' ) );
    731731
    732732                wp.a11y.speak( errorMessage, 'assertive' );
    733733
     
    13641364                                        $button.data( 'name' )
    13651365                                )
    13661366                        )
    1367                         .text( __( 'Installation Failed!' ) );
     1367                        .text( __( 'Installation failed' ) );
    13681368
    13691369                wp.a11y.speak( errorMessage, 'assertive' );
    13701370
  • wp-admin/update-core.php

     
    646646        if ( is_wp_error( $result ) ) {
    647647                show_message( $result );
    648648                if ( 'up_to_date' != $result->get_error_code() && 'locked' != $result->get_error_code() ) {
    649                         show_message( __( 'Installation Failed' ) );
     649                        show_message( __( 'Installation failed' ) );
    650650                }
    651651                echo '</div>';
    652652                return;