Skip to content

Commit 08af553

Browse files
ENGCOM-5196: Fix missing whitespace in mobile navigation for non-English websites #23081
- Merge Pull Request #23081 from alexeya-ven/magento2:fix-js-menu-text-indents - Merged commits: 1. 0155121
2 parents 923303d + 0155121 commit 08af553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web/mage/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ define([
462462

463463
this.categoryLink = $('<a>')
464464
.attr('href', categoryUrl)
465-
.text($.mage.__('All ') + category);
465+
.text($.mage.__('All %1').replace('%1', category));
466466

467467
this.categoryParent = $('<li>')
468468
.addClass('ui-menu-item all-category')

0 commit comments

Comments
 (0)