How to Translate Text in Knockout .html File in Magento 2

frontendknockoutjsmagento2

I want to translate KO text.

"You have no items in your shopping cart."  "Empty Basket" 

Already tried with translate.csv it doesn't work.

Is there any way to translating knockout template text in magento2?

Best Answer

You Can try this its work for me.

find pub/static -name js-translation.json

Add your translation in theme js-translation.json

For Example:

{"You have no items in your shopping cart.":"Empty Basket"}
{"Forgot Your Password?":"Forgot Password?"}

Once that's done we clear the cache:

php bin/magento cache:clean
php bin/magento cache:flush
Related Topic