]> git.openstreetmap.org Git - rails.git/commitdiff
Add title texts to changeset list comments/changes
authorAnton Khorev <tony29@yandex.ru>
Wed, 5 Mar 2025 10:39:39 +0000 (13:39 +0300)
committerAnton Khorev <tony29@yandex.ru>
Wed, 5 Mar 2025 11:58:39 +0000 (14:58 +0300)
app/views/changesets/_changeset.html.erb
config/locales/en.yml

index 5ac6565d7beafcf00c1390cffb644cadc20f394e..1f7cf0e3fca9cd9bb49f6836f8d653cd1bf35efe 100644 (file)
       </a>
     </div>
     <div class="col-auto d-flex flex-column justify-content-end align-items-end text-secondary">
-      <%= tag.div :class => ["d-flex align-items-baseline gap-1", { "opacity-50" => changeset.comments.empty? }] do %>
+      <%= tag.div :class => ["d-flex align-items-baseline gap-1", { "opacity-50" => changeset.comments.empty? }],
+                  :title => t(".comments", :count => changeset.comments.length) do %>
         <%= changeset.comments.length %>
         <svg width="12" height="12" viewBox="0 0 16 16" fill="currentColor">
           <path d="M2.678 11.894a1 1 0 0 1 .287.801 11 11 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8 8 0 0 0 8 14c3.996 0 7-2.807 7-6s-3.004-6-7-6-7 2.808-7 6c0 1.468.617 2.83 1.678 3.894m-.493 3.905a22 22 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a10 10 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105" />
         </svg>
       <% end %>
-      <%= tag.div :class => ["d-flex align-items-baseline gap-1", { "opacity-50" => changeset.num_changes.zero? }] do %>
+      <%= tag.div :class => ["d-flex align-items-baseline gap-1", { "opacity-50" => changeset.num_changes.zero? }],
+                  :title => t(".changes", :count => changeset.num_changes) do %>
         <%= changeset.num_changes %>
         <svg width="12" height="12" viewBox="0 0 16 16" fill="currentColor">
           <path d="M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325" />
index b56fb6410c6af3c6460180e2d7921518d247ce7c..c49676a26e5c00d56176498925b975732f136562 100644 (file)
@@ -477,6 +477,12 @@ en:
     changeset:
       no_edits: "(no edits)"
       view_changeset_details: "View changeset details"
+      comments:
+        one: "%{count} comment"
+        other: "%{count} comments"
+      changes:
+        one: "%{count} change"
+        other: "%{count} changes"
     index:
       title: "Changesets"
       title_user: "Changesets by %{user}"