Committing first of trace view i18n untested
This commit is contained in:
parent
c451aa915c
commit
1b1b1b2f57
3 changed files with 21 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
||||||
<h1>Upload GPS Trace</h1>
|
<h1><%= t'trace.create.upload_trace' %>Upload GPS Trace</h1>
|
||||||
|
|
||||||
<%= error_messages_for 'trace' %>
|
<%= error_messages_for 'trace' %>
|
||||||
|
|
||||||
|
|
|
@ -6,28 +6,28 @@
|
||||||
|
|
||||||
<table border="0">
|
<table border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td>Filename:</td>
|
<td><%= t'trace.edit.filename' %></td>
|
||||||
<td><%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>)</td>
|
<td><%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>)</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Uploaded at:</td>
|
<td><%= t'trace.edit.uploaded_at' %></td>
|
||||||
<td><%= @trace.timestamp %></td>
|
<td><%= @trace.timestamp %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% if @trace.inserted? %>
|
<% if @trace.inserted? %>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Points:</td>
|
<td><%= t'trace.edit.points' %></td>
|
||||||
<td><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %></td></tr>
|
<td><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %></td></tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Start coordinate:</td>
|
<td><%= t'trace.edit.start_coord' %>Start coordinate:</td>
|
||||||
<td><div class="geo" style="display: inline"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%=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 %>)</td>
|
<td><div class="geo" style="display: inline"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to t('trace.edit.edit'), :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>)</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Owner:</td>
|
<td><%= t'trace.edit.owner' %></td>
|
||||||
<td><%= link_to h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %></td>
|
<td><%= link_to h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Description:</td>
|
<td><%= t'trace.edit.description' %>Description:</td>
|
||||||
<td><%= f.text_field :description %></td>
|
<td><%= f.text_field :description %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -261,6 +261,19 @@ en:
|
||||||
search_help: "examples: 'Alkmaar', 'Regent Street, Cambridge', 'CB2 5AQ', or 'post offices near Lünen' <a href='http://wiki.openstreetmap.org/wiki/Search'>more examples...</a>"
|
search_help: "examples: 'Alkmaar', 'Regent Street, Cambridge', 'CB2 5AQ', or 'post offices near Lünen' <a href='http://wiki.openstreetmap.org/wiki/Search'>more examples...</a>"
|
||||||
key:
|
key:
|
||||||
map_key: "Map key"
|
map_key: "Map key"
|
||||||
|
trace:
|
||||||
|
create:
|
||||||
|
upload: "Upload GPS Trace"
|
||||||
|
edit:
|
||||||
|
filename: "Filename:"
|
||||||
|
uploaded_at: "Uploaded at:"
|
||||||
|
points: "Points:"
|
||||||
|
start_coord: "Start coordinate:"
|
||||||
|
edit: "edit"
|
||||||
|
owner: "Owner:"
|
||||||
|
description: "Description:"
|
||||||
|
tags: "Tags:"
|
||||||
|
save_button: "Save Changes"
|
||||||
user:
|
user:
|
||||||
login:
|
login:
|
||||||
heading: Login
|
heading: Login
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue