up vote 21 down vote favorite
6
share [g+] share [fb]

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.

link|improve this question

61% accept rate
feedback

9 Answers

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:

var localizedStrings={
    confirmMessage:{
        'en/US':'Are you sure?',
        'fr/FR':'Est-ce que vous est certain?',
        ...
    },

    ...
}

Then you could get the locale version of each string like this:

var locale='en/US';
var confirm=localizedStrings['confirmMessage'][locale];
link|improve this answer
10  
The problem with this approach is that you load all strings for all languages. However its likely the server will know either through browser provided clues or through user preferences what language is needed. Sending a single language file would be better. – AnthonyWJones Sep 19 '08 at 18:03
Since I write OO JS, each object defines default English strings that it uses on the prototype. If I need another language, I just load another file the modifies the prototype strings. That way I don't need to load all the strings for one language at once (they're dynamically loaded). The drawback is that you may need to repeat some strings across objects. – Juan Mendes Aug 12 '11 at 16:40
feedback

Inspired by SproutCore You can set properties of strings:

'Hello'.fr = 'Bonjour';
'Hello'.es = 'Hola';

and then simply spit out the proper localization based on your locale:

var locale = 'en';
alert( message[locale] );
link|improve this answer
feedback

This looks quite neat:

Localize text in JavaScript files in ASP.NET

link|improve this answer
This is a good solution. Most solutions I've found require either passing all language strings to the client in order to pick one, or keeping a set of .js files in every language. This one avoids both of those pitfalls; all you need is a resource file in each language, which is the same thing you'd need if localizing C# code. – Kyralessa Mar 26 '10 at 18:25
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):

Dim rm As New ResourceManager([resource name], [your assembly])
Dim rs As ResourceSet = 
    rm.GetResourceSet(Thread.CurrentThread.CurrentCulture, True, True)
For Each kvp As DictionaryEntry In rs
    [Write out kvp.Key and kvp.Value]
Next

However, we haven't found a way to do this for .resx files yet, sadly.

link|improve this answer
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

link|improve this answer
feedback

I would use an associative array:

var phrases=[]
phrases['fatalError'] ='On no!'

Then you can just swap the JS file, or use an Ajax call to redefine your phrase list.

link|improve this answer
2  
Note that this isn't correct. phrases will be an Array, but you're just setting one of its properties to a string (eg phrases.fatalError = 'Oh no'; is equivalent to your second line). Use object literals for cleanliness instead. – millenomi Sep 19 '08 at 18:03
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.

link|improve this answer
feedback

The MSDN way of doing it, basically is:

You create a separate script file for each supported language and culture. In each script file, you include an object in JSON format that contains the localized resources values for that language and culture.

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.

link|improve this answer
Just cause it's MS, it's bad? FAILED attempt at being funny! That is the most widely used way. If this is the worst way, you need to at least explain why! – Juan Mendes Aug 12 '11 at 16:43
@Juan Attempt to be funny? My guesses are the way you're localizing your strings in js is exactly the MSDN way, a.k.a "CPP - Copy and Paste Programming" and couldn't bear someone criticizing it. "The most widely used way" is to violate DRY principle according to your statement, but you probably don't see it as a code smell. – BrunoSalvino Aug 12 '11 at 19:14
1  
How is that a violation of DRY? Even if your argument is true, the answer is still weak since it doesn't explain anything. – Juan Mendes Aug 12 '11 at 23:00
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:


        var localString = {
        appName: "your app name",
        message1: "blah blah"
      };

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:


var lang = getQueryString("language");
localization(lang);
function localization(languageCode) {
    try {
        var defaultLang = "en";
        var resourcesFolder = "values/";
        if(!languageCode || languageCode.length == 0)
            languageCode = defaultLang;
        // var LOCALIZATION = null;
        LazyLoad.js(resourcesFolder + languageCode + ".js", function() {
            if( typeof LOCALIZATION == 'undefined') {
                LazyLoad.js(resourcesFolder + defaultLang + ".js", function() {
                    for(var propertyName in LOCALIZATION) {
                        $("#" + propertyName).html(LOCALIZATION[propertyName]);
                    }
                });
            } else {
                for(var propertyName in LOCALIZATION) {
                    $("#" + propertyName).html(LOCALIZATION[propertyName]);
                }
            }
        });
    } catch (e) {
        errorEvent(e);
    }
}
function getQueryString(name)
{
  name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
  var regexS = "[\\?&]" + name + "=([^&#]*)";
  var regex = new RegExp(regexS);
  var results = regex.exec(window.location.href);
  if(results == null)
    return "";
  else
    return decodeURIComponent(results[1].replace(/\+/g, " "));
}

5.From the html file I refer to the strings as follows:


    span id="appName"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.