Add new common translations

This commit is contained in:
Amine Ben hammou
2020-07-02 18:50:40 +02:00
committed by Veljko V
parent a4c5d81b6f
commit 24bfb67915
74 changed files with 204 additions and 205 deletions

View File

@ -1,9 +1,9 @@
<?php
namespace MailPoet\Config\PopulatorData\Templates;
use MailPoet\WP\Functions as WPFunctions;
class PostNotificationsBlank1Column {
private $assets_url;
@ -59,7 +59,7 @@ class PostNotificationsBlank1Column {
"blocks" => [
[
"type" => "header",
"text" => WPFunctions::get()->__("<a href=\"[link:newsletter_view_in_browser_url]\">View this in your browser.</a>", 'mailpoet'),
"text" => '<a href="[link:newsletter_view_in_browser_url]">' . WPFunctions::get()->__("View this in your browser.", 'mailpoet') . '</a>',
"styles" => [
"block" => [
"backgroundColor" => "transparent",
@ -284,7 +284,7 @@ class PostNotificationsBlank1Column {
],
[
"type" => "footer",
"text" => '<p><a href="[link:subscription_unsubscribe_url]">Unsubscribe</a> | <a href="[link:subscription_manage_url]">Manage your subscription</a><br />Add your postal address here!</p>',
"text" => '<p><a href="[link:subscription_unsubscribe_url]">' . WPFunctions::get()->__("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . WPFunctions::get()->__("Manage your subscription", 'mailpoet') . '</a><br />' . WPFunctions::get()->__("Add your postal address here!", 'mailpoet') . '</p>',
"styles" => [
"block" => [
"backgroundColor" => "transparent",
@ -345,5 +345,4 @@ class PostNotificationsBlank1Column {
private function getThumbnail() {
return $this->external_template_image_url . '/thumbnail.20190411-1500.jpg';
}
}