I want to be able to translate pluralized strings in i18n in rails. A string can be :
You have 2 kids
or
You have 1 kid
I know that i can use pluralize helper method, but i want to embed this in i18n translations so that i don't have to mess up with my views at any point in the future. I read that :count is somehow used in translations for plural, but i can't find any real resources on how it gets implemented.
Notice that i know that i can pass a variable in a translation string. I also tried something like :
<%= "#{t 'misc.kids', :kids_num => pluralize(1, 'kid') }" %>
Which works fine, but has a fundamental problem of the same idea. I need to specify the string 'kid' in the pluralize helper. I don't want to do that because it will lead to view problems in the future. Instead i want to keep everything in the translation and nothing in the view.
How can i do that ?
"#{....}"are not necessary in the code above. – Zabba May 29 '11 at 5:40