Skip to content

Commit

Permalink
Post Publish Flow: Simplify status term
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hamano committed May 6, 2024
1 parent ea2e969 commit 10fcfcc
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 10fcfcc

Please sign in to comment.