ruby-on-rails Rails中的pluralize和i18n

7gs2gvoe  于 2023-05-02  发布在  Ruby
关注(0)|答案(1)|浏览(109)

对于我的Ruby on Rails(7)应用程序,我有如下形式的locale yaml定义:

de:
  activerecord:
    models:
      author:
        one: AutorIn
        other: AutorInnen

但是当我用类似

pluralize(10, Author.model_name.human)

函数没有采用正确的复数形式-它应该说“10 AutorInnen”,但它说“10 Autors”?

kgqe7b3p

kgqe7b3p1#

也许用count代替pluralize?这似乎对这些类似的问题起了作用:

相关问题