Make WordPress Core


Ignore:
Timestamp:
02/05/2020 07:07:33 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Posts, Post Types: Change "Featured Image" post label to use sentence case: "Featured image".

This makes it more consistent with other UI elements in the block editor.

Props mcsf.
Fixes #49371.

File:
1 edited

Legend:

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

    r47122 r47194  
    16471647 * - `uploaded_to_this_item` - Label for the media frame filter. Default is 'Uploaded to this post' /
    16481648 *                           'Uploaded to this page'.
    1649  * - `featured_image` - Label for the Featured Image meta box title. Default is 'Featured Image'.
     1649 * - `featured_image` - Label for the featured image meta box title. Default is 'Featured image'.
    16501650 * - `set_featured_image` - Label for setting the featured image. Default is 'Set featured image'.
    16511651 * - `remove_featured_image` - Label for removing the featured image. Default is 'Remove featured image'.
     
    17051705        'insert_into_item'         => array( __( 'Insert into post' ), __( 'Insert into page' ) ),
    17061706        'uploaded_to_this_item'    => array( __( 'Uploaded to this post' ), __( 'Uploaded to this page' ) ),
    1707         'featured_image'           => array( _x( 'Featured Image', 'post' ), _x( 'Featured Image', 'page' ) ),
     1707        'featured_image'           => array( _x( 'Featured image', 'post' ), _x( 'Featured image', 'page' ) ),
    17081708        'set_featured_image'       => array( _x( 'Set featured image', 'post' ), _x( 'Set featured image', 'page' ) ),
    17091709        'remove_featured_image'    => array( _x( 'Remove featured image', 'post' ), _x( 'Remove featured image', 'page' ) ),
Note: See TracChangeset for help on using the changeset viewer.