I am using Direct Web Remoting on Struts framework to show some I18N values.
For Example,
>File name = Test.js
function test()
{
DWRutil.getMyAlert("i18n.test.javascript.alert",function(str){
alert(str);
});
}
In DWRUtil's getMyAlert method return I18N value from applicationresources.properties
Question:
Is there any option to load a I18N values from applicationresources.properties to Test.js directly?