From d085349cf5760294d1bdbc3f01e30a483d921f5d Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Tue, 11 Jan 2022 15:16:37 +0000 Subject: [PATCH] Site Editor: Fix typo in home template translatable description. The home template's description should be: "Displays as the site's home page, or as the Posts page when a static home page isn't set." This commit fixes the typo changing "it" to "isn't". Follow-up to [52331]. Props kharisblank, talldanwp. Fixes #54787. git-svn-id: https://develop.svn.wordpress.org/trunk@52554 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/block-template-utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/block-template-utils.php b/src/wp-includes/block-template-utils.php index f1660ed643..20ca871028 100644 --- a/src/wp-includes/block-template-utils.php +++ b/src/wp-includes/block-template-utils.php @@ -119,7 +119,7 @@ function get_default_block_template_types() { ), 'home' => array( 'title' => _x( 'Home', 'Template name' ), - 'description' => __( 'Displays as the site\'s home page, or as the Posts page when a static home page it set.' ), + 'description' => __( 'Displays as the site\'s home page, or as the Posts page when a static home page isn\'t set.' ), ), 'front-page' => array( 'title' => _x( 'Front Page', 'Template name' ),