diff --git a/app/views/notes/_comment.html.erb b/app/views/notes/_comment.html.erb index c0d6e17d3..d9c17848b 100644 --- a/app/views/notes/_comment.html.erb +++ b/app/views/notes/_comment.html.erb @@ -1,8 +1,8 @@
- | <%= t'note.mine.id' %> | -<%= t'note.mine.creator' %> | -<%= t'note.mine.description' %> | -<%= t'note.mine.created_at' %> | -<%= t'note.mine.last_changed' %> | +<%= t '.id' %> | +<%= t '.creator' %> | +<%= t '.description' %> | +<%= t '.created_at' %> | +<%= t '.last_changed' %> |
---|---|---|---|---|---|---|---|---|---|---|
<%= link_to note.id.to_s, :controller => "browse", :action => "note", :id => note.id %> | <%= note_author(note.author) %> | -<%= note.comments.first.body.to_html %> | -<%= t 'note.mine.ago_html', :when => friendly_date(note.created_at) %> | -<%= t 'note.mine.ago_html', :when => friendly_date(note.updated_at) %> | +<%= note.comments.first.body.to_html %> | +<%= t '.ago_html', :when => friendly_date(note.created_at) %> | +<%= t '.ago_html', :when => friendly_date(note.updated_at) %> |