From cb21f801b0c8a48d7800e0c7aa438e95efdc2e0b Mon Sep 17 00:00:00 2001 From: Riad Benguella Date: Mon, 10 Aug 2020 10:07:03 +0100 Subject: [PATCH] Revert "Block patterns: Fix translatable strings (#24317)" This reverts commit 29c23603e2a8df2008ec153b6a08b3c9329385dc. --- lib/patterns/large-header.php | 4 ++-- lib/patterns/quote.php | 2 +- lib/patterns/two-images.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/patterns/large-header.php b/lib/patterns/large-header.php index 05e59a1da5d85..185a4d046fc83 100644 --- a/lib/patterns/large-header.php +++ b/lib/patterns/large-header.php @@ -6,8 +6,8 @@ */ return array( - 'title' => __( 'Large header with a heading', 'gutenberg' ), - 'content' => "\n
\n

" . __( 'Don Quixote', 'gutenberg' ) . "

\n
\n", + 'title' => __( 'Large header', 'gutenberg' ), + 'content' => "\n
\n
\n

" . __( 'Loomings', 'gutenberg' ) . "

\n
\n
\n", 'viewportWidth' => 1000, 'categories' => array( 'header' ), ); diff --git a/lib/patterns/quote.php b/lib/patterns/quote.php index c65459c86eca4..a53ea804164a4 100644 --- a/lib/patterns/quote.php +++ b/lib/patterns/quote.php @@ -7,7 +7,7 @@ return array( 'title' => __( 'Quote', 'gutenberg' ), - 'content' => "\n
\n
\""
\n\n\n\n

" . __( '"Do you see over yonder, friend Sancho, thirty or forty hulking giants? I intend to do battle with them and slay them."', 'gutenberg' ) . '

' . __( '— Don Quixote', 'gutenberg' ) . "
\n\n\n\n
\n
\n", + 'content' => "\n

" . __( '"I know not all that may be coming, but be it what it will, I\'ll go to it laughing."', 'gutenberg' ) . '

' . __( '— Herman Melville, Moby-Dick (1851)', 'gutenberg' ) . "
\n", 'viewportWidth' => 800, 'categories' => array( 'text' ), ); diff --git a/lib/patterns/two-images.php b/lib/patterns/two-images.php index 6b71853f3f970..e565a18620895 100644 --- a/lib/patterns/two-images.php +++ b/lib/patterns/two-images.php @@ -8,6 +8,6 @@ return array( 'title' => __( 'Two images side by side', 'gutenberg' ), 'categories' => array( 'gallery' ), - 'description' => _x( 'An image gallery with two example images.', 'Block pattern description', 'gutenberg' ), - 'content' => "\n\n", + 'description' => _x( 'An image gallery with two cropped example images.', 'Block pattern description', 'gutenberg' ), + 'content' => "\n\n", );