From 10fcfccb86f338fd0f1cda94c4612146ca5c6203 Mon Sep 17 00:00:00 2001 From: Tetsuaki Hamano Date: Mon, 6 May 2024 12:31:33 +0900 Subject: [PATCH] Post Publish Flow: Simplify status term --- packages/editor/src/components/post-status/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor/src/components/post-status/index.js b/packages/editor/src/components/post-status/index.js index 414ddce229c4b3..ca728484e266a7 100644 --- a/packages/editor/src/components/post-status/index.js +++ b/packages/editor/src/components/post-status/index.js @@ -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 (