提交 6724c8c8 编写于 作者: T Tsutomu Kuroda

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'.
上级 78372b6c
......@@ -114,6 +114,7 @@ def number_to_currency(number, options = {})
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]
......
......@@ -53,6 +53,13 @@ def test_number_to_currency_with_clean_i18n_settings
assert_equal("-$10.00", number_to_currency(-10))
end
end
def test_number_to_currency_without_currency_negative_format
clean_i18n do
I18n.backend.store_translations 'ts', :number => { :currency => { :format => { :unit => '@', :format => '%n %u' } } }
assert_equal("-10.00 @", number_to_currency(-10, :locale => 'ts'))
end
end
def test_number_with_i18n_precision
#Delimiter was set to ""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册