Skip to content

Commit

Permalink
🔃 [EngCom] Public Pull Requests - 2.1-develop
Browse files Browse the repository at this point in the history
Accepted Public Pull Requests:
 - #16720: [Backport] Fix for #12081: missing translations in the js-translations.json (by @sanganinamrata)
 - #16731: [Backport] Removed extra code (by @gelanivishal)
 - #16735: [backport] #16559 fix icon color variable naming  (by @Karlasa)


Fixed GitHub Issues:
 - #12081: Magento 2.2.0: Translations for 'Item in Cart' missing in mini cart. (reported by @jhruehl) has been fixed in #16720 by @sanganinamrata in 2.1-develop branch
   Related commits:
     1. aa0e051
  • Loading branch information
Stanislav Idolov authored Jul 12, 2018
2 parents 2b53bf2 + 3496441 commit 756dc8c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
1 change: 1 addition & 0 deletions app/code/Magento/Translation/etc/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<item name="translate_wrapping" xsi:type="string"><![CDATA[~translate\=("')([^\'].*?)\'\"~]]></item>
<item name="mage_translation_widget" xsi:type="string"><![CDATA[~(?:\$|jQuery)\.mage\.__\((?s)[^'"]*?(['"])(.+?)(?<!\\)\1(?s).*?\)~]]></item>
<item name="mage_translation_static" xsi:type="string"><![CDATA[~\$t\((?s)[^'"]*?(["'])(.+?)\1(?s).*?\)~]]></item>
<item name="translate_args" xsi:type="string"><![CDATA[~translate args\=("|'|"')([^\'].*?)('"|'|")~]]></item>
</argument>
</arguments>
</type>
Expand Down
3 changes: 1 addition & 2 deletions app/code/Magento/Ui/Model/Export/ConvertToCsv.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
use Magento\Framework\Exception\FileSystemException;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Filesystem;
use Magento\Framework\Filesystem\Directory\WriteInterface;
use Magento\Ui\Component\MassAction\Filter;

/**
Expand All @@ -18,7 +17,7 @@
class ConvertToCsv
{
/**
* @var WriteInterface
* @var DirectoryList
*/
protected $directory;

Expand Down
3 changes: 1 addition & 2 deletions app/code/Magento/Ui/Model/Export/ConvertToXml.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
use Magento\Framework\Exception\FileSystemException;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Filesystem;
use Magento\Framework\Filesystem\Directory\WriteInterface;
use Magento\Ui\Component\MassAction\Filter;

/**
Expand All @@ -22,7 +21,7 @@
class ConvertToXml
{
/**
* @var WriteInterface
* @var DirectoryList
*/
protected $directory;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
@_icon-font-content: @icon-search,
@_icon-font-size: 35px,
@_icon-font-line-height: 33px,
@_icon-font-color: @minicart-icons-color,
@_icon-font-color-hover: @minicart-icons-color-hover,
@_icon-font-color-active: @minicart-icons-color-hover,
@_icon-font-color: @header-icons-color,
@_icon-font-color-hover: @header-icons-color-hover,
@_icon-font-color-active: @header-icons-color-hover,
@_icon-font-text-hide: true
);
display: inline-block;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
@_icon-font-size: 22px,
@_icon-font-line-height: 28px,
@_icon-font-margin: 0 @indent__s 0 0,
@_icon-font-color: @minicart-icons-color,
@_icon-font-color-hover: @minicart-icons-color-hover,
@_icon-font-color-active: @minicart-icons-color-hover,
@_icon-font-color: @header-icons-color,
@_icon-font-color-hover: @header-icons-color-hover,
@_icon-font-color-active: @header-icons-color-hover,
@_icon-font-text-hide: true
);
display: inline-block;
Expand Down

0 comments on commit 756dc8c

Please sign in to comment.