LoginSignup
5
7

More than 5 years have passed since last update.

Form_forとかのlabelの名前をlocaleで表す。

Posted at

以下のようなform_forで作成されるlabelの表示名をlocaleに記載する。

hoge.html.erb
  <div class="form-group">
    <%= form.label :name %>
    <%= form.text_field :name %>
  </div>
  • localeにja.ymlを作成し、以下のようなネストで記載する。
ja.yml

ja:
  activerecord:
    attributes:
      user:
        name: "名前"

ここで、userは、form_forが対象としているモデル名である。

5
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
7