I have a model with a translation that can be pluralized:
en:
activerecord:
models:
user:
one: User
other: Users
If I call this translation directly, I get these results:
t("activerecord.models.user", count: 1)
=> User
t("activerecord.models.user", count: 2)
=> Users
t("activerecord.models.user")
=> {:one=>"User", :other=>"Users"}
Is there a way to get this last translation to default to "User"?