Rework note events to avoid raw html in translations

This commit is contained in:
Andy Allan 2023-03-29 17:07:03 +01:00
parent aebac722c2
commit fad3aedbbb
3 changed files with 17 additions and 17 deletions

View file

@ -3,13 +3,13 @@ module NoteHelper
def note_event(event, at, by)
if by.nil?
t("notes.show.#{event}_by_anonymous_html",
:when => friendly_date_ago(at),
:exact_time => l(at))
t("notes.show.event_#{event}_by_anonymous_html",
:time_ago => tag.abbr(friendly_date_ago(at),
:title => l(at)))
else
t("notes.show.#{event}_by_html",
:when => friendly_date_ago(at),
:exact_time => l(at),
t("notes.show.event_#{event}_by_html",
:time_ago => tag.abbr(friendly_date_ago(at),
:title => l(at)),
:user => note_author(by))
end
end