From 20d39c84788dceb379dd41b015a686c1af47aa34 Mon Sep 17 00:00:00 2001
From: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date: Wed, 15 Apr 2015 01:24:24 +0000
Subject: [PATCH] About page: Two more string tweaks.

props DrewAPicture, pento.
see #31929.
Built from https://develop.svn.wordpress.org/trunk@32132


git-svn-id: http://core.svn.wordpress.org/trunk@32111 1a063a9b-81f0-0310-95a4-ce76da25c4cd
---
 wp-admin/about.php      | 4 ++--
 wp-includes/version.php | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/wp-admin/about.php b/wp-admin/about.php
index d76b5fdb06..7de19a270d 100644
--- a/wp-admin/about.php
+++ b/wp-admin/about.php
@@ -64,7 +64,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
 			<p><?php echo ( 'Writing in WordPress, whatever your language, just got better. WordPress 4.2 supports a host of new characters out-of-the-box, including native Chinese, Japanese, and Korean characters, musical and mathematical symbols, and hieroglyphs.' ); ?></p>
 			<p><?php
 				/* translators: 1: heart emoji, 2: kitten emoji, 3, monkey emoji, 4: ice-cream emoji, 5: Emoji Codex link */
-				printf( 'Don’t use special characters? You can still have fun &mdash; emoji are now available in WordPress! Get creative and decorate your content with %1$s, %2$s, %3$s, %4$s, and all the many other <a href="%5$s">emojis</a>.', '&#x1F499', '&#x1F408', '&#x1F412', '&#x1F366', __( 'https://codex.wordpress.org/Emoji' ) );
+				printf( 'Don’t use special characters? You can still have fun &mdash; emoji are now available in WordPress! Get creative and decorate your content with %1$s, %2$s, %3$s, %4$s, and all the many other <a href="%5$s">emoji</a>.', '&#x1F499', '&#x1F408', '&#x1F412', '&#x1F366', __( 'https://codex.wordpress.org/Emoji' ) );
 			?></p>
 		</div>
 		<div class="col">
@@ -135,7 +135,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
 			<p><?php echo ( 'Database character encoding has changed from utf8 to utf8mb4, which adds support for a whole range of new 4-byte characters.' ); ?></p>
 
 			<h4><?php echo ( 'JavaScript Accessibility' ); ?></h4>
-			<p><?php echo ( 'Your JavaScript can now talk to screen readers with <code>wp.a11y.speak()</code>. Simply pass what you want to say, and a polite update will be sent to the ARIA live notifications area.' ); ?></p>
+			<p><?php echo ( 'You can now send audible notifications to screen readers in JavaScript with <code>wp.a11y.speak()</code>. Pass it a string, and an update will be sent to the ARIA live notifications area.' ); ?></p>
 		</div>
 		<div class="last-feature">
 			<h4><?php echo ( 'Taxonomy Roadmap' ); ?></h4>
diff --git a/wp-includes/version.php b/wp-includes/version.php
index b0ec84e0b0..fd3c717fff 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '4.2-beta4-32131';
+$wp_version = '4.2-beta4-32132';
 
 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.