Rework note events to avoid raw html in translations
This commit is contained in:
parent
aebac722c2
commit
fad3aedbbb
3 changed files with 17 additions and 17 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue