Use __() instead of \MailPoet\WP\Functions::__()

[MAILPOET-3036]
This commit is contained in:
Rodrigo Primo
2021-03-30 14:20:19 -03:00
committed by Veljko V
parent 5f262e6b04
commit 4b5f044f6b

View File

@ -5,7 +5,6 @@ namespace MailPoet\Form\Listing;
use MailPoet\Entities\FormEntity; use MailPoet\Entities\FormEntity;
use MailPoet\Listing\ListingDefinition; use MailPoet\Listing\ListingDefinition;
use MailPoet\Listing\ListingRepository; use MailPoet\Listing\ListingRepository;
use MailPoet\WP\Functions as WPFunctions;
use MailPoetVendor\Doctrine\ORM\QueryBuilder; use MailPoetVendor\Doctrine\ORM\QueryBuilder;
class FormListingRepository extends ListingRepository { class FormListingRepository extends ListingRepository {
@ -29,12 +28,12 @@ class FormListingRepository extends ListingRepository {
return [ return [
[ [
'name' => 'all', 'name' => 'all',
'label' => WPFunctions::get()->__('All', 'mailpoet'), 'label' => __('All', 'mailpoet'),
'count' => $totalCount, 'count' => $totalCount,
], ],
[ [
'name' => 'trash', 'name' => 'trash',
'label' => WPFunctions::get()->__('Trash', 'mailpoet'), 'label' => __('Trash', 'mailpoet'),
'count' => $trashedCount, 'count' => $trashedCount,
], ],
]; ];