I\'m currently using .resx files to manage my server side resources for .NET.
.resx
the application that I am dealing with also allows developers to plugin Ja
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] );