X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/35d24fac8835c9f694e29a9524c88c193048a98e..dddb6eba3cee47e14cbafa75048f157f16a27682:/app/views/changesets/index.html.erb diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb index 3ead2abda..85c5f0bcb 100644 --- a/app/views/changesets/index.html.erb +++ b/app/views/changesets/index.html.erb @@ -4,14 +4,18 @@ <% if @changesets.size == 20 -%>
- <%= link_to t(".load_more"), url_for(@params.merge(:max_id => @changesets.last.id - 1)), :class => "btn btn-primary" %> -
<%= image_tag "searching.gif" %>
+ <%= link_to t(".load_more"), url_for(@params.merge(:before => @changesets.last.id)), :class => "btn btn-primary" %> +
+
+ <%= t("browse.start_rjs.loading") %> +
+
<% end -%> <% elsif params[:bbox] %> -

<%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %>

+

<%= params[:before] ? t(".no_more_area") : t(".empty_area") %>

<% elsif params[:display_name] %> -

<%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %>

+

<%= params[:before] ? t(".no_more_user") : t(".empty_user") %>

<% else %> -

<%= t(params[:max_id] ? ".no_more" : ".empty") %>

+

<%= params[:before] ? t(".no_more") : t(".empty") %>

<% end %>