Problem with word "explosives"
Koka opened this issue · 2 comments
Koka commented
Hi, I've found incorrect and inconsistent handling of explosives
word - see the following example:
var inflector = new Ember.Inflector(Ember.Inflector.defaultRules);
inflector.pluralize("explozive"); // => "explozives"
inflector.singularize("explozives"); // => "explozife"
inflector.singularize(inflector.pluralize("explozive")) == "explosive" // => false :(