]> git.openstreetmap.org Git - rails.git/commitdiff
Update to rails-i18n 0.5.2 and remove monkey patch
authorTom Hughes <tom@compton.nu>
Sat, 17 Mar 2012 17:04:02 +0000 (17:04 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 17 Mar 2012 17:04:02 +0000 (17:04 +0000)
Gemfile
Gemfile.lock
config/initializers/i18n.rb

diff --git a/Gemfile b/Gemfile
index de866482892a131bd5718575b71233b24137a418..2511fd7ea854558e522cb2c1ba8f160bf07f525f 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -11,7 +11,7 @@ gem 'pg'
 gem 'jquery-rails'
 
 # Load rails plugins
-gem 'rails-i18n', ">= 0.5.1"
+gem 'rails-i18n', ">= 0.5.2"
 gem 'dynamic_form'
 gem 'rinku', '>= 1.2.2', :require => 'rails_rinku'
 gem 'oauth-plugin', '>= 0.4.0.pre7'
index 9b6f5ca2ab62f027de7b8d47280c7ec641c09a31..d7b29c14c592d2c05c4d803f2f13dc2353625f4a 100644 (file)
@@ -109,7 +109,7 @@ GEM
       activesupport (= 3.2.2)
       bundler (~> 1.0)
       railties (= 3.2.2)
-    rails-i18n (0.5.1)
+    rails-i18n (0.5.2)
       i18n (~> 0.5)
     railties (3.2.2)
       actionpack (= 3.2.2)
@@ -121,7 +121,7 @@ GEM
     rake (0.9.2.2)
     rdoc (3.12)
       json (~> 1.4)
-    redcarpet (2.1.0)
+    redcarpet (2.1.1)
     rinku (1.5.1)
     ruby-openid (2.1.8)
     sanitize (2.0.3)
@@ -170,7 +170,7 @@ DEPENDENCIES
   paperclip (~> 2.0)
   pg
   rails (= 3.2.2)
-  rails-i18n (>= 0.5.1)
+  rails-i18n (>= 0.5.2)
   redcarpet
   rinku (>= 1.2.2)
   sanitize
index 22704901fd88a700a2c8e4f80022353a7993243f..036de52d16d11fcb9051f1c515e97ed3a7cf82f9 100644 (file)
@@ -1,17 +1,5 @@
 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) }