Rails:如何在Rails 4枚举中使用i18n


Answers:


51

我也没有找到任何特定的模式,所以我只添加了:

en:
  user_status:
    active:   Active
    pending:  Pending...
    archived: Archived

到任意.yml文件。然后在我看来:

I18n.t :"user_status.#{user.status}"

5
我做了类似的事情,但是我把它放在下面{locale}.activerecord.attributes.{model}.{attribute}并写了一个t_enum(model, enum, value)辅助方法,因此枚举翻译将与标签翻译相邻
Chris Beck

77

从Rails 5开始,所有模型都将从继承ApplicationRecord

class User < ApplicationRecord
  enum status: [:active, :pending, :archived]
end

我使用此超类来实现用于翻译枚举的通用解决方案:

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true

  def self.human_enum_name(enum_name, enum_value)
    I18n.t("activerecord.attributes.#{model_name.i18n_key}.#{enum_name.to_s.pluralize}.#{enum_value}")
  end
end

然后在我的.yml文件中添加翻译:

en:
  activerecord:
    attributes:
      user:
        statuses:
          active: "Active"
          pending: "Pending"
          archived: "Archived"

最后,要获得翻译,我使用:

User.human_enum_name(:status, :pending)
=> "Pending"

3
您将如何在下拉菜单中使用它(即,当不显示单个值时)?
tirdadc

6
@tirdadc,您可以像这样处理下拉菜单:<%= f.select :status, User.statuses.keys.collect { |status| [User.human_enum_name(:status, status), status] } %>
Repolês

3
+1好答案。我将其调整为视图辅助方法,因为我觉得这更多是视图关注,并且不对属性名称进行复数处理:gist.github.com/abevoelker/fed59c2ec908de15acd27965e4725762在类似于human_enum_name(@user, :status)
Abe Voelker

1
对于Repolês,您还可以在基本模型中添加另一个用于下拉列表的类方法:self.human_enum_collection(enum_name)。代码应为 send(enum_name.to_s.pluralize).keys.collect { |val| [human_enum_name(enum_name, val), val] }
扶手椅

32

这是一个视图:

select_tag :gender, options_for_select(Profile.gender_attributes_for_select)

这是一个模型(您可以将此代码实际移到帮助器或装饰器中)

class Profile < ActiveRecord::Base
  enum gender: {male: 1, female: 2, trans: 3}

  # @return [Array<Array>]
  def self.gender_attributes_for_select
    genders.map do |gender, _|
      [I18n.t("activerecord.attributes.#{model_name.i18n_key}.genders.#{gender}"), gender]
    end
  end
end

这是语言环境文件:

en:
  activerecord:
    attributes:
      profile:
        genders:
          male: Male
          female: Female
          trans: Trans

1
但是在这种情况下如何获取单条记录的翻译?因为.human_attribute_name('genders.male')不起作用
Stiig

谢谢,对我来说就像魅力!
matiss

为此,我已经制作了轻巧的宝石github.com/shlima/translate_enum
Aliaksandr

30

为了使国际化与任何其他属性相似,我遵循嵌套属性的方法,如您在此处看到的。

如果您上课User

class User < ActiveRecord::Base
  enum role: [ :teacher, :coordinator ]
end

yml这样的:

pt-BR:
  activerecord:
    attributes:
      user/role: # You need to nest the values under model_name/attribute_name
        coordinator: Coordenador
        teacher: Professor

您可以使用:

User.human_attribute_name("role.#{@user.role}")

1
这是视觉吸引力,但它打破的Rails约定activerecord.attributes.<fieldname>是在label翻译形式的帮手
克里斯·贝克

5
@ChrisBeck,这似乎遵循了《 Rails I18n指南》中所述的约定:guides.rubyonrails.org/…–
danblaker

以我的经验,这种方法不需要使用role密钥。您可以嵌套coordinatorteacher直接位于user
瑞安·克里斯平·塞内斯

7

模型:

enum stage: { starting: 1, course: 2, ending: 3 }

def self.i18n_stages(hash = {})
  stages.keys.each { |key| hash[I18n.t("checkpoint_stages.#{key}")] = key }
  hash
end

语言环境:

checkpoint_stages:
    starting: Saída
    course: Percurso
    ending: Chegada

并在视图(.slim)上:

= f.input_field :stage, collection: Checkpoint.i18n_stages, as: :radio_buttons

6

详细阐述user3647358的答案,您可以非常轻松地完成转换属性名称时所用的操作。

语言环境文件:

en:
  activerecord:
    attributes:
      profile:
        genders:
          male: Male
          female: Female
          trans: Trans

通过调用I18n#t进行翻译:

profile = Profile.first
I18n.t(profile.gender, scope: [:activerecord, :attributes, :profile, :genders])

4

尝试将TranslateEnum gem用于这些目的

class Post < ActiveRecord::Base
  enum status: { published: 0, archive: 1 }
  translate_enum :status
end


Post.translated_status(:published)
Post.translated_statuses

@post = Post.new(status: :published)
@post.translated_status 

1
我们也使用这个宝石。在我们评估的所有选项中拥有最干净的方法,并且维护良好。
cseelus

3

我为此创造了一颗宝石。

http://rubygems.org/gems/translated_attribute_value

添加到您的gemfile:

gem 'translated_attribute_value'

