From 68527aead012c8524b90ce121209087fed495da6 Mon Sep 17 00:00:00 2001 From: Riad Benguella Date: Thu, 28 Nov 2019 15:00:38 +0100 Subject: [PATCH] Tweak the navigation mode message --- packages/block-editor/src/store/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/block-editor/src/store/actions.js b/packages/block-editor/src/store/actions.js index 06ef92914ab811..775c89fbd38c7a 100644 --- a/packages/block-editor/src/store/actions.js +++ b/packages/block-editor/src/store/actions.js @@ -806,7 +806,7 @@ export function * setNavigationMode( isNavigationMode = true ) { }; if ( isNavigationMode ) { - speak( __( 'You are currently in navigation mode. Navigate blocks using arrow keys. To exit navigation mode and edit the selected block, press Enter.' ) ); + speak( __( 'You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.' ) ); } else { speak( __( 'You are currently in edit mode. To return to the navigation mode, press Escape.' ) ); }