var translate = require('./translate');
// set the input language
translate.input('English'); //
// set the output language
translate.output('Spanish');
// note: if you don't specify an input or output language, translate.js will attempt to autodetect your input and set your output to English
translate.text('yo quero tacos por favor', function(text){
sys.puts(text); // outputs : i want tacos please
});