gitlab-ce/app/views/notify/user_deactivated_email.html...

21 lines
956 B
Plaintext

= email_default_heading(_('Hello %{name},') % { name: @name })
%p
- gitlab_host_link = '<a href="%{url}" target="_blank" rel="noopener noreferrer">%{host}</a>'.html_safe % { url: root_url, host: @host }
= _('Your account has been deactivated for %{gitlab_host_link}. You will not be able to: ').html_safe % { gitlab_host_link: gitlab_host_link }
%ul
%li
= _('Access Git repositories or the API.')
%li
= _('Receive any notifications from GitLab.')
%li
= _('Use slash commands.')
%p
- gitlab_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: root_url }
- link_end = '</a>'.html_safe
= _('To reactivate your account, %{gitlab_link_start}sign in to GitLab.%{link_end}').html_safe % { gitlab_link_start: gitlab_link_start, link_end: link_end }
%p
= _('Please contact your GitLab administrator if you think this is an error.')
= render 'layouts/mailer/user_deactivated_additional_text'