From 5372e86d55a740583529b69e12e04852c8d26e16 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jonne=20Ha=C3=9F?= <me@mrzyx.de>
Date: Sat, 1 Sep 2012 01:07:17 +0200
Subject: [PATCH] update i18n interpolation fallback to use renamed method

---
 lib/i18n_interpolation_fallbacks.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/i18n_interpolation_fallbacks.rb b/lib/i18n_interpolation_fallbacks.rb
index d83ae6c36c..096be511ce 100644
--- a/lib/i18n_interpolation_fallbacks.rb
+++ b/lib/i18n_interpolation_fallbacks.rb
@@ -2,7 +2,7 @@ module I18n
   module Backend
     module InterpolationFallbacks
       def translate(locale, key, options = {})
-        default = extract_string_or_lambda_default!(options) if options[:default]
+        default = extract_non_symbol_default!(options) if options[:default]
         options.merge!(:default => default) if default
 
         I18n.fallbacks[locale].each do |fallback|
@@ -18,4 +18,4 @@ module I18n
       end
     end
   end
-end
\ No newline at end of file
+end
-- 
GitLab