Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_deactivated_email.html.haml « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9262cab2196a8684311e51c0ec5488f450afc2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= email_default_heading(_('Hello %{name},') % { name: @name })
%p
  = _('Your account has been deactivated. You will not be able to: ')
%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.')