Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update note comments to use friendly_date_ago helper
  • Loading branch information
gravitystorm committed Jun 19, 2019
1 parent 220ad92 commit 23dfc4d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/views/api/notes/_comment.html.erb
@@ -1,8 +1,8 @@
<div class="note-comment" style="margin-top: 5px">
<% if comment.author.nil? -%>
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_html", :when => friendly_date(comment.created_at) %></div>
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_html", :when => friendly_date_ago(comment.created_at) %></div>
<% else -%>
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_by_html", :when => friendly_date(comment.created_at), :user => note_author(comment.author, :only_path => false) %></div>
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_by_html", :when => friendly_date_ago(comment.created_at), :user => note_author(comment.author, :only_path => false) %></div>
<% end -%>
<div class="note-comment-text"><%= comment.body %></div>
</div>
16 changes: 8 additions & 8 deletions config/locales/en.yml
Expand Up @@ -163,14 +163,14 @@ en:
api:
notes:
comment:
opened_at_html: "Created %{when} ago"
opened_at_by_html: "Created %{when} ago by %{user}"
commented_at_html: "Updated %{when} ago"
commented_at_by_html: "Updated %{when} ago by %{user}"
closed_at_html: "Resolved %{when} ago"
closed_at_by_html: "Resolved %{when} ago by %{user}"
reopened_at_html: "Reactivated %{when} ago"
reopened_at_by_html: "Reactivated %{when} ago by %{user}"
opened_at_html: "Created %{when}"
opened_at_by_html: "Created %{when} by %{user}"
commented_at_html: "Updated %{when}"
commented_at_by_html: "Updated %{when}by %{user}"
closed_at_html: "Resolved %{when}"
closed_at_by_html: "Resolved %{when} by %{user}"
reopened_at_html: "Reactivated %{when}"
reopened_at_by_html: "Reactivated %{when} by %{user}"
rss:
title: "OpenStreetMap Notes"
description_area: "A list of notes, reported, commented on or closed in your area [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})]"
Expand Down

0 comments on commit 23dfc4d

Please sign in to comment.