/ Published in: Rails
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
class User < ActiveRecord::Base HUMANIZED_ATTRIBUTES = { :email => "E-mail address" } def self.human_attribute_name(attr) HUMANIZED_ATTRIBUTES[attr.to_sym] || super end end