X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0f5646d7f0e0ccaf3e7b5fd36c9ac4047d5df210..69d02c624fe077cff0c39c3c8c658d8407eac278:/app/views/trace/_trace.html.erb
diff --git a/app/views/trace/_trace.html.erb b/app/views/trace/_trace.html.erb
index 696c2045c..31e4cf0b1 100644
--- a/app/views/trace/_trace.html.erb
+++ b/app/views/trace/_trace.html.erb
@@ -1,16 +1,16 @@
<% cl = cycle('table0', 'table1') %>
- <% if OSM_STATUS != :gpx_offline %>
+ <% if STATUS != :gpx_offline %>
<% if trace.inserted %>
<% else %>
- <%= t'trace.trace.pending' %>
+ <%= t'trace.trace.pending' %>
<% end %>
<% end %>
|
<%= link_to trace.name, {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id} %>
- ...
+ ...
<% if trace.inserted %>
(<%= t'trace.trace.count_points', :count => trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %>)
<% end %>
@@ -18,11 +18,7 @@
<%= link_to t('trace.trace.more'), {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id}, {:title => t('trace.trace.trace_details')} %> /
<%= link_to_if trace.inserted?, t('trace.trace.map'), {:controller => 'site', :action => 'index', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => t('trace.trace.view_map')} %> /
<%= link_to t('trace.trace.edit'), {:controller => 'site', :action => 'edit', :gpx => trace.id }, {:title => t('trace.trace.edit_map')} %>
- <% if trace.public? %>
- <%= t'trace.trace.public' %>
- <% else %>
- <%= t'trace.trace.private' %>
- <% end %>
+ <%= t('trace.trace.' + trace.visibility) %>
<%= h(trace.description) %>
|