From 4f4ed4d8d17f4d8ceaa6f9c932da16de24d2a158 Mon Sep 17 00:00:00 2001 From: Matias Ventura Date: Mon, 30 Sep 2024 22:01:41 +0200 Subject: [PATCH] Update tools menus with Write / Design order (#65721) * Update tools menus: - Write / Design order - Change description copy * update tools help text --------- Co-authored-by: mtias Co-authored-by: richtabor Co-authored-by: provenself --- .../src/components/tool-selector/index.js | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/packages/block-editor/src/components/tool-selector/index.js b/packages/block-editor/src/components/tool-selector/index.js index 53fab037ba3684..fbaf8af5fac688 100644 --- a/packages/block-editor/src/components/tool-selector/index.js +++ b/packages/block-editor/src/components/tool-selector/index.js @@ -71,33 +71,31 @@ function ToolSelector( props, ref ) { onSelect={ __unstableSetEditorMode } choices={ [ { - value: 'edit', + value: 'navigation', label: ( <> - { selectIcon } - { __( 'Design' ) } + + { __( 'Write' ) } ), - info: __( - 'Full control over layout and styling.' - ), + info: __( 'Focus on content.' ), }, { - value: 'navigation', + value: 'edit', label: ( <> - - { __( 'Edit' ) } + { selectIcon } + { __( 'Design' ) } ), - info: __( 'Focus on content.' ), + info: __( 'Edit layout and styles.' ), }, ] } />
{ __( - 'Tools provide different interactions for selecting, navigating, and editing blocks. Toggle between select and edit by pressing Escape and Enter.' + 'Tools provide different sets of interactions for blocks. Toggle between simplified content tools (Write) and advanced visual editing tools (Design).' ) }