Magento – Add Language translation text in magento2

i18nlanguagelocalisationmagento-2.1

I have added the new field in Customer navigation section near the Sign In, For that new field I need to fr_FR translation where I need to add the translation text? Those translation files are working from which file please tell me.

Best Answer

have you used this syntax where you put your text?

Template file:

<?php /* @escapeNotVerified */ echo __('Your text') ?>

Knockout file:

data-bind="i18n: 'Your text'"
Related Topic