File tree 4 files changed +10
-10
lines changed
view/frontend/templates/account/dashboard
Sales/Controller/Adminhtml/Order 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -170,10 +170,10 @@ public function getManageNewsletterUrl()
170
170
public function getSubscriptionText ()
171
171
{
172
172
if ($ this ->getSubscriptionObject ()->isSubscribed ()) {
173
- return __ ('You subscribe to our newsletter. ' );
173
+ return __ ('You are subscribed to our newsletter. ' );
174
174
}
175
175
176
- return __ ('You don \'t subscribe to our newsletter. ' );
176
+ return __ ('You aren \'t subscribed to our newsletter. ' );
177
177
}
178
178
179
179
/**
Original file line number Diff line number Diff line change 1
1
"Sign Out","Sign Out"
2
2
"Sign In","Sign In"
3
- "You subscribe to our newsletter.","You subscribe to our newsletter."
4
- "You don\ 't subscribe to our newsletter.","You don\ 't subscribe to our newsletter."
3
+ "You are subscribed to our newsletter.","You are subscribed to our newsletter."
4
+ "You aren 't subscribed to our newsletter.","You aren 't subscribed to our newsletter."
5
5
"You have not set a default shipping address.","You have not set a default shipping address."
6
6
"You have not set a default billing address.","You have not set a default billing address."
7
7
"Address Book","Address Book"
@@ -308,7 +308,7 @@ Change,Change
308
308
"Contact Information","Contact Information"
309
309
"Change Password","Change Password"
310
310
Newsletters,Newsletters
311
- "You subscribe to ""General Subscription"".","You subscribe to ""General Subscription""."
311
+ "You are subscribed to ""General Subscription"".","You are subscribed to ""General Subscription""."
312
312
or,or
313
313
"Default Addresses","Default Addresses"
314
314
"Change Billing Address","Change Billing Address"
Original file line number Diff line number Diff line change 38
38
<div class="box-content">
39
39
<p>
40
40
<?php if ($ block ->getIsSubscribed ()): ?>
41
- <?php echo $ block ->escapeHtml (__ ('You subscribe to "General Subscription". ' )) ?>
41
+ <?php echo $ block ->escapeHtml (__ ('You are subscribed to "General Subscription". ' )) ?>
42
42
<?php else : ?>
43
- <?php echo $ block ->escapeHtml (__ ('You don \'t subscribe to our newsletter. ' )) ?>
43
+ <?php echo $ block ->escapeHtml (__ ('You aren \'t subscribed to our newsletter. ' )) ?>
44
44
<?php endif ; ?>
45
45
</p>
46
46
<?php /* Extensions placeholder */ ?>
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class Pdfshipments extends \Magento\Sales\Controller\Adminhtml\Order\AbstractMas
39
39
/**
40
40
* @var ShipmentCollectionFactory
41
41
*/
42
- protected $ shipmentCollectionFactotory ;
42
+ protected $ shipmentCollectionFactory ;
43
43
44
44
/**
45
45
* @param Context $context
@@ -63,7 +63,7 @@ public function __construct(
63
63
$ this ->dateTime = $ dateTime ;
64
64
$ this ->pdfShipment = $ shipment ;
65
65
$ this ->collectionFactory = $ collectionFactory ;
66
- $ this ->shipmentCollectionFactotory = $ shipmentCollectionFactory ;
66
+ $ this ->shipmentCollectionFactory = $ shipmentCollectionFactory ;
67
67
parent ::__construct ($ context , $ filter );
68
68
}
69
69
@@ -75,7 +75,7 @@ public function __construct(
75
75
*/
76
76
protected function massAction (AbstractCollection $ collection )
77
77
{
78
- $ shipmentsCollection = $ this ->shipmentCollectionFactotory
78
+ $ shipmentsCollection = $ this ->shipmentCollectionFactory
79
79
->create ()
80
80
->setOrderFilter (['in ' => $ collection ->getAllIds ()]);
81
81
if (!$ shipmentsCollection ->getSize ()) {
You can’t perform that action at this time.
0 commit comments