From: Tom Hughes Date: Wed, 11 Sep 2024 16:06:15 +0000 (+0100) Subject: Merge remote-tracking branch 'upstream/pull/5184' X-Git-Tag: live~688 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/c6e12b541bc210f5785aa8f32b86afcc717fa80b?hp=de344eea836d0694dead47508f114bb5a369eca2 Merge remote-tracking branch 'upstream/pull/5184' --- diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb index 97e6351a0..fc5f7cbbc 100644 --- a/app/views/changesets/index.html.erb +++ b/app/views/changesets/index.html.erb @@ -13,9 +13,9 @@ <% end -%> <% elsif params[:bbox] %> -

<%= 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 %>