Я столкнулся с некоторой проблемой при попытке перевести имена и атрибуты моей модели в приложение Rails 2.3.5.
У меня есть следующая модель:
class BillingPlan < ActiveRecord::Base
validates_presence_of :billing_option_id
belongs_to :order
belongs_to :user
belongs_to :billing_option
end
При сбое проверки атрибуты моих моделей переводятся правильно, но само название модели - нет. Я использую следующий скелет перевода в de.yml
de:
activerecord:
models:
shipping_plan: "Versandart"
billing_plan: "Rechnungsart"
attributes:
shipping_plan:
shipping_option_id: "Versandoption"
billing_plan:
billing_option_id: "Rechnungsoption"
Основа для моего файла перевода: http://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/de.yml
Кто-нибудь может помочь?
Спасибо заранее
J.