debian-mirror-gitlab/app/views/notify/access_token_expired_email.text.erb
2023-03-17 16:20:25 +05:30

13 lines
459 B
Text

<%= _('Hi %{username}!') % { username: sanitize_name(@user.name) } %>
<%- if @token_names.empty? -%>
<%= _('One or more of your personal access tokens have expired.') %>
<%- else -%>
<%= _('The following personal access tokens have expired:') %>
<%- @token_names.each do |token| -%>
- <%= token %>
<%- end -%>
<%- end -%>
<%= _('You can create a new one or check them in your personal access tokens settings %{pat_link}.') % { pat_link: @target_url } %>