X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/420a7289a0b08eee091f6650c2e83166df3fbe69..3af16f6337b52546297e7e09a1aba9b0e1df7e15:/app/views/traces/show.html.erb diff --git a/app/views/traces/show.html.erb b/app/views/traces/show.html.erb index 178cfbe73..0ebbd827f 100644 --- a/app/views/traces/show.html.erb +++ b/app/views/traces/show.html.erb @@ -1,64 +1,64 @@ <% content_for :heading do %> -
<%= t '.filename' %> | -<%= @trace.name %> (<%= link_to t('.download'), trace_data_path(@trace) %>) | +<%= t ".filename" %> | +<%= @trace.name %> (<%= link_to t(".download"), trace_data_path(@trace) %>) |
<%= t '.uploaded' %> | +<%= t ".uploaded" %> | <%= l @trace.timestamp, :format => :friendly %> | |
<%= t '.points' %> | -<%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> | <%= t ".points" %> | +<%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %> |
<%= t '.start_coordinates' %> | -<%= @trace.latitude %>; <%= @trace.longitude %> (<%=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}" %>) |
+ <%= t ".start_coordinates" %> | +<%= @trace.latitude %>; <%= @trace.longitude %> (<%= 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}" %>) |
<%= t '.owner' %> | +<%= t ".owner" %> | <%= link_to h(@trace.user.display_name), user_path(@trace.user) %> | |
<%= t '.description' %> | +<%= t ".description" %> | <%= h(@trace.description) %> | |
<%= t '.tags' %> | +<%= t ".tags" %> | <% unless @trace.tags.empty? %> - <%= raw(@trace.tags.collect { |tag| link_to tag.tag, { :controller => 'traces', :action => 'index', :tag => tag.tag, :id => nil } }.join(", ")) %> + <%= raw(@trace.tags.collect { |tag| link_to tag.tag, :controller => "traces", :action => "index", :tag => tag.tag, :id => nil }.join(", ")) %> <% else %> - <%= t '.none' %> + <%= t ".none" %> <% end %> | |
<%= t '.visibility' %> | +<%= t ".visibility" %> | <%= t "traces.visibility.#{@trace.visibility}" %> |