X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/44629832dd0207d7b0f50b93f1d00b4373dd4d49..3a16b68368d4d4fdedb32c58d3c22d52203d07ce:/app/views/changeset/list.html.erb
diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb
index b0ccf67dc..36ec59379 100644
--- a/app/views/changeset/list.html.erb
+++ b/app/views/changeset/list.html.erb
@@ -2,12 +2,16 @@
<%= render :partial => 'changeset', :collection => @edits %>
+<% if @edits.size == 20 -%>
<%= link_to t('changeset.list.load_more'), url_for(params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %>
<%= image_tag "searching.gif", :class => "loader", :style => "display: none;" %>
-<% elsif params[:max_id] %>
- <%= t('changeset.list.no_more') %>
+<% end -%>
+<% elsif params[:bbox] %>
+ <%= t(params[:max_id] ? 'changeset.list.no_more_area' : 'changeset.list.empty_area') %>
+<% elsif params[:display_name] %>
+ <%= t(params[:max_id] ? 'changeset.list.no_more_user' : 'changeset.list.empty_user') %>
<% else %>
- <%= t('changeset.list.empty') %>
+ <%= t(params[:max_id] ? 'changeset.list.no_more' : 'changeset.list.empty') %>
<% end %>