Skip to content

Instantly share code, notes, and snippets.

@foull
Forked from anonymous/handlebars-t.js
Created September 12, 2013 09:03
Show Gist options
  • Save foull/6534761 to your computer and use it in GitHub Desktop.
Save foull/6534761 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('t', function(i18n_key) {
i18n_key = Handlebars.Utils.escapeExpression(i18n_key);
var result = I18n.t(i18n_key);
return new Handlebars.SafeString(result);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment