Created
May 3, 2011 17:24
-
-
Save lunks/953763 to your computer and use it in GitHub Desktop.
i18n issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Order < ActiveRecord::Base | |
has_many :order_items | |
validates_length_of :order_items, :minimum => 1, :message => :empty | |
accepts_nested_attributes_for :order_items | |
end | |
#en.yml | |
activerecord: | |
models: | |
order: | |
order_items: | |
quantity: quantidade | |
How to translate order_items (i.e. "Order items is empty.")? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment