<%= gettext("An administrator changed your role") %>
|
|
<%= gettext(
"Hi there! We just wanted to inform you that an administrator from %{instance} just changed your account role.",
%{instance: @instance_name}
)
|> raw %>
|
<%= gettext("Old role") %>
|
<%= render("admin/_role.html", role: @old_role) %>
|
<%= gettext("New role") %>
|
<%= render("admin/_role.html", role: @new_role) %>
|
|
<%= gettext(
"If something doesn't feel right to you, please contact the instance administrator through the contact methods %{start_link}on the instance's about page%{end_link}.",
%{
start_link: "",
end_link: ""
}
)
|> raw %>
|
|