I18N: Fix broken `sprintf()` after [40067].
See #39898. Built from https://develop.svn.wordpress.org/trunk@40072 git-svn-id: http://core.svn.wordpress.org/trunk@40009 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
30cb64a011
commit
db1ff39224
|
@ -213,7 +213,7 @@ final class WP_Customize_Custom_CSS_Setting extends WP_Customize_Setting {
|
|||
if ( ! $this->validate_equal_characters( '"', $css ) ) {
|
||||
$validity->add( 'unequal_double_quotes', sprintf(
|
||||
/* translators: %s: " */
|
||||
__( 'Your double quotes %s are uneven. Make sure there is a closing %s for every opening %s.' ),
|
||||
__( 'Your double quotes %1$s are uneven. Make sure there is a closing %1$s for every opening %1$s.' ),
|
||||
'<code>"</code>'
|
||||
) );
|
||||
$imbalanced = true;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.8-alpha-40070';
|
||||
$wp_version = '4.8-alpha-40072';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue