diff --git a/packages/editor/src/components/post-actions/actions.js b/packages/editor/src/components/post-actions/actions.js index f59dbdc88f8a92..1acb18d5173439 100644 --- a/packages/editor/src/components/post-actions/actions.js +++ b/packages/editor/src/components/post-actions/actions.js @@ -257,7 +257,11 @@ const trashPostAction = { } else if ( items[ 0 ].type === 'page' ) { successMessage = sprintf( /* translators: The number of items. */ - __( '%s items moved to trash.' ), + _n( + '%s item moved to trash.', + '%s items moved to trash.', + items.length + ), items.length ); } else {