Answers for "translate js in phtml magento 2"

1

Translate html in magento 2

<h4 data-bind="i18n: 'Shipping Instruction'"></h4>
Posted by: Guest on September-11-2021
0

magento 2 translate js

require([
'jquery', // jquery Library
'jquery/ui', // Jquery UI Library
'mage/translate' // Magento text translate (Validation message translte as per language)
], function($){ 
    $(window).load(function() {
        alert($.mage.__('Enter Your message here'));
    });
});
Posted by: Guest on March-24-2022

Code answers related to "translate js in phtml magento 2"

Browse Popular Code Answers by Language