ruby-on-rails – I18N键,用于在模块中分组的轨道模型

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – I18N键,用于在模块中分组的轨道模型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有几个模型分组在一个这样的模块:
#/app/models/blobs/small_text.rb
  class Blobs::SmallText < ActiveRecord::Base

        #.. class implementation

  end

我想用法语将人类的名字设为“Texte Court”

I18n.locale = "fr"
  Blobs::SmallText.model_name.human # should return "Texte Court"

我在类定义的模块部分遇到问题,以及它应该如何包含在区域设置文件中.我已经在我的区域设置文件中尝试了几种组合,但是没有工作.以下是我尝试过的一些组合:

# /config/locales/models/blobs.fr.yml

  # first attempt (does not work)
  fr:
    activerecord:
      models:
         blobs_small_text: "Texte Court"
# /config/locales/models/blobs.fr.yml   
  # second attempt(does not work) 
  fr:
    activerecord:
      models:
         blobs:
           small_text: "Texte Court"

有任何想法吗?
谢谢
D.

解决方法

好.我找到了答案.当您不知道在键盘控制台运行的类键时,以下指令:
Blobs::SmallText.model_name.i18n_key  # this returns :"blobs/small_text"

现在我可以相应地更新我的区域设置文件

# /config/locales/models/blobs.fr.yml
# last attempt (it works)
fr:
  activerecord:
    models:
       blobs/small_text: "Texte Court"

所以现在它的工作.但是,只是我或这个命名约定不符合Ruby on Rails中的一般命名约定?

原文链接:https://www.f2er.com/ruby/272262.html

猜你在找的Ruby相关文章