]> git.openstreetmap.org Git - rails.git/commitdiff
Add a temporary hack to suppress some broken rails translations
authorTom Hughes <tom@compton.nu>
Tue, 6 Mar 2012 09:21:26 +0000 (09:21 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 6 Mar 2012 09:21:26 +0000 (09:21 +0000)
See https://github.com/svenfuchs/rails-i18n/issues/194 for more
information and progress on an upstream fix.

config/initializers/i18n.rb

index 036de52d16d11fcb9051f1c515e97ed3a7cf82f9..22704901fd88a700a2c8e4f80022353a7993243f 100644 (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) }