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

provisioned_member_access_granted_email.text.erb « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b143b8d6f544c6c079c60a250952ae1ad6a704a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% source_link = member_source.web_url %>

<%= _('An Enterprise User GitLab account has been created for you by your organization:') %>
<%= _('Username: %{username}') % { username: @user.username } %>
<%= _('Email: %{email}') % { email: @user.email } %>
<%= _('GitLab group: %{source_link}').html_safe % { source_link: source_link } %>


<%= _('By authenticating with an account tied to an Enterprise e-mail address, it is understood that this account is an Enterprise User. ') %>
<%= _('To ensure no loss of personal content, this account should only be used for matters related to %{group_name}.') % { group_name: member_source.human_name } %>
<%= _('For individual use, create a separate account under your personal email address, not tied to the Enterprise email domain or group.') %>
<%- unless @user.confirmed? %>
  <%= _('To get started, click the link below to confirm your account.') %>
  <%= confirmation_url(@user, confirmation_token: @user.confirmation_token) %>
<%- end %>