X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0f91ad89663fbadca007b1c4dce03f9a76ad0e5f..32b422aefb5a25644afa7edef50777732cf5b20f:/app/views/trace/view.rhtml?ds=sidebyside diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml index a5b0cef09..381a2fc97 100644 --- a/app/views/trace/view.rhtml +++ b/app/views/trace/view.rhtml @@ -1,42 +1,46 @@ -
Filename: | -<%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>) | +<%= t'trace.view.filename' %> | +<%= @trace.name %> (<%= link_to t('trace.view.download'), :controller => 'trace', :action => 'data', :id => @trace.id %>) | ||
Uploaded at: | +<%= t'trace.view.uploaded' %> | <%= @trace.timestamp %> | |||
Points: | +<%= t'trace.view.points' %> | <%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> | |||
Start coordinate: | -<%= @trace.latitude %>; <%= @trace.longitude %> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to 'edit', :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>) |
+ <%= t'trace.view.start_coordinates' %> | +<%= @trace.latitude %>; <%= @trace.longitude %> (<%=link_to t('trace.view.map'), :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to t('trace.view.edit'), :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>) |
||
Owner: | -<%= link_to @trace.user.display_name, {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %> | +<%= t'trace.view.owner' %> | +<%= link_to h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %> | ||
Description: | -<%= @trace.description %> | +<%= t'trace.view.description' %> | +<%= h(@trace.description) %> | ||
Tags: | +<%= t'trace.view.tags' %> | <% if @trace.tags %> <% @trace.tags.each do |tag| %> <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %> <% end %> <% else %> - None + <%= t'trace.view.none' %> <% end %> |
<%= button_to 'Make this track public permanently', :controller => 'trace', :action => 'make_public', :id => @trace.id %> | +<%= button_to t('trace.view.make_public'), :controller => 'trace', :action => 'make_public', :id => @trace.id %> | <% end %> - <% if @trace.user.id == @user.id %> -<%= button_to 'Edit this track', :controller => 'trace', :action => 'edit', :id => @trace.id %> | + <% if @trace.user == @user %> +<%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %> | <% end %> - <% if @trace.user.id == @user.id %> -<%= button_to 'Delete this track', :controller => 'trace', :action => 'delete', :id => @trace.id %> | + <% if @trace.user == @user %> +<%= button_to t('trace.view.delete_track'), :controller => 'trace', :action => 'delete', :id => @trace.id %> | <% end %>