Date_select throws an exception

When the locale of an application is set to: he, the following automatically generated code throws an exception:

undefined method `map' for "translation missing: he.date.order":String <%= f.date_select :birthday %> 

I checked twice, and not only the locales for Hebrew and English are identical (by key), en.date.order is not included in English language files.

Where does this exception come from?

I am using Ruby 2 with Rails 4 .

Edit: Solution:

 he: date: #Throws an exception otherwise. order: - "year" - "month" - "day" 
+7
ruby ruby-on-rails
source share

No one has answered this question yet.

See related questions:

812
Why is it a bad style to 'save Exception => e` in Ruby?
12
How can I use US style dates in Rails using Ruby 1.9?
8
How to iterate over months in Ruby on Rails
3
How can I save a date, which can be partial (i.e. only a year, maybe a month), and display it later with the same specification?
3
Looking for an effective way to determine birthday ranges with Ruby
2
Work with multi-parameter assignment and rails 3.2 key storage
one
Simple month translation
one
How can I parse a date in Rails without a month or day?
0
How to parse a date field using SQL
-one
How to check if the difference between the two dates is several times in X months

All Articles