Make WordPress Core


Ignore:
Timestamp:
12/13/2015 07:17:10 PM (9 years ago)
Author:
SergeyBiryukov
Message:

I18N: Use better context for post statuses.

See #35054.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/post.php

    r35868 r35903  
    111111
    112112    register_post_status( 'publish', array(
    113         'label'       => _x( 'Published', 'post' ),
     113        'label'       => _x( 'Published', 'post status' ),
    114114        'public'      => true,
    115115        '_builtin'    => true, /* internal use only. */
     
    118118
    119119    register_post_status( 'future', array(
    120         'label'       => _x( 'Scheduled', 'post' ),
     120        'label'       => _x( 'Scheduled', 'post status' ),
    121121        'protected'   => true,
    122122        '_builtin'    => true, /* internal use only. */
     
    125125
    126126    register_post_status( 'draft', array(
    127         'label'       => _x( 'Draft', 'post' ),
     127        'label'       => _x( 'Draft', 'post status' ),
    128128        'protected'   => true,
    129129        '_builtin'    => true, /* internal use only. */
     
    132132
    133133    register_post_status( 'pending', array(
    134         'label'       => _x( 'Pending', 'post' ),
     134        'label'       => _x( 'Pending', 'post status' ),
    135135        'protected'   => true,
    136136        '_builtin'    => true, /* internal use only. */
     
    139139
    140140    register_post_status( 'private', array(
    141         'label'       => _x( 'Private', 'post' ),
     141        'label'       => _x( 'Private', 'post status' ),
    142142        'private'     => true,
    143143        '_builtin'    => true, /* internal use only. */
     
    146146
    147147    register_post_status( 'trash', array(
    148         'label'       => _x( 'Trash', 'post' ),
     148        'label'       => _x( 'Trash', 'post status' ),
    149149        'internal'    => true,
    150150        '_builtin'    => true, /* internal use only. */
Note: See TracChangeset for help on using the changeset viewer.