From bfacfb3014d5768d114bb6a6400abe1c2b4894d7 Mon Sep 17 00:00:00 2001 From: Huub <50170696+huubl@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:34:19 +0200 Subject: [PATCH] Revert "Update tools menus with Write / Design order (#65721)" This reverts commit 65b036b97b4ba0b1ee8b23bad7ae8fe1dbe6175c. --- .../src/components/tool-selector/index.js | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/packages/block-editor/src/components/tool-selector/index.js b/packages/block-editor/src/components/tool-selector/index.js index fbaf8af5fac688..53fab037ba3684 100644 --- a/packages/block-editor/src/components/tool-selector/index.js +++ b/packages/block-editor/src/components/tool-selector/index.js @@ -71,31 +71,33 @@ function ToolSelector( props, ref ) { onSelect={ __unstableSetEditorMode } choices={ [ { - value: 'navigation', + value: 'edit', label: ( <> - - { __( 'Write' ) } + { selectIcon } + { __( 'Design' ) } ), - info: __( 'Focus on content.' ), + info: __( + 'Full control over layout and styling.' + ), }, { - value: 'edit', + value: 'navigation', label: ( <> - { selectIcon } - { __( 'Design' ) } + + { __( 'Edit' ) } ), - info: __( 'Edit layout and styles.' ), + info: __( 'Focus on content.' ), }, ] } />
{ __( - 'Tools provide different sets of interactions for blocks. Toggle between simplified content tools (Write) and advanced visual editing tools (Design).' + 'Tools provide different interactions for selecting, navigating, and editing blocks. Toggle between select and edit by pressing Escape and Enter.' ) }