Magento :: Translate text from javascript files

后端 未结 4 2049
予麋鹿
予麋鹿 2021-02-08 18:16

Magento uses a system for translating text in the template files using:

$this->__(\'text to be translated.\');

or

Mage::helper(\

4条回答
  •  忘了有多久
    2021-02-08 19:06

    Use this is in js file:

    Translator.translate('Some phrase');
    

    But to make it work you should define this translation in phtml:

    Translator.add('Some phrase', "__('Some phrase'); ?>");
    

提交回复
热议问题