my locale is :de and I like to get this:
Sheet.model_name.human.pluralize # => Belegs
to add me a trailing \"e\" instead of \"s\"
You can override pluralizations this way:
In config/initializers/inflections.rb
config/initializers/inflections.rb
do:
ActiveSupport::Inflector.inflections do |inflect| inflect.irregular 'Beleg', 'Belege' end