demarches-normaliennes/config/locales/time_format.fr.rb
2023-07-04 10:47:41 +02:00

18 lines
537 B
Ruby
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
:fr => {
:time => {
:formats => {
veryshort: lambda { |time, _|
if time.year == Date.current.year
"%d/%m %H:%M"
else
"%d/%m/%Y %H:%M"
end
},
:message_date => lambda { |time, _| "le #{time.day == 1 ? '1er' : time.day} %B à %H h %M" },
:message_date_with_year => lambda { |time, _| "le #{time.day == 1 ? '1er' : time.day} %B %Y à %H h %M" },
:message_date_without_time => lambda { |_time, _| "%d/%m/%Y" }
}
}
}
}