I am using jquery i18n plugin to internationalize the messages placed in jquery/js. i have below project structure.
I have some.js
file in js
folder and inside some.js file i have to refer a properties file which is located in src/main/resources
folder. can i do as below?
jQuery.i18n.properties({
name:'Messages',
path:'resources/', //as i have properties file in src/main/resources am referring.
mode:'both'
});