diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php
index e65c7d0f23..6176d30e71 100644
--- a/wp-admin/includes/template.php
+++ b/wp-admin/includes/template.php
@@ -1683,8 +1683,7 @@ function _post_states($post) {
if ( 'draft' == $post->post_status && 'draft' != $post_status )
$post_states['draft'] = __('Draft');
if ( 'pending' == $post->post_status && 'pending' != $post_status )
- /* translators: post state */
- $post_states['pending'] = _x('Pending', 'post state');
+ $post_states['pending'] = _x('Pending', 'post status');
if ( is_sticky($post->ID) )
$post_states['sticky'] = __('Sticky');
diff --git a/wp-includes/post.php b/wp-includes/post.php
index 6535d4bfd0..75850bcac6 100644
--- a/wp-includes/post.php
+++ b/wp-includes/post.php
@@ -110,42 +110,42 @@ function create_initial_post_types() {
) );
register_post_status( 'publish', array(
- 'label' => _x( 'Published', 'post' ),
+ 'label' => _x( 'Published', 'post status' ),
'public' => true,
'_builtin' => true, /* internal use only. */
'label_count' => _n_noop( 'Published (%s)', 'Published (%s)' ),
) );
register_post_status( 'future', array(
- 'label' => _x( 'Scheduled', 'post' ),
+ 'label' => _x( 'Scheduled', 'post status' ),
'protected' => true,
'_builtin' => true, /* internal use only. */
'label_count' => _n_noop('Scheduled (%s)', 'Scheduled (%s)' ),
) );
register_post_status( 'draft', array(
- 'label' => _x( 'Draft', 'post' ),
+ 'label' => _x( 'Draft', 'post status' ),
'protected' => true,
'_builtin' => true, /* internal use only. */
'label_count' => _n_noop( 'Draft (%s)', 'Drafts (%s)' ),
) );
register_post_status( 'pending', array(
- 'label' => _x( 'Pending', 'post' ),
+ 'label' => _x( 'Pending', 'post status' ),
'protected' => true,
'_builtin' => true, /* internal use only. */
'label_count' => _n_noop( 'Pending (%s)', 'Pending (%s)' ),
) );
register_post_status( 'private', array(
- 'label' => _x( 'Private', 'post' ),
+ 'label' => _x( 'Private', 'post status' ),
'private' => true,
'_builtin' => true, /* internal use only. */
'label_count' => _n_noop( 'Private (%s)', 'Private (%s)' ),
) );
register_post_status( 'trash', array(
- 'label' => _x( 'Trash', 'post' ),
+ 'label' => _x( 'Trash', 'post status' ),
'internal' => true,
'_builtin' => true, /* internal use only. */
'label_count' => _n_noop( 'Trash (%s)', 'Trash (%s)' ),
diff --git a/wp-includes/version.php b/wp-includes/version.php
index c792355063..0a9f56c03a 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.5-alpha-35902';
+$wp_version = '4.5-alpha-35903';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.