amended view to pass in time to translated string for private inbox thread time display
This commit is contained in:
parent
e9b1f35484
commit
d8a22da275
2 changed files with 1 additions and 2 deletions
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
.last_author
|
.last_author
|
||||||
.timestamp
|
.timestamp
|
||||||
= time_ago_in_words(conversation.updated_at) + ' ' + t('past')
|
= t('ago', :time => time_ago_in_words(conversation.updated_at))
|
||||||
= authors[conversation.id].name
|
= authors[conversation.id].name
|
||||||
|
|
||||||
- if conversation.participants.size > 2
|
- if conversation.participants.size > 2
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,6 @@ en:
|
||||||
undo: "Undo?"
|
undo: "Undo?"
|
||||||
or: "or"
|
or: "or"
|
||||||
ago: "%{time} ago"
|
ago: "%{time} ago"
|
||||||
past: "ago"
|
|
||||||
username: "Username"
|
username: "Username"
|
||||||
email: "Email"
|
email: "Email"
|
||||||
password: "Password"
|
password: "Password"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue