Translator comment should just reference placeholder numbers, not the actual placeholders.
see #31675. Built from https://develop.svn.wordpress.org/trunk@32112 git-svn-id: http://core.svn.wordpress.org/trunk@32091 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3566ac11fb
commit
9df7b6ecf6
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-beta4-32111';
|
$wp_version = '4.2-beta4-32112';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -819,7 +819,7 @@ function register_sidebar($args = array()) {
|
||||||
$sidebar = wp_parse_args( $args, $defaults );
|
$sidebar = wp_parse_args( $args, $defaults );
|
||||||
|
|
||||||
if ( $id_is_empty ) {
|
if ( $id_is_empty ) {
|
||||||
/* translators: %1$s: the id argument, %2$s: sidebar name, %3$s: recommended id value */
|
/* translators: 1: the id argument, 2: sidebar name, 3: recommended id value */
|
||||||
_doing_it_wrong( __FUNCTION__, sprintf( __( 'No %1$s was set in the arguments array for the "%2$s" sidebar. Defaulting to "%3$s". Manually set the %1$s to "%3$s" to silence this notice and keep existing sidebar content.' ), '<code>id</code>', $sidebar['name'], $sidebar['id'] ), '4.2.0' );
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'No %1$s was set in the arguments array for the "%2$s" sidebar. Defaulting to "%3$s". Manually set the %1$s to "%3$s" to silence this notice and keep existing sidebar content.' ), '<code>id</code>', $sidebar['name'], $sidebar['id'] ), '4.2.0' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue