You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pass all provided options down to I18n.t method. It will use `:count`
option to pluralize the message.
en:
foo:
one: %{count} foo
other: %{count} foos
I18n.t(:foo, count: 1) #=> 1 foo
I18n.t(:foo, count: 1) #=> 2 foos
0 commit comments