From 0f9e2d2c6605190299c984ed9e6ab9951c53c262 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 27 Jul 2021 11:27:58 +0000 Subject: [PATCH] Bundled Themes: Remove extra trailing spaces from translatable strings in block patterns. Follow-up to [49583], [51045]. Props audrasjb, mukesh27. Fixes #53774. Built from https://develop.svn.wordpress.org/trunk@51496 git-svn-id: http://core.svn.wordpress.org/trunk@51107 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfourteen/inc/block-patterns.php | 2 +- wp-content/themes/twentysixteen/inc/block-patterns.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyfourteen/inc/block-patterns.php b/wp-content/themes/twentyfourteen/inc/block-patterns.php index 5d653007e5..a6835d14ab 100644 --- a/wp-content/themes/twentyfourteen/inc/block-patterns.php +++ b/wp-content/themes/twentyfourteen/inc/block-patterns.php @@ -44,7 +44,7 @@ if ( function_exists( 'register_block_pattern' ) ) { 'title' => esc_html__( 'List', 'twentyfourteen' ), 'categories' => array( 'twentyfourteen' ), 'viewportWidth' => 1000, - 'content' => '

' . esc_html__( '2001', 'twentyfourteen' ) . '

' . esc_html__( 'My first year of traveling. I visited China, Thailand, Japan, and India.', 'twentyfourteen' ) . '


' . esc_html__( '2012', 'twentyfourteen' ) . '

' . esc_html__( 'In 2012, I expanded my travels to Europe. I spent time in Poland, Germany, Italy, France, and Spain. ', 'twentyfourteen' ) . '


' . esc_html__( '2016', 'twentyfourteen' ) . '

' . esc_html__( 'This year was devoted entirely to the western hemisphere. I went on a month-long road trip through the U.S.A. and Canada, and also visited Mexico, Brazil, and Colombia.', 'twentyfourteen' ) . '

', + 'content' => '

' . esc_html__( '2001', 'twentyfourteen' ) . '

' . esc_html__( 'My first year of traveling. I visited China, Thailand, Japan, and India.', 'twentyfourteen' ) . '


' . esc_html__( '2012', 'twentyfourteen' ) . '

' . esc_html__( 'In 2012, I expanded my travels to Europe. I spent time in Poland, Germany, Italy, France, and Spain.', 'twentyfourteen' ) . '


' . esc_html__( '2016', 'twentyfourteen' ) . '

' . esc_html__( 'This year was devoted entirely to the western hemisphere. I went on a month-long road trip through the U.S.A. and Canada, and also visited Mexico, Brazil, and Colombia.', 'twentyfourteen' ) . '

', ) ); diff --git a/wp-content/themes/twentysixteen/inc/block-patterns.php b/wp-content/themes/twentysixteen/inc/block-patterns.php index 69a80b2c4e..f5868cd716 100644 --- a/wp-content/themes/twentysixteen/inc/block-patterns.php +++ b/wp-content/themes/twentysixteen/inc/block-patterns.php @@ -70,7 +70,7 @@ if ( function_exists( 'register_block_pattern' ) ) {
-

' . esc_html__( 'The theme features a harmonious fluid grid using a mobile-first approach. The layout is a modern take on the horizontal masthead with an optional right sidebar. ', 'twentysixteen' ) . '

+

' . esc_html__( 'The theme features a harmonious fluid grid using a mobile-first approach. The layout is a modern take on the horizontal masthead with an optional right sidebar.', 'twentysixteen' ) . '

diff --git a/wp-includes/version.php b/wp-includes/version.php index e6f4144ce6..a72c0b8da9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51495'; +$wp_version = '5.9-alpha-51496'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.