aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/locale/en.rb
diff options
context:
space:
mode:
authorChristian Blais <christ.blais@gmail.com>2018-03-04 21:29:54 -0500
committerChristian Blais <christ.blais@gmail.com>2018-03-05 08:41:49 -0500
commitf58e2dd095e2e9e4e42e6d7af229f87e70fd5427 (patch)
tree61c87e7320bbacf98d3dc61b62dcf64e5d4faa0a /activesupport/lib/active_support/locale/en.rb
parentae2d36cf21281f4b720332a086b021d867e80084 (diff)
downloadrails-f58e2dd095e2e9e4e42e6d7af229f87e70fd5427.tar.gz
rails-f58e2dd095e2e9e4e42e6d7af229f87e70fd5427.tar.bz2
rails-f58e2dd095e2e9e4e42e6d7af229f87e70fd5427.zip
`ActiveSupport::Inflector#ordinal` and `ActiveSupport::Inflector#ordinalize`
now support translations through I18n. { fr: { number: { nth: { ordinals: lambda do |_key, number:, **_options| if number.to_i.abs == 1 'er' else 'e' end end, ordinalized: lambda do |_key, number:, **_options| "#{number}#{ActiveSupport::Inflector.ordinal(number)}" end } } } }
Diffstat (limited to 'activesupport/lib/active_support/locale/en.rb')
-rw-r--r--activesupport/lib/active_support/locale/en.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/locale/en.rb b/activesupport/lib/active_support/locale/en.rb
new file mode 100644
index 0000000000..26c2280c95
--- /dev/null
+++ b/activesupport/lib/active_support/locale/en.rb
@@ -0,0 +1,28 @@
+# frozen_string_literal: true
+
+{
+ en: {
+ number: {
+ nth: {
+ ordinals: lambda do |_key, number:, **_options|
+ abs_number = number.to_i.abs
+
+ if (11..13).cover?(abs_number % 100)
+ "th"
+ else
+ case abs_number % 10
+ when 1 then "st"
+ when 2 then "nd"
+ when 3 then "rd"
+ else "th"
+ end
+ end
+ end,
+
+ ordinalized: lambda do |_key, number:, **_options|
+ "#{number}#{ActiveSupport::Inflector.ordinal(number)}"
+ end
+ }
+ }
+ }
+}