diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index 2dee46cfab..1c45846f2d 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -398,8 +398,9 @@ function wp_default_scripts( &$scripts ) { $scripts->add( 'word-count', "/wp-admin/js/word-count$suffix.js", array(), false, 1 ); did_action( 'init' ) && $scripts->localize( 'word-count', 'wordCountL10n', array( /* translators: If your word count is based on single characters (East Asian characters), - enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */ - 'type' => _x( 'words', 'word count: words or characters?' ) + enter 'characters', or 'all' to include spaces. Otherwise, enter 'words'. + Do not translate into your own language. */ + 'type' => _x( 'words', 'word count: words, characters or all?' ) ) ); $scripts->add( 'media-upload', "/wp-admin/js/media-upload$suffix.js", array( 'thickbox', 'shortcode' ), false, 1 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 650b227828..4638567e80 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta3-33290'; +$wp_version = '4.3-beta3-33291'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.