如果您有用户的状态字段:

pt-BR:
  activerecord:
    attributes:
      user:
        status_translation:
          value1: 'Translation for value1'
          value2: 'Translation for value2'

在您看来,您可以这样调用:

user.status_translated

它适用于活动记录,mongoid或具有getter / setter的任何其他类:

https://github.com/viniciusoyama/translated_attribute_value


3

结合RepolêsAliaksandr的答案,对于Rails 5,我们可以构建2种方法,使您可以转换枚举属性中的单个值或值的集合。

.yml文件中设置翻译:

en:
  activerecord:
    attributes:
      user:
        statuses:
          active: "Active"
          pending: "Pending"
          archived: "Archived"

ApplicationRecord所有模型都继承自的类中,我们定义了一个方法,该方法处理单个值的转换,而另一个方法则通过调用它来处理数组:

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true

  def self.translate_enum_name(enum_name, enum_value)
    I18n.t("activerecord.attributes.#{model_name.i18n_key}.#{enum_name.to_s.pluralize}.#{enum_value}")
  end

  def self.translate_enum_collection(enum_name)
    enum_values = self.send(enum_name.to_s.pluralize).keys
    enum_values.map do |enum_value|
      self.translate_enum_name enum_name, enum_value
    end
  end
end 

在我们看来,我们可以转换单个值:

<p>User Status: <%= User.translate_enum_name :status, @user.status %></p>

或整个枚举值集合:

<%= f.select(:status, User.translate_enum_collection :status) %>

2

尝试enum_help gem。从其描述:

帮助ActiveRecord :: Enum功能与I18n和simple_form配合使用。


2

t_enum这是我使用的辅助方法。

<%= t_enum(@user, :status) %>

enum_helper.rb

module EnumHelper

  def t_enum(inst, enum)
    value = inst.send(enum);
    t_enum_class(inst.class, enum, value)
  end

  def t_enum_class(klass, enum, value)
    unless value.blank?
      I18n.t("activerecord.enums.#{klass.to_s.demodulize.underscore}.#{enum}.#{value}")
    end
  end

end

user.rb

class User < ActiveRecord::Base
  enum status: [:active, :pending, :archived]
end 

en.yml

en:
  activerecord:
    enums:
      user:
        status:
          active:   "Active"
          pending:  "Pending..."
          archived: "Archived"

2

该模型:

class User < ActiveRecord::Base
  enum role: [:master, :apprentice]
end

语言环境文件:

en:
  activerecord:
    attributes:
      user:
        master: Master
        apprentice: Apprentice

用法:

User.human_attribute_name(:master) # => Master
User.human_attribute_name(:apprentice) # => Apprentice

怎么样@user.role,因为那是主要问题。
CodeMonKy

最直接,最干净,最优雅的方式。
Fabian Winkler

5
AnyModel.human_attribute_name(:i_dont_exist)=>“我不存在”
Shiyason

1

我更喜欢application_helper中的简单助手

  def translate_enum(object, enum_name)
    I18n.t("activerecord.attributes.#{object.model_name.i18n_key}.#{enum_name.to_s.pluralize}.#{object.send(enum_name)}")
  end

然后在我的YML文件中:

fr:
  activerecord:
    attributes:
      my_model:
        my_enum_plural:
          pending:  "En cours"
          accepted: "Accepté"
          refused:  "Refusé"

0

还有另一种方式,我发现使用模型中的关注点会更方便

关心 :

module EnumTranslation
  extend ActiveSupport::Concern

  def t_enum(enum)
    I18n.t "activerecord.attributes.#{self.class.name.underscore}.enums.#{enum}.#{self.send(enum)}"
  end
end

YML:

fr:
    activerecord:
      attributes:
        campaign:
          title: Titre
          short_description: Description courte
          enums:
            status:
              failed: "Echec"

查看:

<% @campaigns.each do |c| %>
  <%= c.t_enum("status") %>
<% end %>

不要忘记在模型中添加关注点:

class Campaign < ActiveRecord::Base
  include EnumTranslation

  enum status: [:designed, :created, :active, :failed, :success]
end

0

您可以简单地添加一个助手:

def my_something_list
  modes = 'activerecord.attributes.mymodel.my_somethings'
  I18n.t(modes).map {|k, v| [v, k]}
end

并按通常方式进行设置:

en:
  activerecord:
    attributes:
      mymodel:
        my_somethings:
           my_enum_value: "My enum Value!"

然后将其与您的选择一起使用: my_something_list


0
class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true

  def self.enum(definitions)
    defind_i18n_text(definitions) if definitions.delete(:_human)
    super(definitions)
  end

  def self.defind_i18n_text(definitions)
    scope = i18n_scope
    definitions.each do |name, values|
      next if name.to_s.start_with?('_')
      define_singleton_method("human_#{name.to_s.tableize}") do
        p values
        values.map { |key, _value| [key, I18n.t("#{scope}.enums.#{model_name.i18n_key}.#{name}.#{key}")] }.to_h
      end

      define_method("human_#{name}") do
        I18n.t("#{scope}.enums.#{model_name.i18n_key}.#{name}.#{send(name)}")
      end
    end
  end
end


en:
  activerecord:
    enums:
      mymodel:
        my_somethings:
           my_enum_value: "My enum Value!"

enum status: [:unread, :down], _human: true
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.