I am using jquery-localize plugin for my static web project. I can localize strings in html file, like this:
<p rel=localize[hello]></p>
But I also need to use localized strings in js functions. How can I correctly access those jquery-localize strings from a function?
alert( localized_strings[hello] ??? );
here is the jquery-localize plugin: https://github.com/coderifous/jquery-localize/blob/master/README.markdown