I18N: Use better context for post statuses.
See #35054. Built from https://develop.svn.wordpress.org/trunk@35903 git-svn-id: http://core.svn.wordpress.org/trunk@35867 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -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 <span class="count">(%s)</span>', 'Published <span class="count">(%s)</span>' ),
|
||||
) );
|
||||
|
||||
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 <span class="count">(%s)</span>', 'Scheduled <span class="count">(%s)</span>' ),
|
||||
) );
|
||||
|
||||
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 <span class="count">(%s)</span>', 'Drafts <span class="count">(%s)</span>' ),
|
||||
) );
|
||||
|
||||
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 <span class="count">(%s)</span>', 'Pending <span class="count">(%s)</span>' ),
|
||||
) );
|
||||
|
||||
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 <span class="count">(%s)</span>', 'Private <span class="count">(%s)</span>' ),
|
||||
) );
|
||||
|
||||
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 <span class="count">(%s)</span>', 'Trash <span class="count">(%s)</span>' ),
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user