I am using the pluralize
method in HTML files to dynamic value which the user can set as per their locale.
i.e. If the user sets label department with the German word "Abteilung", it will append 's' as per current Rails Inflection rules for pluralize string. So the resulting word will be "Abteilungs" , but there is no such word in German.
I researched , but there are no such inflection rules specific to a certain language. There may be many such words in many languages so I can't make custom inflection rules. I am not using I18n or tr8n for internationalizing such words. Can someone suggest what I can do to resolve this?