Skip to content

Commit

Permalink
Post Publish Flow: Simplify status term (WordPress#61386)
Browse files Browse the repository at this point in the history
Co-authored-by: t-hamano <[email protected]>
Co-authored-by: jasmussen <[email protected]>
  • Loading branch information
3 people authored May 6, 2024
1 parent c889c51 commit 3d8b192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/editor/src/components/post-status/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ function PostStatusLabel( { canEdit } ) {
statusLabel = __( 'Draft' );
break;
case 'pending':
statusLabel = __( 'Pending review' );
statusLabel = __( 'Pending' );
break;
case 'private':
statusLabel = __( 'Published privately' );
statusLabel = __( 'Private' );
break;
}
return (
Expand Down

0 comments on commit 3d8b192

Please sign in to comment.