Skip to content

Commit 71ff1c9

Browse files
author
Olexii Korshenko
committed
Merge branch 'PR' into checkout
2 parents 3abe43b + 409317c commit 71ff1c9

File tree

36 files changed

+85
-84
lines changed

36 files changed

+85
-84
lines changed

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php

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

4444
/** @var \Magento\Framework\Data\Form $form */
4545
$form = $this->_formFactory->create();
46-
$fieldset = $form->addFieldset('set_name', ['legend' => __('Edit Set Name')]);
46+
$fieldset = $form->addFieldset('set_name', ['legend' => __('Edit Product Template Name')]);
4747
$fieldset->addField(
4848
'attribute_set_name',
4949
'text',

app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected function _prepareLayout()
2727
'addButton',
2828
'Magento\Backend\Block\Widget\Button',
2929
[
30-
'label' => __('Add New Set'),
30+
'label' => __('Add Product Template'),
3131
'onclick' => 'setLocation(\'' . $this->getUrl('catalog/*/add') . '\')',
3232
'class' => 'add primary add-set'
3333
]

app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function execute()
3737
/** @var \Magento\Backend\Model\View\Result\Page $resultPage */
3838
$resultPage = $this->resultPageFactory->create();
3939
$resultPage->setActiveMenu('Magento_Catalog::catalog_products');
40-
$resultPage->getConfig()->getTitle()->set((__('Products')));
40+
$resultPage->getConfig()->getTitle()->prepend(__('Catalog'));
4141
return $resultPage;
4242
}
4343
}

app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ protected function _prepareForm()
129129
'text',
130130
[
131131
'name' => 'frontend_label[0]',
132-
'label' => __('Attribute Label'),
133-
'title' => __('Attribute Label'),
132+
'label' => __('Default label'),
133+
'title' => __('Default label'),
134134
'required' => true,
135135
'value' => is_array($labels) ? $labels[0] : $labels
136136
]

app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected function _prepareColumns()
5353
$this->addColumn(
5454
'frontend_label',
5555
[
56-
'header' => __('Attribute Label'),
56+
'header' => __('Default label'),
5757
'sortable' => true,
5858
'index' => 'frontend_label',
5959
'header_css_class' => 'col-label',

app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ protected function _prepareForm()
6666
[
6767
'name' => 'price_rule_type',
6868
'options' => [__('Any'), __('Specified')],
69-
'label' => __('Shopping Cart Price Rule')
69+
'label' => __('Cart Price Rule')
7070
]
7171
);
7272

app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Quote extends \Magento\Backend\Block\Widget\Grid\Container
2020
protected function _construct()
2121
{
2222
$this->_controller = 'promo_quote';
23-
$this->_headerText = __('Shopping Cart Price Rules');
23+
$this->_headerText = __('Cart Price Rules');
2424
$this->_addButtonLabel = __('Add New Rule');
2525
parent::_construct();
2626
}

app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Main.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
use Magento\Store\Model\System\Store;
2121

2222
/**
23-
* Shopping Cart Price Rule General Information Tab
23+
* Cart Price Rule General Information Tab
24+
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2425
*
2526
* @author Magento Core Team <core@magentocommerce.com>
2627
*/

app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Main/Renderer/Checkbox.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\Main\Renderer;
77

88
/**
9-
* Renderer for specific checkbox that is used on Rule Information tab in Shopping cart price rules
9+
* Renderer for specific checkbox that is used on Rule Information tab in Cart Price Rules
1010
*
1111
* @author Magento Core Team <core@magentocommerce.com>
1212
*/

app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tabs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ protected function _construct()
2222
parent::_construct();
2323
$this->setId('promo_catalog_edit_tabs');
2424
$this->setDestElementId('edit_form');
25-
$this->setTitle(__('Shopping Cart Price Rule'));
25+
$this->setTitle(__('Cart Price Rule'));
2626
}
2727
}

0 commit comments

Comments
 (0)