// app/controllers/application.js // decide the locale to be used in view, inside application controller before filter var Application = function () { this.before(function() { this.i18n.setLocale(this.params.locale); }); }; exports.Application = Application;