I want to use my flag.json or my error.json in my plugin and not the files that are in public/language/en-GB/flags.json
. My plugin's structure folder is this:
languages
----->flag.json
----->error.json
I want read my text in these files, How can I do that?
Example
<div class="col-md-4 col-xs-12 ">
<button class="btn btn-default flag-reason" disabled="true" name="bottone_flag">[[flags:modal-reason-offensive]]</button>
</div>
In this way I read the default value but I want to customize with my file so something like this:
[[languages flags:modal-reason-offensive]]
But this it doesn't work. Anyone can help me?