aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/duration.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2009-02-27 14:22:39 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2009-02-27 14:22:39 +0100
commit6de83562f91028629bd24447aa521bc72ef8277a (patch)
treeca6a56c6fa441054b82a039b4ab263182d77333a /activesupport/lib/active_support/duration.rb
parente2b925fa68203607fb4f9a9aa457c0435c969f9a (diff)
downloadrails-6de83562f91028629bd24447aa521bc72ef8277a.tar.gz
rails-6de83562f91028629bd24447aa521bc72ef8277a.tar.bz2
rails-6de83562f91028629bd24447aa521bc72ef8277a.zip
Force all internal calls to Array#to_sentence to use English [#2010 state:resolved]
Diffstat (limited to 'activesupport/lib/active_support/duration.rb')
-rw-r--r--activesupport/lib/active_support/duration.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/duration.rb b/activesupport/lib/active_support/duration.rb
index c41e86dfd1..f64661c5b1 100644
--- a/activesupport/lib/active_support/duration.rb
+++ b/activesupport/lib/active_support/duration.rb
@@ -70,7 +70,7 @@ module ActiveSupport
[:years, :months, :days, :minutes, :seconds].map do |length|
n = consolidated[length]
"#{n} #{n == 1 ? length.to_s.singularize : length.to_s}" if n.nonzero?
- end.compact.to_sentence
+ end.compact.to_sentence(:locale => :en)
end
protected