对于我的Ruby on Rails(7)应用程序,我有如下形式的locale yaml定义:
de:
activerecord:
models:
author:
one: AutorIn
other: AutorInnen
但是当我用类似
pluralize(10, Author.model_name.human)
函数没有采用正确的复数形式-它应该说“10 AutorInnen”,但它说“10 Autors”?
对于我的Ruby on Rails(7)应用程序,我有如下形式的locale yaml定义:
de:
activerecord:
models:
author:
one: AutorIn
other: AutorInnen
但是当我用类似
pluralize(10, Author.model_name.human)
函数没有采用正确的复数形式-它应该说“10 AutorInnen”,但它说“10 Autors”?
1条答案
按热度按时间kgqe7b3p1#
也许用count代替pluralize?这似乎对这些类似的问题起了作用: