i18n: remove HTML tags from translation strings

This commit is contained in:
Rami Yushuvaev
2019-08-27 01:48:27 +03:00
committed by M. Shull
parent 0b8e4662ca
commit 0ce622c32c

View File

@ -163,7 +163,7 @@ class NewsletterBlank121Column {
"blocks" => [
[
"type" => "text",
"text" => WPFunctions::get()->__("<h2>This template has...</h2>", 'mailpoet'),
"text" => WPFunctions::get()->'<h2>'.__('This template has...', 'mailpoet').'</h2>',
],
[
"type" => "text",
@ -182,11 +182,11 @@ class NewsletterBlank121Column {
"blocks" => [
[
"type" => "text",
"text" => WPFunctions::get()->__("<h2>... a 2-column layout.</h2>", 'mailpoet'),
"text" => WPFunctions::get()->'<h2>'.__('... a 2-column layout.', 'mailpoet').'</h2>',
],
[
"type" => "text",
"text" => WPFunctions::get()->__("<p>You can change a layout's background color by clicking on the settings icon on the right edge of the Designer. Simply hover over this area to see the Settings (gear) icon.</p>", 'mailpoet'),
"text" => WPFunctions::get()->'<p>'.__("You can change a layout's background color by clicking on the settings icon on the right edge of the Designer. Simply hover over this area to see the Settings (gear) icon.", 'mailpoet').'</p>',
],
],
],