From 3d8b192c3df3b02f4c1efc9d8154b715dc189600 Mon Sep 17 00:00:00 2001 From: Aki Hamano <54422211+t-hamano@users.noreply.github.com> Date: Mon, 6 May 2024 22:17:11 +0900 Subject: [PATCH] Post Publish Flow: Simplify status term (#61386) Co-authored-by: t-hamano Co-authored-by: jasmussen --- 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 (