About page: Remove emoji from translatable string.

props ocean90.
see #38616.

Built from https://develop.svn.wordpress.org/trunk@39442


git-svn-id: http://core.svn.wordpress.org/trunk@39382 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2016-12-02 22:30:42 +00:00
parent 62129ebe85
commit 156b8ca421
2 changed files with 8 additions and 2 deletions

View File

@ -133,7 +133,13 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<hr />
<div class="changelog">
<h2><?php _e( 'Even More Developer Happiness 😊' ); ?></h2>
<h2><?php
printf(
/* translators: %s: smiling face with smiling eyes emoji */
__( 'Even More Developer Happiness %s' ),
'&#x1F60A'
);
?></h2>
<div class="under-the-hood three-col">
<div class="col">

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.8-alpha-39440';
$wp_version = '4.8-alpha-39442';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.