Created
January 10, 2012 13:37
-
-
Save anonymous/1589125 to your computer and use it in GitHub Desktop.
Handlebars' I18n translation helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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