多元化
你可以让 I18n 为你处理多元化,只需使用 count
参数。
你需要像下面这样设置你的语言环境文件:
# config/locales/en.yml
en:
online_users:
one: "1 user is online"
other: "%{count} users are online"
然后通过将 count
参数传递给 I18n.t
helper 来使用刚刚创建的密钥:
I18n.t("online_users", count: 1)
#=> "1 user is online"
I18n.t("online_users", count: 4)
#=> "4 users are online"