views:

21

answers:

1

When posting from the has_calendar plugin, there is a request for the TranslationData. I'm not sure what this is, or how to set it (or where to set it).

Here's the error it's spitting out.

translation missing: en, date, formats, day_of_week

Is there somewhere I need to set the locale for the calendar? The plugin doesn't give any instructions about the translation data, so I think this is Rails-side.

+1  A: 

You need define the key in your config/locales/en.yml

en:
  date:
    formats:
      day_of_week: "Day of week"
shingara
There it is - thank you!
dmanexe