LoginSignup
2
2

More than 5 years have passed since last update.

今更だけどRails4.2のchangelogを眺めていたら見つけた嬉しいモノ(試してない)

Posted at

Take label values into account when doing I18n lookups for model attributes.

The following:

# form.html.erb
<%= form_for @post do |f| %>
  <%= f.label :type, value: "long" %>
<% end %>

# en.yml
en:
  activerecord:
    attributes:
      post/long: "Long-form Post"

Used to simply return "long", but now it will return "Long-form Post".

2
2
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
2
2