From 5277ebbe4db824e9dfb6c68b95632295eb453c6b Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 18 Jan 2024 03:01:12 +0000 Subject: [PATCH] Twenty Twenty-Four: Add missing textdomain in pattern category description. Follow-up to [56951]. Reviewed by jorbin. Merges [57127] to the 6.4 branch. Props gavande1, acosmin, afercia, huzaifaalmesbah, ironprogrammer, SergeyBiryukov. Fixes #59840. Built from https://develop.svn.wordpress.org/branches/6.4@57307 git-svn-id: http://core.svn.wordpress.org/branches/6.4@56813 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwentyfour/functions.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentytwentyfour/functions.php b/wp-content/themes/twentytwentyfour/functions.php index deb0ab1d1e..baee062f6f 100644 --- a/wp-content/themes/twentytwentyfour/functions.php +++ b/wp-content/themes/twentytwentyfour/functions.php @@ -196,8 +196,8 @@ if ( ! function_exists( 'twentytwentyfour_pattern_categories' ) ) : register_block_pattern_category( 'page', array( - 'label' => _x( 'Pages', 'Block pattern category' ), - 'description' => __( 'A collection of full page layouts.' ), + 'label' => _x( 'Pages', 'Block pattern category', 'twentytwentyfour' ), + 'description' => __( 'A collection of full page layouts.', 'twentytwentyfour' ), ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 1c95865cd4..a8097de5e6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4.3-alpha-57297'; +$wp_version = '6.4.3-alpha-57307'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.