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 --> |
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
Wow. I've been working with Rails since version 1 and I am still learning new tricks.