]> git.openstreetmap.org Git - rails.git/commitdiff
Avoid using raw html in translations for the issues index
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 22 Mar 2023 17:34:16 +0000 (17:34 +0000)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 29 Mar 2023 17:52:45 +0000 (18:52 +0100)
app/views/issues/index.html.erb
config/locales/en.yml

index 0b933653863896a987be963e86540a18c260077b..da00b5fea27a8455fdd1b0951feb26070bff511d 100644 (file)
           <td><%= link_to reportable_title(issue.reportable), reportable_url(issue.reportable) %></td>
           <td><%= link_to issue.reported_user.display_name, user_path(issue.reported_user) if issue.reported_user %></td>
           <td>
+            <% time_ago_tag = tag.abbr(time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
+                                       :title => l(issue.updated_at)) %>
             <% if issue.user_updated %>
-              <%= t ".last_updated_time_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
-                                                    :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
-                                                    :title => l(issue.updated_at) %>
+              <%= t ".last_updated_time_ago_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
+                                                        :time_ago => time_ago_tag %>
             <% else %>
-              <%= t ".last_updated_time_html", :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
-                                               :title => l(issue.updated_at) %>
+              <%= time_ago_tag %>
             <% end %>
           </td>
         </tr>
index ed58ef3f110d6cc324d770f8a47d2ca4501bb397..0a9ca998010d2423b3a9fc6f8cec044f4776e787 100644 (file)
@@ -1387,8 +1387,7 @@ en:
       status: Status
       reports: Reports
       last_updated: Last Updated
-      last_updated_time_html: "<abbr title='%{title}'>%{time}</abbr>"
-      last_updated_time_user_html: "<abbr title='%{title}'>%{time}</abbr> by %{user}"
+      last_updated_time_ago_user_html: "%{time_ago} by %{user}"
       link_to_reports: View Reports
       reports_count:
         one: "%{count} Report"