Make WordPress Core

Changeset 46386


Ignore:
Timestamp:
10/04/2019 08:11:20 PM (4 years ago)
Author:
ocean90
Message:

Docs: Convert 'Block Editor' to lowercase.

Props garrett-eclipse.
Fixes #45634.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js

    r45620 r46386  
    639639        } );
    640640
    641         // Alt+Shift+Z removes a block in the Block Editor, don't add it to the Classic Block.
     641        // Alt+Shift+Z removes a block in the block editor, don't add it to the Classic block.
    642642        if ( ! editor.settings.classic_block_editor ) {
    643643            editor.addShortcut( 'access+z', '', 'WP_Adv' );
    644644        }
    645645
    646         // Workaround for not triggering the global help modal in the Block Editor by the Classic Block shortcut.
     646        // Workaround for not triggering the global help modal in the block editor by the Classic block shortcut.
    647647        editor.on( 'keydown', function( event ) {
    648648            var match;
  • trunk/src/wp-admin/edit-form-blocks.php

    r46110 r46386  
    11<?php
    22/**
    3  * The Block Editor page.
     3 * The block editor page.
    44 *
    55 * @since 5.0.0
  • trunk/src/wp-includes/class-wp-editor.php

    r46326 r46386  
    12951295                'Visual'                               => _x( 'Visual', 'Name for the Visual editor tab' ), // Editor switch tab label
    12961296                'Text'                                 => _x( 'Text', 'Name for the Text editor tab (formerly HTML)' ), // Editor switch tab label
    1297                 'Add Media'                            => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the Block Editor Classic block
     1297                'Add Media'                            => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the block editor Classic block
    12981298
    12991299                // Shortcuts help modal
Note: See TracChangeset for help on using the changeset viewer.