Skip to content

Commit

Permalink
Docs: Convert 'Block Editor' to lowercase.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ocean90 committed Oct 4, 2019
1 parent cd61107 commit 6f38c7f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion wp-admin/edit-form-blocks.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* The Block Editor page.
* The block editor page.
*
* @since 5.0.0
*
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/class-wp-editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ private static function get_translation() {
'Link options' => __( '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' ),
Expand Down
4 changes: 2 additions & 2 deletions wp-includes/js/tinymce/plugins/wordpress/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6f38c7f

Please sign in to comment.