diff --git src/wp-admin/includes/dashboard.php src/wp-admin/includes/dashboard.php
index e3160bb390..ad02909c74 100644
|
|
function wp_dashboard_php_nag() { |
1628 | 1628 | <p><?php echo $msg; ?></p> |
1629 | 1629 | |
1630 | 1630 | <h3><?php _e( 'What is PHP and how does it affect my site?' ); ?></h3> |
1631 | | <p><?php _e( 'PHP is the programming language we use to build and maintain WordPress. Newer versions of PHP are both faster and more secure, so updating will have a positive effect on your site’s performance.' ); ?></p> |
| 1631 | <p><?php _e( 'PHP is the programming language we use to build and maintain WordPress. Newer versions of PHP are both faster and more secure, so updating will have a positive effect on your site’s performance.' ); ?></p> |
1632 | 1632 | |
1633 | 1633 | <p class="button-container"> |
1634 | 1634 | <?php |
diff --git src/wp-admin/includes/file.php src/wp-admin/includes/file.php
index 1c347cb020..cd3551bfad 100644
|
|
function verify_file_signature( $filename, $signatures, $filename_for_errors = f |
1187 | 1187 | return new WP_Error( |
1188 | 1188 | 'signature_verification_unsupported', |
1189 | 1189 | sprintf( |
1190 | | /* translators: 1: The filename of the package. */ |
1191 | | __( 'The authenticity of %1$s could not be verified as signature verification is unavailable on this system.' ), |
| 1190 | /* translators: %s: The filename of the package. */ |
| 1191 | __( 'The authenticity of %s could not be verified as signature verification is unavailable on this system.' ), |
1192 | 1192 | '<span class="code">' . esc_html( $filename_for_errors ) . '</span>' |
1193 | 1193 | ), |
1194 | 1194 | array( |
diff --git src/wp-admin/includes/theme.php src/wp-admin/includes/theme.php
index 5283cea8bc..b1e0f2f900 100644
|
|
function customize_themes_print_templates() { |
723 | 723 | {{{ data.stars }}} |
724 | 724 | <a class="num-ratings" target="_blank" href="{{ data.reviews_url }}"> |
725 | 725 | <?php |
726 | | /* translators: %s: number of ratings */ |
727 | | echo sprintf( __( '(%s ratings) <span class="screen-reader-text">link to view ratings opens in a new tab</span>' ), '{{ data.num_ratings }}' ); |
| 726 | printf( |
| 727 | '%1$s<span class="screen-reader-text"> %2$s</span>', |
| 728 | /* translators: %s: number of ratings */ |
| 729 | sprintf( __( '(%s ratings)' ), '{{ data.num_ratings }}' ), |
| 730 | /* translators: accessibility text */ |
| 731 | __( '(opens in a new tab)' ) |
| 732 | ); |
728 | 733 | ?> |
729 | 734 | </a> |
730 | 735 | </div> |
diff --git src/wp-login.php src/wp-login.php
index d9b2554783..5ecf5f0dbf 100644
|
|
function retrieve_password() { |
426 | 426 | $message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data ); |
427 | 427 | |
428 | 428 | if ( $message && ! wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) ) { |
429 | | wp_die( __( 'The email could not be sent.' ) . "<br />\n" . __( 'Possible reason: your host may have disabled the mail() function.' ) ); |
| 429 | wp_die( __( 'The email could not be sent. Possible reason: your host may have disabled the mail() function.' ) ); |
430 | 430 | } |
431 | 431 | |
432 | 432 | return true; |