From 2a0d8fcd645e0df939eed588b1cc832e568a1150 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 19 Nov 2023 11:35:09 +0000 Subject: [PATCH] Twenty Twenty-Four: Add missing textdomain in pattern category description. Follow-up to [56951]. Props gavande1, acosmin, afercia, huzaifaalmesbah, ironprogrammer. Fixes #59840. git-svn-id: https://develop.svn.wordpress.org/trunk@57127 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentytwentyfour/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-content/themes/twentytwentyfour/functions.php b/src/wp-content/themes/twentytwentyfour/functions.php index deb0ab1d1e..baee062f6f 100644 --- a/src/wp-content/themes/twentytwentyfour/functions.php +++ b/src/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' ), ) ); }