X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/0f5646d7f0e0ccaf3e7b5fd36c9ac4047d5df210..d2db785a2ac74eed0392694fa659cce7337c68d1:/app/views/trace/_trace.html.erb
diff --git a/app/views/trace/_trace.html.erb b/app/views/trace/_trace.html.erb
index 696c2045c..32717d824 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,18 +18,14 @@
<%= 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) %>
<%= t'trace.trace.by' %> <%=link_to h(trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => trace.user.display_name} %>
<% if !trace.tags.empty? %>
<%= t'trace.trace.in' %>
- <%= trace.tags.collect { |tag| link_to_tag tag.tag }.join(", ") %>
+ <%= raw(trace.tags.collect { |tag| link_to_tag tag.tag }.join(", ")) %>
<% end %>
|