]> git.openstreetmap.org Git - rails.git/commitdiff
Show changeset element counts using badges
authorAnton Khorev <tony29@yandex.ru>
Mon, 3 Jun 2024 11:51:47 +0000 (14:51 +0300)
committerAnton Khorev <tony29@yandex.ru>
Wed, 15 Jan 2025 23:54:30 +0000 (02:54 +0300)
app/views/changesets/_paging_nav.html.erb
config/locales/en.yml

index 47b0c7590e72b6a00ac04c3ca1346ca1eb580843..9fa23f6701f2bf438adc5ee818937561814703da 100644 (file)
@@ -1,12 +1,18 @@
 <% if pages.page_count == 1 %>
   <h4 class="fs-5">
-    <%= t ".#{type.pluralize}", :count => pages.item_count %>
+    <%= t ".#{type.pluralize}_title" %>
+    <span class="badge count-number">
+      <%= pages.item_count %>
+    </span>
   </h4>
 <% elsif pages.page_count > 1 %>
   <h4 class="fs-5">
-    <%= t ".#{type.pluralize}_paginated", :x => pages.current_page.first_item,
-                                          :y => pages.current_page.last_item,
-                                          :count => pages.item_count %>
+    <%= t ".#{type.pluralize}_title" %>
+    <span class="badge count-number">
+      <%= t ".range", :x => pages.current_page.first_item,
+                      :y => pages.current_page.last_item,
+                      :count => pages.item_count %>
+    </span>
   </h4>
 
   <%= sidebar_classic_pagination(pages, "#{type}_page") do |page|
index 32b0bc6bcc680fea9ba486ed7e1cf81eddeefb76..2fffdabddd62e0088cd23e3d23eefc9e7e425f9a 100644 (file)
@@ -523,12 +523,13 @@ en:
       changesetxml: "Changeset XML"
       osmchangexml: "osmChange XML"
     paging_nav:
-      nodes: "Nodes (%{count})"
+      nodes_title: "Nodes"
       nodes_paginated: "Nodes (%{x}-%{y} of %{count})"
-      ways: "Ways (%{count})"
+      ways_title: "Ways"
       ways_paginated: "Ways (%{x}-%{y} of %{count})"
-      relations: "Relations (%{count})"
+      relations_title: "Relations"
       relations_paginated: "Relations (%{x}-%{y} of %{count})"
+      range: "%{x}-%{y} of %{count}"
     not_found_message:
       sorry: "Sorry, changeset #%{id} could not be found."
     timeout: