Commit 74b593f2d2 for wordpress.org

commit 74b593f2d231c50c2ee34e61e13dd881e8dc1b70
Author: desrosj <desrosj@git.wordpress.org>
Date:   Mon Nov 18 17:35:17 2024 +0000

    Editor: Use sentence casing for “Call to action”.

    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

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.