I have downloaded require.js i18n plugin to give some translation to the views, they use handlebars templates but the strings between the html tags are not enclosed in curly braces. The templates are loades using hbs!
I'm a beginner and after much thinking any of my attempts have been fruitful. How can my view render the translated strings? thanks a lot for real.
// my View
View = Marionette.ItemView.extend({
template: theTmpl,
//some events and logic
initialize: function() {
}
});