X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7a925ff1d97596ff3c8ba4627d538abb7328ac2d..698a49077c67297cd8ea7b370d1ac2298ee5d9f6:/app/views/changeset/_changeset.rhtml
diff --git a/app/views/changeset/_changeset.rhtml b/app/views/changeset/_changeset.rhtml
index 02107771d..da2bcbac1 100644
--- a/app/views/changeset/_changeset.rhtml
+++ b/app/views/changeset/_changeset.rhtml
@@ -6,7 +6,7 @@
- <% if changeset.closed_at > DateTime.now %> (still editing)
+ <% if changeset.closed_at > DateTime.now %> <%= t'changeset.changeset.still_editing' %>
<% else %><%= changeset.closed_at.strftime("%d %b %Y %H:%M") %><% end %>
|
@@ -16,7 +16,7 @@
<% if changeset.user.data_public? %>
<%= link_to h(changeset.user.display_name), :controller => "changeset", :action => "list_user", :display_name => changeset.user.display_name %>
<% else %>
- Anonymous
+ <%= t'changeset.changeset.anonymous' %>
<% end %>
<% end %>
@@ -25,23 +25,23 @@
<% if changeset.tags['comment'] %>
<%= h(changeset.tags['comment']) %>
<% else %>
- (none)
+ <%= t'changeset.changeset.no_comment' %>
<% end %>
<% if changeset.min_lat.nil? %>
- (no edits)
+ <%= t'changeset.changeset.no_edits' %>
<% else
minlon = changeset.min_lon/GeoRecord::SCALE.to_f
minlat = changeset.min_lat/GeoRecord::SCALE.to_f
maxlon = changeset.max_lon/GeoRecord::SCALE.to_f
maxlat = changeset.max_lat/GeoRecord::SCALE.to_f
%>
- <%= format("%0.3f",minlon) -%>,<%= format("%0.3f",minlat) -%>,<%= format("%0.3f",maxlon) -%>,<%= format("%0.3f",maxlat) -%>
+ '><%= format("%0.3f",minlon) -%>,<%= format("%0.3f",minlat) -%>,<%= format("%0.3f",maxlon) -%>,<%= format("%0.3f",maxlat) -%>
<% if changeset.area > 1500000000000 %>
- (big)
+ <% t'changeset.changeset.big_area' %>
<%
end
end
@@ -49,7 +49,7 @@
|
- <%= link_to 'more', {:controller => 'browse', :action => 'changeset', :id => changeset.id}, {:title => 'View changeset details'} %>
+ <%= link_to t('changeset.changeset.more'), {:controller => 'browse', :action => 'changeset', :id => changeset.id}, {:title => t('changeset.changeset.view_changeset_details')} %>
|