I'm currently using .resx files to manage my server side resources for .Net. The application that I am dealing with also allows developers to plugin javascript into various event handlers for client side validation, etc.. What is the best way for me to localize my javascript messages and strings? Ideally, I would like to store the strings in the .resx files to keep them with the rest of the localized resources. I'm open to suggestions.
|
feedback
|
|
A basic JavaScript object is an associative array, so it can easily be used to store key/value pairs. So using JSON, you could create an object for each string to be localized like this:
Then you could get the locale version of each string like this:
| |||||||
feedback
|
|
Inspired by SproutCore You can set properties of strings:
and then simply spit out the proper localization based on your locale:
| |||
|
feedback
|
|
This looks quite neat: | ||||
feedback
|
|
With a satellite assembly (instead of a resx file) you can enumerate all strings on the server, where you know the language, thus generating a Javascript object with only the strings for the correct language. Something like this works for us (VB.NET code):
However, we haven't found a way to do this for .resx files yet, sadly. | ||||
|
feedback
|
|
JSGettext does an excellent job -- dynamic loading of GNU Gettext .po files using pretty much any language on the backend. Google for "Dynamic Javascript localization with Gettext and PHP" to find a walkthrough for JSGettext with PHP (I'd post the link, but this silly site won't let me, sigh...) Edit: this should be the link | ||||
|
feedback
|
|
I would use an associative array:
Then you can just swap the JS file, or use an Ajax call to redefine your phrase list. | |||||
feedback
|
|
Expanding on diodeus.myopenid.com's answer: Have your code write out a file containing a JS array with all the required strings, then load the appropriate file/script before the other JS code. | |||
|
feedback
|
|
The
I can't tell you the best solution for your question, but IMHO this is the worst way of doing it. At least now you know how NOT to do it. | |||||||||
feedback
|
|
I did the following to localize JavaScript for a mobile app running HTML5: 1.Created a set of resource files for each language calling them like "en.js" for English. Each contained the different strings the app as follows:
2.Used Lazyload to load the proper resource file based on the locale language of the app: https://github.com/rgrove/lazyload 3.Pass the language code via a Query String (As I am launching the html file from Android using PhoneGap) 4.Then I wrote the following code to load dynamically the proper resource file:
5.From the html file I refer to the strings as follows:
| ||||
|
feedback
|