summaryrefslogtreecommitdiff
path: root/app/views/users/_user.html.erb
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-07-25 02:56:49 +0200
committererdgeist <erdgeist@erdgeist.org>2026-07-25 02:56:49 +0200
commited32bc6902ab634451539770bcd910662212e01a (patch)
tree8fc514889c2f80052a3873753d9cb32bfa879bb7 /app/views/users/_user.html.erb
parent0a5d7806700bb3154529b99abc75d37ccc46faff (diff)
Extract admin strings to i18n: users and tags clusters
Diffstat (limited to 'app/views/users/_user.html.erb')
-rw-r--r--app/views/users/_user.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/users/_user.html.erb b/app/views/users/_user.html.erb
index 3a88f5e2..9c6466a2 100644
--- a/app/views/users/_user.html.erb
+++ b/app/views/users/_user.html.erb
@@ -8,8 +8,8 @@
8 </td> 8 </td>
9 <td> 9 <td>
10 <%= button_to user_path(user), method: :delete, 10 <%= button_to user_path(user), method: :delete,
11 form: { data: { confirm: "Do you really want to destroy user #{user.login}?" }, class: 'button_to destructive' } do %> 11 form: { data: { confirm: t(".confirm_destroy", :login => user.login) }, class: 'button_to destructive' } do %>
12 <%= icon("trash", library: "tabler", "aria-hidden": true) %> Destroy 12 <%= icon("trash", library: "tabler", "aria-hidden": true) %> <%= t("admin.common.destroy") %>
13 <% end %> 13 <% end %>
14 </td> 14 </td>
15 <% end %> 15 <% end %>