Skip to content

Commit 3a6c332

Browse files
author
Dmytro Vilchynskyi
committed
MAGETWO-36131: Update Content in Magento 2 by Modules - part 3
- content for several modules was changed
1 parent 9523463 commit 3a6c332

File tree

102 files changed

+143
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+143
-140
lines changed

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function _prepareForm()
7272

7373
$fieldset = $form->addFieldset(
7474
'front_fieldset',
75-
['legend' => __('Frontend Properties'), 'collapsable' => $this->getRequest()->has('popup')]
75+
['legend' => __('Storefront Properties'), 'collapsable' => $this->getRequest()->has('popup')]
7676
);
7777

7878
$fieldset->addField(

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ protected function _beforeToHtml()
4949
$this->addTab(
5050
'front',
5151
[
52-
'label' => __('Frontend Properties'),
53-
'title' => __('Frontend Properties'),
52+
'label' => __('Storefront Properties'),
53+
'title' => __('Storefront Properties'),
5454
'content' => $this->getChildHtml('front')
5555
]
5656
);

app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function execute()
8686
return $this->resultRedirectFactory->create()->setUrl($this->_redirect->getRedirectUrl($cartUrl));
8787
}
8888
} catch (\Exception $e) {
89-
$this->messageManager->addException($e, __('We cannot update the item.'));
89+
$this->messageManager->addException($e, __('We can\'t update the item right now.'));
9090
$this->_objectManager->get('Psr\Log\LoggerInterface')->critical($e);
9191
return $this->_goBack();
9292
}

app/code/Magento/Checkout/Model/Type/Onepage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ protected function _involveNewCustomer()
907907
$this->messageManager->addSuccess(
908908
// @codingStandardsIgnoreStart
909909
__(
910-
'Account confirmation is required. Please, check your e-mail for confirmation link. To resend confirmation email please <a href="%1">click here</a>.',
910+
'Account confirmation is required. Please check your email for confirmation link. To resend confirmation email please <a href="%1">click here</a>.',
911911
$url
912912
)
913913
// @codingStandardsIgnoreEnd

app/code/Magento/Checkout/view/frontend/templates/onepage/shipping_method/available.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<?php /** @var $block \Magento\Checkout\Block\Onepage\Shipping\Method\Available */ ?>
1515
<?php $_shippingRateGroups = $block->getShippingRates(); ?>
1616
<?php if (!$_shippingRateGroups): ?>
17-
<p><?php echo __('Sorry, no quotes are available for this order at this time.') ?></p>
17+
<p><?php echo __('Sorry, no quotes are available for this order right now.') ?></p>
1818
<?php else: ?>
1919
<dl class="items methods-shipping">
2020
<?php $shippingCodePrice = []; ?>

app/code/Magento/Checkout/view/frontend/web/template/shipping-method.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h2 data-bind="text: $t('Shipping Method')"></h2>
1616
aria-hidden="false"
1717
data-bind="fadeVisible: isVisible() && quoteHasShippingAddress()">
1818
<!-- ko if: rates().length == 0 -->
19-
<!-- ko text: $t('Sorry, no quotes are available for this order at this time')--><!-- /ko -->
19+
<!-- ko text: $t('Sorry, no quotes are available for this order right now.')--><!-- /ko -->
2020
<!-- /ko -->
2121
<!-- ko if: rates().length -->
2222
<form class="form methods-shipping" id="co-shipping-method-form" data-bind="submit: setShippingMethod" novalidate="novalidate">

app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ protected function _prepareColumns()
111111

112112
$this->addColumn(
113113
'created_at',
114-
['header' => __('Purchase Date'), 'index' => 'created_at', 'type' => 'datetime']
114+
['header' => __('Purchased'), 'index' => 'created_at', 'type' => 'datetime']
115115
);
116116

117117
$this->addColumn('billing_name', ['header' => __('Bill-to Name'), 'index' => 'billing_name']);

app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Orders.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ protected function _prepareColumns()
9595

9696
$this->addColumn(
9797
'created_at',
98-
['header' => __('Purchase Date'), 'index' => 'created_at', 'type' => 'datetime']
98+
['header' => __('Purchased'), 'index' => 'created_at', 'type' => 'datetime']
9999
);
100100

101101
$this->addColumn('billing_name', ['header' => __('Bill-to Name'), 'index' => 'billing_name']);

app/code/Magento/Customer/Controller/Account/CreatePost.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public function execute()
249249
// @codingStandardsIgnoreStart
250250
$this->messageManager->addSuccess(
251251
__(
252-
'Account confirmation is required. Please, check your email for the confirmation link. To resend the confirmation email please <a href="%1">click here</a>.',
252+
'Account confirmation is required. Please check your email for the confirmation link. To resend the confirmation email please <a href="%1">click here</a>.',
253253
$email
254254
)
255255
);

app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</strong>
3535
<div class="box-content">
3636
<?php if (!($_shippingRateGroups = $block->getShippingRates($_address))): ?>
37-
<p><?php echo __('Sorry, no quotes are available for this order at this time.') ?></p>
37+
<p><?php echo __('Sorry, no quotes are available for this order right now.') ?></p>
3838
<?php else: ?>
3939
<dl class="items methods-shipping">
4040
<?php $_sole = count($_shippingRateGroups) == 1; foreach ($_shippingRateGroups as $code => $_rates): ?>

0 commit comments

Comments
 (0)