]> git.openstreetmap.org Git - rails.git/commitdiff
Use the distance_in_words_ago scope for trace display
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 19 Jun 2019 09:23:43 +0000 (11:23 +0200)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 19 Jun 2019 16:04:08 +0000 (18:04 +0200)
Refs #2255

app/views/traces/_trace.html.erb
config/locales/en.yml

index 34f6615002eb454ddafce55e4a68c3fb6bfd91e1..ceeb4d88d709538a86eb0038de2715ca5bcfe262 100644 (file)
@@ -14,7 +14,7 @@
       <% if trace.inserted %>
         (<%= t ".count_points", :count => trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %>)
       <% end %>
-      ... <%= t ".ago", :time_in_words_ago => time_ago_in_words(trace.timestamp) %></span>
+      ... <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %></span>
       <%= link_to_if trace.inserted?, t(".map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" }, { :title => t(".view_map") } %> /
       <%= link_to t(".edit"), { :controller => "site", :action => "edit", :gpx => trace.id }, { :title => t(".edit_map") } %>
       <span class="trace_<%= trace.visibility %>"><%= t("." + trace.visibility) %></span>
index 0281703ab73178bcf4583dabd4bafdeece119600..83aadc92c3e3fd67a9d433c6e9d58093176cf508 100644 (file)
@@ -1857,7 +1857,6 @@ en:
     trace:
       pending: "PENDING"
       count_points: "%{count} points"
-      ago: "%{time_in_words_ago} ago"
       more: "more"
       trace_details: "View Trace Details"
       view_map: "View Map"