diff --git a/packages/block-editor/src/store/actions.js b/packages/block-editor/src/store/actions.js index 24a08ecb21d6e..6edc5cb4da039 100644 --- a/packages/block-editor/src/store/actions.js +++ b/packages/block-editor/src/store/actions.js @@ -1673,17 +1673,9 @@ export const __unstableSetEditorMode = registry.dispatch( preferencesStore ).set( 'core', 'editorTool', mode ); if ( mode === 'navigation' ) { - speak( - __( - 'You are currently in navigation mode. Navigate blocks using the Tab key and Arrow keys. Use Left and Right Arrow keys to move between nesting levels. To exit navigation mode and edit the selected block, press Enter.' - ) - ); + speak( __( 'You are currently in Write mode.' ) ); } else if ( mode === 'edit' ) { - speak( - __( - 'You are currently in edit mode. To return to the navigation mode, press Escape.' - ) - ); + speak( __( 'You are currently in Design mode.' ) ); } };