X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/318c7a9854f31bebd39eb8e90fbf11a95bfa8995..a1853204faefd8270e3db4a988ef373ea1ab342d:/app/views/trace/_trace.html.erb?ds=sidebyside diff --git a/app/views/trace/_trace.html.erb b/app/views/trace/_trace.html.erb index 509c346ed..0847ddaf1 100644 --- a/app/views/trace/_trace.html.erb +++ b/app/views/trace/_trace.html.erb @@ -1,39 +1,30 @@ <% cl = cycle('table0', 'table1') %> - <% if OSM_STATUS != :gpx_offline %> + <% if STATUS != :gpx_offline %> <% if trace.inserted %> <% else %> - <%= t'trace.trace.pending' %> + <%= t '.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 %> - ... <%= t'trace.trace.ago', :time_in_words_ago => time_ago_in_words(trace.timestamp) %> - <%= 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.visibility == "public" %> - <%= t'trace.trace.public' %> - <% elsif trace.visibility == "identifiable" %> - <%= t'trace.trace.identifiable' %> - <% elsif trace.visibility == "trackable" %> - <%= t'trace.trace.trackable' %> - <% else %> - <%= t'trace.trace.private' %> + ... + <% if trace.inserted %> + (<%= t '.count_points', :count => trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %>) <% end %> + ... <%= t '.ago', :time_in_words_ago => time_ago_in_words(trace.timestamp) %> + <%= link_to_if trace.inserted?, t('.map'), {:controller => 'site', :action => 'index', :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}"}, {:title => t('.view_map')} %> / + <%= link_to t('.edit'), {:controller => 'site', :action => 'edit', :gpx => trace.id }, {:title => t('.edit_map')} %> + <%= t('.' + trace.visibility) %>
- <%= h(trace.description) %> + <%= trace.description %>
- <%= t'trace.trace.by' %> <%=link_to h(trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => trace.user.display_name} %> + <%= t '.by' %> <%=link_to h(trace.user.display_name), user_path(trace.user) %> <% if !trace.tags.empty? %> - <%= t'trace.trace.in' %> - <%= trace.tags.collect { |tag| link_to_tag tag.tag }.join(", ") %> + <%= t '.in' %> + <%= raw(trace.tags.collect { |tag| link_to_tag tag.tag }.join(", ")) %> <% end %>