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

import_issues_csv_email.text.erb « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1117f90714dc890823707ed000c1aff1166df91d (plain)
1
2
3
4
5
6
7
8
9
10
11
Your CSV import for project <%= @project.full_name %> (<%= project_url(@project) %>) has been completed.

<%= pluralize(@results[:success], 'issue') %> imported.

<% if @results[:error_lines].present? %>
Errors found on line <%= 'number'.pluralize(@results[:error_lines].size) %>: <%= @results[:error_lines].join(', ') %>. Please check if these lines have an issue title.
<% end %>

<% if @results[:parse_error] %>
Error parsing CSV file. Please make sure it has the correct format: a delimited text file that uses a comma to separate values.
<% end %>