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:
parent
62129ebe85
commit
156b8ca421
|
@ -133,7 +133,13 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<div class="changelog">
|
<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' ),
|
||||||
|
'😊'
|
||||||
|
);
|
||||||
|
?></h2>
|
||||||
|
|
||||||
<div class="under-the-hood three-col">
|
<div class="under-the-hood three-col">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue