From 439221cc25693700d98f99323d338bb504e26aae Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Mon, 18 Nov 2024 17:33:23 +0000 Subject: [PATCH] =?UTF-8?q?Editor:=20Use=20sentence=20casing=20for=20?= =?UTF-8?q?=E2=80=9CCall=20to=20action=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is more consistent with other strings and occurrences of this string. Props juanfra, joen, narenin, mukesh27. See #62414. git-svn-id: https://develop.svn.wordpress.org/trunk@59412 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/block-patterns.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/block-patterns.php b/src/wp-includes/block-patterns.php index 851898d006a98..f1a24cdf72fe1 100644 --- a/src/wp-includes/block-patterns.php +++ b/src/wp-includes/block-patterns.php @@ -74,7 +74,7 @@ function _register_core_block_patterns_and_categories() { register_block_pattern_category( 'call-to-action', array( - 'label' => _x( 'Call to Action', 'Block pattern category' ), + 'label' => _x( 'Call to action', 'Block pattern category' ), 'description' => __( 'Sections whose purpose is to trigger a specific action.' ), ) );