method
pluralize
![Some documentation Importance_1](https://d2vfyqvduarcvs.cloudfront.net/images/importance_1.png?1349367920)
pluralize(word, locale = :en)
public
Returns the plural form of the word in the string.
If passed an optional locale parameter, the word will be pluralized using rules defined for that language. By default, this parameter is set to :en.
pluralize('post') # => "posts" pluralize('octopus') # => "octopi" pluralize('sheep') # => "sheep" pluralize('words') # => "words" pluralize('CamelOctopus') # => "CamelOctopi" pluralize('ley', :es) # => "leyes"