mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 17:06:31 -06:00
dfd4da9656
Previously, the time format for embedded comments was hardcoded. This commit changes it to the time format defined in I18n. Related meta topic: https://meta.discourse.org/t/embed-dates-are-not-localized/27997/
25 lines
587 B
Ruby
25 lines
587 B
Ruby
# frozen_string_literal: true
|
|
|
|
module EmbedHelper
|
|
def embed_post_date(dt)
|
|
current = Time.now
|
|
|
|
if dt >= 1.day.ago
|
|
distance_of_time_in_words(dt, current)
|
|
else
|
|
if dt.year == current.year
|
|
dt.strftime I18n.t("datetime_formats.formats.short_no_year")
|
|
else
|
|
dt.strftime I18n.t("datetime_formats.formats.no_day")
|
|
end
|
|
end
|
|
end
|
|
|
|
def get_html(post)
|
|
key = "js.action_codes.#{post.action_code}"
|
|
cooked = post.cooked.blank? ? I18n.t(key, when: nil).humanize : post.cooked
|
|
|
|
raw PrettyText.format_for_email(cooked, post)
|
|
end
|
|
end
|