diff --git a/packages/block-editor/src/components/block-removal-warning-modal/index.js b/packages/block-editor/src/components/block-removal-warning-modal/index.js index a6de602bcdda81..846883e48e9cd3 100644 --- a/packages/block-editor/src/components/block-removal-warning-modal/index.js +++ b/packages/block-editor/src/components/block-removal-warning-modal/index.js @@ -50,11 +50,12 @@ export function BlockRemovalWarningModal( { rules } ) {

{ _n( - 'Post or page content will not be displayed if you delete this block.', - 'Post or page content will not be displayed if you delete these blocks.', + 'Deleting this block will stop your post or page content from displaying on this template. It is not recommended.', + 'Deleting these blocks will stop your post or page content from displaying on this template. It is not recommended.', blockNamesForPrompt.length ) }

diff --git a/test/e2e/specs/site-editor/block-removal.spec.js b/test/e2e/specs/site-editor/block-removal.spec.js index 27d3762364b446..bf63e089c8a0bf 100644 --- a/test/e2e/specs/site-editor/block-removal.spec.js +++ b/test/e2e/specs/site-editor/block-removal.spec.js @@ -35,7 +35,7 @@ test.describe( 'Site editor block removal prompt', () => { // Expect the block removal prompt to have appeared await expect( page.getByText( - 'Post or page content will not be displayed if you delete these blocks.' + 'Deleting these blocks will stop your post or page content from displaying on this template. It is not recommended.' ) ).toBeVisible(); } ); @@ -59,7 +59,7 @@ test.describe( 'Site editor block removal prompt', () => { // Expect the block removal prompt to have appeared await expect( page.getByText( - 'Post or page content will not be displayed if you delete this block.' + 'Deleting this block will stop your post or page content from displaying on this template. It is not recommended.' ) ).toBeVisible(); } );