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:
Pascal Birchler 2017-02-17 10:15:44 +00:00
parent 30cb64a011
commit db1ff39224
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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.