From 5cd71f42499173e6d6f10a20a4b066f3aab77e34 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Mon, 30 Nov 2020 03:46:47 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20split=20translatable=20strings?= =?UTF-8?q?=20in=20block=20templates=20(#27361)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Don’t split translatable strings in block templates * adding missing text-domain --- lib/patterns/large-header-button.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/patterns/large-header-button.php b/lib/patterns/large-header-button.php index bed0ce49062d50..75519963485e07 100644 --- a/lib/patterns/large-header-button.php +++ b/lib/patterns/large-header-button.php @@ -7,7 +7,7 @@ return array( 'title' => __( 'Large header with a heading and a button ', 'gutenberg' ), - 'content' => "\n
\n
\n
\n
\n
\n\n\n\n
\n
\n\n\n\n

" . __( 'Thou hast seen', 'gutenberg' ) . '
' . __( 'nothing yet', 'gutenberg' ) . "

\n\n\n\n\n\n\n\n
\n
\n\n\n\n
\n
\n
\n
\n
\n", + 'content' => "\n
\n
\n
\n
\n
\n\n\n\n
\n
\n\n\n\n

" . __( 'Thou hast seen
nothing yet', 'gutenberg' ) . "

\n\n\n\n\n\n\n\n
\n
\n\n\n\n
\n
\n
\n
\n
\n", 'categories' => array( 'header' ), 'description' => _x( 'A large hero section with a bright gradient background, a big heading and a filled button.', 'Block pattern description', 'gutenberg' ), );