debian-mirror-gitlab/app/views/notify/new_gpg_key_email.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
447 B
Text
Raw Normal View History

2017-09-10 17:25:29 +05:30
%p
2022-10-11 01:57:18 +05:30
= s_("Notify|Hi %{user}!") % { user: sanitize_name(@user.name) }
2017-09-10 17:25:29 +05:30
%p
2022-10-11 01:57:18 +05:30
= s_("Notify|A new GPG key was added to your account:")
2017-09-10 17:25:29 +05:30
%p
2022-10-11 01:57:18 +05:30
= s_("Notify|Fingerprint: %{fingerprint}").html_safe % { fingerprint: content_tag(:code, @gpg_key.fingerprint) }
2017-09-10 17:25:29 +05:30
%p
2022-10-11 01:57:18 +05:30
- removal_link = link_to _("GPG Keys"), profile_gpg_keys_url
= s_("Notify|If this key was added in error, you can remove it under %{removal_link}").html_safe % { removal_link: removal_link }