Themes: Don't use HTML entities for placeholders.

See #32875.
Built from https://develop.svn.wordpress.org/trunk@34086


git-svn-id: http://core.svn.wordpress.org/trunk@34054 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-09-12 19:48:24 +00:00
parent 8977166746
commit 720cea8cf9
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ wp_localize_script( 'theme', '_wpThemeSettings', array(
'l10n' => array(
'addNew' => __( 'Add New Theme' ),
'search' => __( 'Search Themes' ),
'searchPlaceholder' => __( 'Search themes…' ), // placeholder (no ellipsis)
'searchPlaceholder' => __( 'Search themes...' ), // placeholder (no ellipsis)
'upload' => __( 'Upload Theme' ),
'back' => __( 'Back' ),
'error' => __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ),

View File

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