Skip to content

Instantly share code, notes, and snippets.

Created January 10, 2012 13:37
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/1589125 to your computer and use it in GitHub Desktop.
Save anonymous/1589125 to your computer and use it in GitHub Desktop.
Handlebars' I18n translation helper
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