]> git.openstreetmap.org Git - rails.git/commitdiff
Localise formatting of point count for traces
authorTom Hughes <tom@compton.nu>
Wed, 15 Apr 2020 21:42:41 +0000 (22:42 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 15 Apr 2020 21:42:41 +0000 (22:42 +0100)
Fixes #2592

app/views/traces/show.html.erb

index 19d1b06b823e7b6c7a6a3d45bd8b0858aaf4ae2d..f7517c8021b22ddc167ec849a50ac4c333e19282 100644 (file)
@@ -22,7 +22,7 @@
   <% if @trace.inserted? %>
   <tr>
     <td><%= t ".points" %></td>
-    <td><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %></td></tr>
+    <td><%= number_with_delimiter(@trace.size) %></td></tr>
   <tr>
     <td><%= t ".start_coordinates" %></td>
     <td><div class="d-inline"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%= link_to t(".map"), :controller => "site", :action => "index", :mlat => @trace.latitude, :mlon => @trace.longitude, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%= link_to t(".edit"), :controller => "site", :action => "edit", :gpx => @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>)</td>