Last active
March 17, 2025 11:30
-
-
Save mudge/5152839 to your computer and use it in GitHub Desktop.
Using date ordinals in Rails through an I18n time format.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This goes in config/locales/en.rb (*not* en.yml) | |
{ | |
:en => { | |
:time => { | |
:formats => { | |
:full => lambda { |time, _| "%H:%M | %A, #{time.day.ordinalize} %B %Y" } | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= l(Time.now, :format => :full) %> | |
<!-- 14:50 | Wednesday, 13th March 2013 --> |
Agreed. Thanks!
This is nice, hadn't ever considered using .rb
files for dynamic locale stuff like this. I've just thrown together a quick drop-in patch which updates the :default
, :short
and :long
options for both dates and times.
{
:en => {
:date => {
:formats => {
:short => lambda { |date, _| "%b #{date.day.ordinalize}" },
:long => lambda { |date, _| "%B #{date.day.ordinalize}, %Y" }
}
},
:time => {
:formats => {
:default => lambda { |time, _| "%a, #{time.day.ordinalize} %b %Y %H:%M:%S %z" },
:short => lambda { |time, _| "#{time.day.ordinalize} %b %H:%M" },
:long => lambda { |time, _| "%B #{time.day.ordinalize}, %Y %H:%M" }
}
}
}
}
Could no doubt be DRYed up a bit but works all the same.
Wow. I've been working with Rails since version 1 and I am still learning new tricks.
since 0.13 here and I agree ๐
Thanks for sharing it ๐
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is awesome. Thank you.