Add a temporary hack to suppress some broken rails translations

See https://github.com/svenfuchs/rails-i18n/issues/194 for more
information and progress on an upstream fix.
This commit is contained in:
Tom Hughes 2012-03-06 09:21:26 +00:00
parent 1340fca8f1
commit c5a54b779c

View file

@ -1,5 +1,17 @@
module I18n
module Backend
class Simple
def init_translations_with_mn_cleanup
init_translations_without_mn_cleanup
translations[:mn][:errors][:template].delete(:body)
translations[:mn][:activemodel][:errors][:template].delete(:body)
translations[:mn][:activerecord][:errors][:template].delete(:body)
end
alias_method_chain :init_translations, :mn_cleanup
end
module Fallbacks
def find_first_string_or_lambda_default(defaults)
defaults.each_with_index { |default, ix| return ix if default && !default.is_a?(Symbol) }