From 74b593f2d231c50c2ee34e61e13dd881e8dc1b70 Mon Sep 17 00:00:00 2001 From: desrosj Date: Mon, 18 Nov 2024 17:35:17 +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. Built from https://develop.svn.wordpress.org/trunk@59412 git-svn-id: http://core.svn.wordpress.org/trunk@58798 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/block-patterns.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/block-patterns.php b/wp-includes/block-patterns.php index 851898d006..f1a24cdf72 100644 --- a/wp-includes/block-patterns.php +++ b/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.' ), ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 3e2d9added..2534a27871 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59410'; +$wp_version = '6.8-alpha-59412'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.