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 08f3deccb5ae08..6d3763da093a32 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 @@ -52,19 +52,30 @@ export function BlockRemovalWarningModal( { rules } ) { onRequestClose={ clearBlockRemovalPrompt } > { blockNamesForPrompt.length === 1 ? ( -

{ rules[ blockNamesForPrompt[ 0 ] ] }

+

+ { rules[ blockNamesForPrompt[ 0 ] ] }{ ' ' } + { __( + "Only proceed to remove this block if you're absolutely sure of what you're doing." + ) }{ ' ' } +

) : ( - + <> + +

+ { ' ' } + { __( + "Only proceed to remove these blocks if you're absolutely sure of what you're doing." + ) } +

+ ) } -

- { blockNamesForPrompt.length > 1 - ? __( 'Removing these blocks is not advised.' ) - : __( 'Removing this block is not advised.' ) } -

+