ember-i18n readme file says:
if you haven't precompiled your translations, you'll need to include the full Handlebars, not just handlebars-runtime.js in your application.
Problem is that even using precompiled templates, once we use function Em.I18n.t like the following, it still calls Handlebars compilation function, requiring full Handlebars.
Anyone knows a solution for that? Maybe there is a best practice for precompiling translations even for function calls?
Well, as I have urgency for this case, that's the way I've fixed it:
That works pretty well enough, but I not 100% confident it covers all possible situations.