Magento 2 Knockout.js Translation Issues – How to Fix

knockoutjslocalisationmagento2

Please advice is there any pre-requirements to translate in *.html files

Works:

<button type="submit" class="action primary"><span>Send link to a Friend</span></button>

Don't want to work:

<button type="submit" class="action primary"><span data-bind="i18n: 'Send link to a Friend'"></span></button>

Translation in i18n/en_US.csv exists. Am I doing something wrong?

Best Answer

you can use

<button type="submit" class="action primary">
  <span data-bind="text: $t('Send link to a Friend')"></span>
</button>
Related Topic