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

project_was_exported_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: 11d761414ff696333a2ae1d7e098296437e8adb2 (plain)
1
2
3
4
5
6
7
8
%p
  = s_('Notify|Project %{project_name} was exported successfully.') % {project_name: @project.name}
%p
  - project_link_url = download_export_project_url(@project)
  - project_link_start = '<a href="%{url}" target="_blank" rel="nofollow" download="">'.html_safe % { url: project_link_url }
  = html_escape(s_('Notify|%{project_link_start}Download%{project_link_end} the project export.')) % {project_link_start: project_link_start, project_link_end: '</a>'.html_safe}
%p
  = s_('Notify|The download link will expire in 24 hours.')