I18N: Move translatable Codex URLs to separate strings in wp-includes/functions.php
.
Props ramiy. See #34687. git-svn-id: https://develop.svn.wordpress.org/trunk@35667 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
23a74b7e4d
commit
bfe32a4d38
@ -3780,11 +3780,16 @@ function _doing_it_wrong( $function, $message, $version ) {
|
|||||||
if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) {
|
if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) {
|
||||||
if ( function_exists( '__' ) ) {
|
if ( function_exists( '__' ) ) {
|
||||||
$version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
|
$version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
|
||||||
$message .= ' ' . __( 'Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.' );
|
/* translators: %s: Codex URL */
|
||||||
|
$message .= ' ' . sprintf( __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
|
||||||
|
__( 'https://codex.wordpress.org/Debugging_in_WordPress' )
|
||||||
|
);
|
||||||
trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) );
|
trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) );
|
||||||
} else {
|
} else {
|
||||||
$version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version );
|
$version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version );
|
||||||
$message .= ' Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.';
|
$message .= sprintf( ' Please see <a href="%s">Debugging in WordPress</a> for more information.',
|
||||||
|
'https://codex.wordpress.org/Debugging_in_WordPress'
|
||||||
|
);
|
||||||
trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) );
|
trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user