20 lines
745 B
Text
20 lines
745 B
Text
<% content_for :message do %>
|
|
<%= t("mailer.general.greeting.formal.addressed_html", name: @user.login) %>
|
|
|
|
<% if @works.size == 1 %>
|
|
<%= t(".hidden_one.text", title: @works.first.title, work_url: work_url(@works.first)) %>
|
|
<% else %>
|
|
<%= t(".hidden_multiple", count: @works.size) %>
|
|
<% @works.each do |work| %>
|
|
<%= t(".work_info", title: work.title, work_url: work_url(work)) %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= t(".access", count: @works.size) %>
|
|
|
|
<%= t(".check_email", count: @works.size) %>
|
|
|
|
<%= t(".tos_violation.text", count: @works.size, tos_url: tos_url, content_policy_url: content_url, tos_faq_url: tos_faq_url(anchor: "policy_procedures_faq")) %>
|
|
|
|
<%= t(".help.text", count: @works.size, contact_abuse_url: new_abuse_report_url) %>
|
|
<% end %>
|