ember-i18n and CLDR
ember-i18n asks to use CLDR.js for inflections, but I haven't been able to convince it to see that the library is installed.
by scispear
HTML
<script src="https://github.com/downloads/wycats/handlebars.js/handlebars-1.0.0.beta.6.js"></script>
<script src="http://cloud.github.com/downloads/emberjs/ember.js/ember-latest.js"></script>
<script src="https://raw.github.com/jamesarosen/CLDR.js/master/plurals.js"></script>
<script src="https://raw.github.com/zendesk/ember-i18n/master/dist/ember-i18n-latest.js"></script>
<script type="text/x-handlebars">
This is a test of CLDR. Check the console for the error message.
</script>
JavaScript
App = Ember.Application.create();
Em.I18n.translations = {
'app.title': 'Sylvius'
};