Make WordPress Core

Ticket #47475: 47475.diff

File 47475.diff, 1.6 KB (added by pedromendonca, 4 years ago)

Patch to fix strings

  • wp-admin/about.php

    diff --git a/wp-admin/about.php b/wp-admin/about.php
    index 40dde80221a..71ea17b189b 100644
    a b  
    9797                        </div>
    9898                        <div class="column is-vertically-aligned-center">
    9999                                <h3><?php _e( 'PHP Error Protection' ); ?></h3>
    100                                 <p><?php _e( 'This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death,” and a way to enter recovery mode,  which pauses error-causing plugins or themes.' ); ?></p>
     100                                <p><?php _e( 'This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death”, and a way to enter recovery mode,  which pauses error-causing plugins or themes.' ); ?></p>
    101101                        </div>
    102102                </div>
    103103
  • wp-admin/includes/file.php

    diff --git a/wp-admin/includes/file.php b/wp-admin/includes/file.php
    index 0a263ee1ef7..ebbbd4aa35c 100644
    a b function verify_file_signature( $filename, $signatures, $filename_for_errors = f 
    12191219                                'signature_verification_unsupported',
    12201220                                sprintf(
    12211221                                        /* translators: 1: The filename of the package. */
    1222                                         __( 'The authenticity of %1$s could not be verified as signature verification is unavailable on this system.' ),
     1222                                        __( 'The authenticity of %s could not be verified as signature verification is unavailable on this system.' ),
    12231223                                        '<span class="code">' . esc_html( $filename_for_errors ) . '</span>'
    12241224                                ),
    12251225                                array(