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.

git-svn-id: https://develop.svn.wordpress.org/trunk@47194 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2020-02-05 19:07:33 +00:00
parent ddf2d5ad06
commit 3d43f46907
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -376,7 +376,7 @@ if ( 'post' == $post_type ) {
if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) {
$publish_box .= '<li>' . sprintf(
/* translators: %s: Featured Image. */
/* translators: %s: Featured image. */
__( '<strong>%s</strong> &mdash; This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.' ),
esc_html( $post_type_object->labels->featured_image )
) . '</li>';