Closed samir480 closed 10 months ago
en.json
{ "privacy": { "welcome": "Welcome to our Privacy Policy" } }
to use this I have to do this : {{ $t('privacy').welcome }} but it should be workin with : {{ $t('privacy.welcome') }}
{{ $t('privacy').welcome }}
{{ $t('privacy.welcome') }}
Hey @samir480 for the json translation it mimics the same logic from Laravel.
json
That works, on the .php lang files but not on the .json files.
.php
.json
Thanks
en.json
to use this I have to do this :
{{ $t('privacy').welcome }}
but it should be workin with :{{ $t('privacy.welcome') }}