Here you can find the source of translate()
var translate = {}; String.prototype.translate = function() { return translate[this]?translate[this]:this; };
String.prototype.translate = function() { return I18N.translateStr(this);
function translatePigLatin(str) { var vowels = /[aeiou]/i; var consonantSuffix = "ay"; var vowelSuffix = "way"; var firstVowel = str.indexOf(str.match(vowels)); if (firstVowel === 0) { str = str + vowelSuffix; else { ...