I am looking at using http://code.google.com/p/jquery-i18n-properties/ to provide localization features to terms in my javascript code. I can’t make much sense of the documentation provided. If I have english terms “open” and “close” and want to also use french “ouvrir” and “fermer” – is there a good example anywhere on how I would use this plugin? I’m not having any luck finding anything.
I am looking at using http://code.google.com/p/jquery-i18n-properties/ to provide localization features to terms in my
Share
You could always contact the developer or view the demo page.
It appears you build a map for each language (pt, pt_PT) you wish to support. Calling
loadBundles('pt_PT');triggers that bundle to be loaded (or using the browsers language (jQuery.i18n.browserLang()).You just need to view the source of the demo page for more details.