From 6f38c7fb819962bcd1686d114b733ee1c7cdc70f Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Fri, 4 Oct 2019 20:12:58 +0000 Subject: [PATCH] Docs: Convert 'Block Editor' to lowercase. Props garrett-eclipse. Fixes #45634. Built from https://develop.svn.wordpress.org/trunk@46386 git-svn-id: http://core.svn.wordpress.org/trunk@46185 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-form-blocks.php | 2 +- wp-includes/class-wp-editor.php | 2 +- wp-includes/js/tinymce/plugins/wordpress/plugin.js | 4 ++-- wp-includes/version.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/edit-form-blocks.php b/wp-admin/edit-form-blocks.php index e1967dd329..eca1d9954e 100644 --- a/wp-admin/edit-form-blocks.php +++ b/wp-admin/edit-form-blocks.php @@ -1,6 +1,6 @@ __( 'Link options' ), // Tooltip for the 'link options' button in the inline link dialog 'Visual' => _x( 'Visual', 'Name for the Visual editor tab' ), // Editor switch tab label 'Text' => _x( 'Text', 'Name for the Text editor tab (formerly HTML)' ), // Editor switch tab label - 'Add Media' => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the Block Editor Classic block + 'Add Media' => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the block editor Classic block // Shortcuts help modal 'Keyboard Shortcuts' => array( __( 'Keyboard Shortcuts' ), 'accessH' ), diff --git a/wp-includes/js/tinymce/plugins/wordpress/plugin.js b/wp-includes/js/tinymce/plugins/wordpress/plugin.js index 7c8161b63b..b7848cd987 100644 --- a/wp-includes/js/tinymce/plugins/wordpress/plugin.js +++ b/wp-includes/js/tinymce/plugins/wordpress/plugin.js @@ -638,12 +638,12 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) { } } ); - // Alt+Shift+Z removes a block in the Block Editor, don't add it to the Classic Block. + // Alt+Shift+Z removes a block in the block editor, don't add it to the Classic block. if ( ! editor.settings.classic_block_editor ) { editor.addShortcut( 'access+z', '', 'WP_Adv' ); } - // Workaround for not triggering the global help modal in the Block Editor by the Classic Block shortcut. + // Workaround for not triggering the global help modal in the block editor by the Classic block shortcut. editor.on( 'keydown', function( event ) { var match; diff --git a/wp-includes/version.php b/wp-includes/version.php index 4b55ddbc57..1bd6171035 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-beta2-46385'; +$wp_version = '5.3-beta2-46386'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.