2017-02-28 04:49:59 -05:00
|
|
|
%p
|
2022-08-30 11:10:02 -04:00
|
|
|
= s_("Notify|Hi %{user}!") % { user: sanitize_name(@user.name) }
|
2017-02-28 04:49:59 -05:00
|
|
|
%p
|
2022-08-30 11:10:02 -04:00
|
|
|
= s_("Notify|A new GPG key was added to your account:")
|
2017-02-28 04:49:59 -05:00
|
|
|
%p
|
2022-08-30 11:10:02 -04:00
|
|
|
= s_("Notify|Fingerprint: %{fingerprint}").html_safe % { fingerprint: content_tag(:code, @gpg_key.fingerprint) }
|
2017-02-28 04:49:59 -05:00
|
|
|
%p
|
2022-08-30 11:10:02 -04:00
|
|
|
- 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 }
|