aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/number_helper.rb
diff options
context:
space:
mode:
authorSven Fuchs <svenfuchs@artweb-design.de>2008-07-02 19:21:07 +0200
committerSven Fuchs <svenfuchs@artweb-design.de>2008-07-02 19:21:07 +0200
commit8f74ba96c47e77e18ce363c8e7cd2fc9196faf7a (patch)
treed3ea17f604e93db745ee74ee21dc7cafa76bc81d /actionpack/lib/action_view/helpers/number_helper.rb
parent7403c825a05af320e20f1b7e20b0c565081ede89 (diff)
downloadrails-8f74ba96c47e77e18ce363c8e7cd2fc9196faf7a.tar.gz
rails-8f74ba96c47e77e18ce363c8e7cd2fc9196faf7a.tar.bz2
rails-8f74ba96c47e77e18ce363c8e7cd2fc9196faf7a.zip
remove core extensions in favor of I18n#translate and I18n#localize
Diffstat (limited to 'actionpack/lib/action_view/helpers/number_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/number_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/number_helper.rb b/actionpack/lib/action_view/helpers/number_helper.rb
index 3e0d5b1db4..981589437d 100644
--- a/actionpack/lib/action_view/helpers/number_helper.rb
+++ b/actionpack/lib/action_view/helpers/number_helper.rb
@@ -70,7 +70,7 @@ module ActionView
# # => 1234567890,50 &pound;
def number_to_currency(number, options = {})
options = options.symbolize_keys
- defaults = :'currency.format'.t(options[:locale]) || {}
+ defaults = I18n.translate(:'currency.format', options[:locale]) || {}
precision = options[:precision] || defaults[:precision]
unit = options[:unit] || defaults[:unit]