X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cc90867183367d7758a11da3f2058117c7529891..e72f35f8d9f9452dcc4da95d46d6c25ca3e063da:/app/views/changeset/_changeset.rhtml?ds=sidebyside
diff --git a/app/views/changeset/_changeset.rhtml b/app/views/changeset/_changeset.rhtml
index 83b0b0ce8..da2bcbac1 100644
--- a/app/views/changeset/_changeset.rhtml
+++ b/app/views/changeset/_changeset.rhtml
@@ -3,32 +3,53 @@
#<%= changeset.id %>
+ |
-
- <% 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 %>
+ |
-
+
+ <%if showusername %>
+ |
+ <% if changeset.user.data_public? %>
+ <%= link_to h(changeset.user.display_name), :controller => "changeset", :action => "list_user", :display_name => changeset.user.display_name %>
+ <% else %>
+ <%= t'changeset.changeset.anonymous' %>
+ <% end %>
+ |
+ <% end %>
+
+
-
+ |
<% if changeset.min_lat.nil? %>
- (no edits)
+ <%= t'changeset.changeset.no_edits' %>
<% else
- lat1 = changeset.min_lat/GeoRecord::SCALE.to_f
- lat2 = changeset.max_lat/GeoRecord::SCALE.to_f
- lon1 = changeset.min_lon/GeoRecord::SCALE.to_f
- lon2 = changeset.min_lon/GeoRecord::SCALE.to_f
+ 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",lat1) -%>,<%= format("%0.3f",lon1) -%>) to
- (<%= format("%0.3f",lat2) -%>,<%= format("%0.3f",lon2) -%>)
- <% end %>
+ '><%= format("%0.3f",minlon) -%>,<%= format("%0.3f",minlat) -%>,<%= format("%0.3f",maxlon) -%>,<%= format("%0.3f",maxlat) -%>
+
+ <% if changeset.area > 1500000000000 %>
+ <% t'changeset.changeset.big_area' %>
+ <%
+ end
+ end
+ %>
+ |
- <%= 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')} %>
+ |