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

new_gpg_key_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: fca0dbd168a6523fc196569063ca2ed1ac64aab1 (plain)
1
2
3
4
5
6
7
8
9
%p
  = s_("Notify|Hi %{user}!") % { user: sanitize_name(@user.name) }
%p
  = s_("Notify|A new GPG key was added to your account:")
%p
  = s_("Notify|Fingerprint: %{fingerprint}").html_safe % { fingerprint: content_tag(:code, @gpg_key.fingerprint) }
%p
  - 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 }