From 92f66488a39a3bb8346e7f2c4de036b044e37de5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 25 Jul 2020 16:39:05 +0000 Subject: [PATCH] I18N: Remove `` tags in `invalid_rest_prepare_callback` error message in `register_theme_feature()` for consistency with other strings. Follow-up to [48611]. See #50758. Built from https://develop.svn.wordpress.org/trunk@48612 git-svn-id: http://core.svn.wordpress.org/trunk@48374 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index df297a5634..bdd1ec3f60 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -3124,8 +3124,8 @@ function register_theme_feature( $feature, $args = array() ) { 'invalid_rest_prepare_callback', sprintf( /* translators: %s: prepare_callback */ - __( 'The %s must be a callable function.' ), - 'prepare_callback' + __( 'The "%s" must be a callable function.' ), + 'prepare_callback' ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 4dee5617bc..ed5695fa27 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-beta3-48611'; +$wp_version = '5.5-beta3-48612'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.