Is there a way to force ember to always use plural

52 Views Asked by At

I've been looking around and couldn't find a way to do it except with:

var inflector = Ember.Inflector.inflector;

inflector.uncountable('news');
inflector.uncountable('rules');

Declaring for each my model is a bit cumbersome and I would like to know if there's a way to make it more general.

Finally what is the reason for using english grammar as a rule for inflection? And what is inflection supposed to provide?

Thanks

0

There are 0 best solutions below