Use the shortcut for translation function
[MAILPOET-3628]
This commit is contained in:
@ -57,7 +57,7 @@ class API {
|
|||||||
$data = [
|
$data = [
|
||||||
[
|
[
|
||||||
'id' => 'email',
|
'id' => 'email',
|
||||||
'name' => WPFunctions::get()->__('Email', 'mailpoet'),
|
'name' => __('Email', 'mailpoet'),
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'params' => [
|
'params' => [
|
||||||
'required' => '1',
|
'required' => '1',
|
||||||
@ -65,7 +65,7 @@ class API {
|
|||||||
],
|
],
|
||||||
[
|
[
|
||||||
'id' => 'first_name',
|
'id' => 'first_name',
|
||||||
'name' => WPFunctions::get()->__('First name', 'mailpoet'),
|
'name' => __('First name', 'mailpoet'),
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'params' => [
|
'params' => [
|
||||||
'required' => '',
|
'required' => '',
|
||||||
@ -73,7 +73,7 @@ class API {
|
|||||||
],
|
],
|
||||||
[
|
[
|
||||||
'id' => 'last_name',
|
'id' => 'last_name',
|
||||||
'name' => WPFunctions::get()->__('Last name', 'mailpoet'),
|
'name' => __('Last name', 'mailpoet'),
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'params' => [
|
'params' => [
|
||||||
'required' => '',
|
'required' => '',
|
||||||
@ -181,7 +181,7 @@ class API {
|
|||||||
$subscriber->save();
|
$subscriber->save();
|
||||||
if ($subscriber->getErrors() !== false) {
|
if ($subscriber->getErrors() !== false) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__(sprintf('Failed to save a status of a subscriber : %s', strtolower(implode(', ', $subscriber->getErrors()))), 'mailpoet'),
|
__(sprintf('Failed to save a status of a subscriber : %s', strtolower(implode(', ', $subscriber->getErrors()))), 'mailpoet'),
|
||||||
APIException::FAILED_TO_SAVE_SUBSCRIBER
|
APIException::FAILED_TO_SAVE_SUBSCRIBER
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -197,7 +197,7 @@ class API {
|
|||||||
$result = $this->_sendConfirmationEmail($subscriber);
|
$result = $this->_sendConfirmationEmail($subscriber);
|
||||||
if (!$result && $subscriber->getErrors()) {
|
if (!$result && $subscriber->getErrors()) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__(sprintf('Subscriber added to lists, but confirmation email failed to send: %s', strtolower(implode(', ', $subscriber->getErrors()))), 'mailpoet'),
|
__(sprintf('Subscriber added to lists, but confirmation email failed to send: %s', strtolower(implode(', ', $subscriber->getErrors()))), 'mailpoet'),
|
||||||
APIException::CONFIRMATION_FAILED_TO_SEND);
|
APIException::CONFIRMATION_FAILED_TO_SEND);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -270,7 +270,7 @@ class API {
|
|||||||
// throw exception when subscriber email is missing
|
// throw exception when subscriber email is missing
|
||||||
if (empty($subscriber['email'])) {
|
if (empty($subscriber['email'])) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__('Subscriber email address is required.', 'mailpoet'),
|
__('Subscriber email address is required.', 'mailpoet'),
|
||||||
APIException::EMAIL_ADDRESS_REQUIRED
|
APIException::EMAIL_ADDRESS_REQUIRED
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -278,7 +278,7 @@ class API {
|
|||||||
// throw exception when subscriber already exists
|
// throw exception when subscriber already exists
|
||||||
if (Subscriber::findOne($subscriber['email'])) {
|
if (Subscriber::findOne($subscriber['email'])) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__('This subscriber already exists.', 'mailpoet'),
|
__('This subscriber already exists.', 'mailpoet'),
|
||||||
APIException::SUBSCRIBER_EXISTS
|
APIException::SUBSCRIBER_EXISTS
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -305,7 +305,7 @@ class API {
|
|||||||
$newSubscriber->save();
|
$newSubscriber->save();
|
||||||
if ($newSubscriber->getErrors() !== false) {
|
if ($newSubscriber->getErrors() !== false) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__(sprintf('Failed to add subscriber: %s', strtolower(implode(', ', $newSubscriber->getErrors()))), 'mailpoet'),
|
__(sprintf('Failed to add subscriber: %s', strtolower(implode(', ', $newSubscriber->getErrors()))), 'mailpoet'),
|
||||||
APIException::FAILED_TO_SAVE_SUBSCRIBER
|
APIException::FAILED_TO_SAVE_SUBSCRIBER
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -331,7 +331,7 @@ class API {
|
|||||||
// throw exception when list name is missing
|
// throw exception when list name is missing
|
||||||
if (empty($list['name'])) {
|
if (empty($list['name'])) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__('List name is required.', 'mailpoet'),
|
__('List name is required.', 'mailpoet'),
|
||||||
APIException::LIST_NAME_REQUIRED
|
APIException::LIST_NAME_REQUIRED
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -339,7 +339,7 @@ class API {
|
|||||||
// throw exception when list already exists
|
// throw exception when list already exists
|
||||||
if (Segment::where('name', $list['name'])->findOne()) {
|
if (Segment::where('name', $list['name'])->findOne()) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__('This list already exists.', 'mailpoet'),
|
__('This list already exists.', 'mailpoet'),
|
||||||
APIException::LIST_EXISTS
|
APIException::LIST_EXISTS
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -353,7 +353,7 @@ class API {
|
|||||||
$newList->save();
|
$newList->save();
|
||||||
if ($newList->getErrors() !== false) {
|
if ($newList->getErrors() !== false) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__(sprintf('Failed to add list: %s', strtolower(implode(', ', $newList->getErrors()))), 'mailpoet'),
|
__(sprintf('Failed to add list: %s', strtolower(implode(', ', $newList->getErrors()))), 'mailpoet'),
|
||||||
APIException::FAILED_TO_SAVE_LIST
|
APIException::FAILED_TO_SAVE_LIST
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -361,7 +361,7 @@ class API {
|
|||||||
// reload list to get the saved created|updated|delete dates/other fields
|
// reload list to get the saved created|updated|delete dates/other fields
|
||||||
$newList = Segment::findOne($newList->id);
|
$newList = Segment::findOne($newList->id);
|
||||||
if (!$newList instanceof Segment) {
|
if (!$newList instanceof Segment) {
|
||||||
throw new APIException(WPFunctions::get()->__('Failed to add list', 'mailpoet'), APIException::FAILED_TO_SAVE_LIST);
|
throw new APIException(__('Failed to add list', 'mailpoet'), APIException::FAILED_TO_SAVE_LIST);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $newList->asArray();
|
return $newList->asArray();
|
||||||
@ -386,7 +386,7 @@ class API {
|
|||||||
foreach ($result as $queue) {
|
foreach ($result as $queue) {
|
||||||
if ($queue instanceof Sending && $queue->getErrors()) {
|
if ($queue instanceof Sending && $queue->getErrors()) {
|
||||||
throw new APIException(
|
throw new APIException(
|
||||||
WPFunctions::get()->__(sprintf('Subscriber added, but welcome email failed to send: %s', strtolower(implode(', ', $queue->getErrors()))), 'mailpoet'),
|
__(sprintf('Subscriber added, but welcome email failed to send: %s', strtolower(implode(', ', $queue->getErrors()))), 'mailpoet'),
|
||||||
APIException::WELCOME_FAILED_TO_SEND
|
APIException::WELCOME_FAILED_TO_SEND
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user