X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cebb05a3ba6313c245509d7966cec184936f9c42..a66c34991acfff398fbc83c921dfce18a835ee26:/app/views/traces/show.html.erb diff --git a/app/views/traces/show.html.erb b/app/views/traces/show.html.erb index 111c71f36..0ebbd827f 100644 --- a/app/views/traces/show.html.erb +++ b/app/views/traces/show.html.erb @@ -1,53 +1,53 @@ <% content_for :heading do %> -

<%= t '.heading', :name => h(@trace.name) %>

+

<%= t ".heading", :name => h(@trace.name) %>

<% end %> <% if Settings.status != "gpx_offline" %> <% if @trace.inserted %> - + "picture", :id => @trace.id, :display_name => @trace.user.display_name %>"> <% else %> - <%= t '.pending' %> + <%= t ".pending" %> <% end %> <% end %> - - + + - + <% if @trace.inserted? %> - + - - + + <% end %> - + - + - + - +
<%= 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' %><%= 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}" %>
@@ -57,8 +57,8 @@ <% if current_user && (current_user==@trace.user || current_user.administrator? || current_user.moderator?) %>
<% if current_user == @trace.user %> - <%= link_to t('.edit_trace'), edit_trace_path(@trace), :class => "button" %> + <%= link_to t(".edit_trace"), edit_trace_path(@trace), :class => "button" %> <% end %> - <%= button_to t('.delete_trace'), { :controller => 'traces', :action => 'delete', :id => @trace.id }, { :data => { :confirm => t('.confirm_delete') } } %> + <%= button_to t(".delete_trace"), { :controller => "traces", :action => "delete", :id => @trace.id }, { :data => { :confirm => t(".confirm_delete") } } %>
<% end %>