I18N: Merge duplicate "authenticity could not be verified" strings, fix comma placement on About page.
Props pedromendonca, garrett-eclipse. Fixes #47475. git-svn-id: https://develop.svn.wordpress.org/trunk@45515 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
66f7cee321
commit
1d9ac40038
@ -97,7 +97,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
</div>
|
</div>
|
||||||
<div class="column is-vertically-aligned-center">
|
<div class="column is-vertically-aligned-center">
|
||||||
<h3><?php _e( 'PHP Error Protection' ); ?></h3>
|
<h3><?php _e( 'PHP Error Protection' ); ?></h3>
|
||||||
<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>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1218,8 +1218,8 @@ function verify_file_signature( $filename, $signatures, $filename_for_errors = f
|
|||||||
return new WP_Error(
|
return new WP_Error(
|
||||||
'signature_verification_unsupported',
|
'signature_verification_unsupported',
|
||||||
sprintf(
|
sprintf(
|
||||||
/* translators: 1: The filename of the package. */
|
/* translators: %s: The filename of the package. */
|
||||||
__( 'The authenticity of %1$s could not be verified as signature verification is unavailable on this system.' ),
|
__( 'The authenticity of %s could not be verified as signature verification is unavailable on this system.' ),
|
||||||
'<span class="code">' . esc_html( $filename_for_errors ) . '</span>'
|
'<span class="code">' . esc_html( $filename_for_errors ) . '</span>'
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
|
Loading…
Reference in New Issue
Block a user