13 lines
459 B
Text
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 } %>
|