aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorTsutomu Kuroda <t-kuroda@oiax.jp>2012-01-05 00:23:10 +0900
committerTsutomu Kuroda <t-kuroda@oiax.jp>2012-01-05 00:23:10 +0900
commit6724c8c8879dc41a4cdffc507353d8a114ca8028 (patch)
treecb6a20de1489d596d9cc6f871a7f37a791078ce9 /actionpack/lib
parent78372b6cbb655227f4e6ddcb32187704659de84f (diff)
downloadrails-6724c8c8879dc41a4cdffc507353d8a114ca8028.tar.gz
rails-6724c8c8879dc41a4cdffc507353d8a114ca8028.tar.bz2
rails-6724c8c8879dc41a4cdffc507353d8a114ca8028.zip
Infer currency negative format from positive one.
When a locale file sets the format of the positive currency value as '%n %u', the default negative currency format should be '-%n %u'.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/number_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/number_helper.rb b/actionpack/lib/action_view/helpers/number_helper.rb
index 1c0fdb8ff9..857c4fd992 100644
--- a/actionpack/lib/action_view/helpers/number_helper.rb
+++ b/actionpack/lib/action_view/helpers/number_helper.rb
@@ -114,6 +114,7 @@ module ActionView
defaults = I18n.translate(:'number.format', :locale => options[:locale], :default => {})
currency = I18n.translate(:'number.currency.format', :locale => options[:locale], :default => {})
+ currency[:negative_format] ||= "-" + currency[:format] if currency[:format]
defaults = DEFAULT_CURRENCY_VALUES.merge(defaults).merge!(currency)
defaults[:negative_format] = "-" + options[:format] if options[:format]