Make WordPress Core


Ignore:
Timestamp:
08/19/2020 01:38:56 PM (4 years ago)
Author:
desrosj
Message:

Editor: Update the post type labels for the reusable blocks post type.

Previously, the labels for the reusable block post type were just “block”. The document settings tab in the block editor has been changed to use the post type label specified instead to be more specific. Changing the reusable block post type labels to “reusable block” prevents two “Block” tabs from showing in the editor.

Props desaiuditd, peterwilsoncc.
Fixes #50755.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/post.php

    r48782 r48829  
    260260        array(
    261261            'labels'                => array(
    262                 'name'                     => _x( 'Blocks', 'post type general name' ),
    263                 'singular_name'            => _x( 'Block', 'post type singular name' ),
    264                 'menu_name'                => _x( 'Blocks', 'admin menu' ),
    265                 'name_admin_bar'           => _x( 'Block', 'add new on admin bar' ),
    266                 'add_new'                  => _x( 'Add New', 'Block' ),
    267                 'add_new_item'             => __( 'Add New Block' ),
    268                 'new_item'                 => __( 'New Block' ),
    269                 'edit_item'                => __( 'Edit Block' ),
    270                 'view_item'                => __( 'View Block' ),
    271                 'all_items'                => __( 'All Blocks' ),
    272                 'search_items'             => __( 'Search Blocks' ),
    273                 'not_found'                => __( 'No blocks found.' ),
    274                 'not_found_in_trash'       => __( 'No blocks found in Trash.' ),
    275                 'filter_items_list'        => __( 'Filter blocks list' ),
    276                 'items_list_navigation'    => __( 'Blocks list navigation' ),
    277                 'items_list'               => __( 'Blocks list' ),
    278                 'item_published'           => __( 'Block published.' ),
    279                 'item_published_privately' => __( 'Block published privately.' ),
    280                 'item_reverted_to_draft'   => __( 'Block reverted to draft.' ),
    281                 'item_scheduled'           => __( 'Block scheduled.' ),
    282                 'item_updated'             => __( 'Block updated.' ),
     262                'name'                     => _x( 'Reusable Blocks', 'post type general name' ),
     263                'singular_name'            => _x( 'Reusable Block', 'post type singular name' ),
     264                'menu_name'                => _x( 'Reusable Blocks', 'admin menu' ),
     265                'name_admin_bar'           => _x( 'Reusable Block', 'add new on admin bar' ),
     266                'add_new'                  => _x( 'Add New', 'Reusable Block' ),
     267                'add_new_item'             => __( 'Add New Reusable Block' ),
     268                'new_item'                 => __( 'New Reusable Block' ),
     269                'edit_item'                => __( 'Edit Reusable Block' ),
     270                'view_item'                => __( 'View Reusable Block' ),
     271                'all_items'                => __( 'All Reusable Blocks' ),
     272                'search_items'             => __( 'Search Reusable Blocks' ),
     273                'not_found'                => __( 'No reusable blocks found.' ),
     274                'not_found_in_trash'       => __( 'No reusable blocks found in Trash.' ),
     275                'filter_items_list'        => __( 'Filter reusable blocks list' ),
     276                'items_list_navigation'    => __( 'Reusable Blocks list navigation' ),
     277                'items_list'               => __( 'Reusable Blocks list' ),
     278                'item_published'           => __( 'Reusable Block published.' ),
     279                'item_published_privately' => __( 'Reusable Block published privately.' ),
     280                'item_reverted_to_draft'   => __( 'Reusable Block reverted to draft.' ),
     281                'item_scheduled'           => __( 'Reusable Block scheduled.' ),
     282                'item_updated'             => __( 'Reusable Block updated.' ),
    283283            ),
    284284            'public'                => false,
Note: See TracChangeset for help on using the changeset viewer.