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 }
|