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:
parent
1340fca8f1
commit
c5a54b779c
1 changed files with 12 additions and 0 deletions
|
@ -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) }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue