Skip to content

Instantly share code, notes, and snippets.

@juliend2
Created May 28, 2012 17:49
Show Gist options
  • Save juliend2/2820278 to your computer and use it in GitHub Desktop.
Save juliend2/2820278 to your computer and use it in GitHub Desktop.
__() in javascript
window._lang = 'fr';
var translations = {
'String to Translate': 'Chaîne à traduire',
'something': 'quelque chose'
};
var __ = function(msgid) {
if (window._lang === 'fr' && (msgid in translations)) {
return translations[msgid];
} else {
return msgid;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment