pluralize(count = nil, locale = :en)
Instance Public methods
Returns the plural form of the word in the string.
If the optional parameter count
is specified, the singular
form will be returned if count == 1
. For any other value of
count
the plural will be returned.
If the optional parameter locale
is specified, the word will
be pluralized as a word of that language. By default, this parameter is set
to :en
. You must define your own inflection rules for
languages other than English.
1 2 3 4 5 6 7 8 9 10 | 'post' .pluralize # => "posts" 'octopus' .pluralize # => "octopi" 'sheep' .pluralize # => "sheep" 'words' .pluralize # => "words" 'the blue mailman' .pluralize # => "the blue mailmen" 'CamelOctopus' .pluralize # => "CamelOctopi" 'apple' .pluralize( 1 ) # => "apple" 'apple' .pluralize( 2 ) # => "apples" 'ley' .pluralize( :es ) # => "leyes" 'ley' .pluralize( 1 , :es ) # => "ley" |
Please login to continue.