lower caseon pluralizing

This commit is contained in:
Brenda Wallace
2019-07-03 18:10:08 +12:00
committed by always-be-closing[bot]
parent ac91450827
commit ea18c722ef

View File

@@ -60,7 +60,7 @@ module ApplicationHelper
# Returns a string with the quantity and the right pluralization for a
# given collection and model.
def localize_plural(collection, model)
pluralize(collection.size, model.model_name.to_s)
pluralize(collection.size, model.model_name.downcase.to_s)
end
def show_inactive_tickbox_path(type, owner, show_all)