X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/35d24fac8835c9f694e29a9524c88c193048a98e..2882a65d21fd5758c2a90d1cbd808103ab7b8000:/app/views/changesets/index.html.erb diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb index 3ead2abda..fc5f7cbbc 100644 --- a/app/views/changesets/index.html.erb +++ b/app/views/changesets/index.html.erb @@ -5,13 +5,17 @@ <% if @changesets.size == 20 -%>
<%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %>
+<%= params[:max_id] ? t(".no_more_area") : t(".empty_area") %>
<% elsif params[:display_name] %> -<%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %>
+<%= params[:max_id] ? t(".no_more_user") : t(".empty_user") %>
<% else %> -<%= t(params[:max_id] ? ".no_more" : ".empty") %>
+<%= params[:max_id] ? t(".no_more") : t(".empty") %>
<% end %>