Change Language on React JS App

Description
I have a ReactJS app , and I want to put it on ‘es-ES’

Error
I-m trying to change the langauge using .i18n but it give me undefined, also I try to obtain i18n from the module but also undefined. I install jquery module for ReactJS, but the variable doesnt have the i18n.

Additional context
Add any other context about the problem here.

I fix this, with this script inside index.html

<script>
      $(document).ready(function(){
        $.i18n.reload('es-ES');
      })
    </script>
1 Like

Happy to hear you resolved the issue! :slight_smile:

Thanks for providing the solution!

-Tommy