On Miércoles, 17 de Marzo de 2010 22:31:40 Head777 escribió: > Hi, i have another one xD!!! > > But first, i want to say thanks to everyone because right here i have > been learn a lot of things about rails and hope help to anyone too! > > And i have another trouble, because a make another table call > "employees" and my migration file i create one field calls > "fecha_nacimiento" : > > class CreateEmpleados < ActiveRecord::Migration > def self.up > create_table :empleados do |t| > t.date :fecha_contratacion > t.timestamps > end > end > > And made everything to work with my Active Scaffold and create my > controllerm but when i make this: > http://127.0.0.1:3000/empleado > > Show me one mistake, and say this: > > I18n::MissingTranslationData in Empleado#index > translation missing: es, date, formats
Try to download spanish rails translation from svenfuchs/rails-i18n: http://github.com/svenfuchs/rails-i18n Put the file in your config/locales directory. If you have a es.yml in that directory, saved as rails_es.yml for example: http://github.com/svenfuchs/rails-i18n/raw/master/rails/locale/es.yml -- Sergio Cambra .:: entreCables S.L. ::. Mariana Pineda 23, 50.018 Zaragoza T) 902 021 404 F) 976 52 98 07 E) [email protected] -- You received this message because you are subscribed to the Google Groups "ActiveScaffold : Ruby on Rails plugin" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/activescaffold?hl=en.
