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

_pipeline_statistics.haml « charts « pipelines « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b323e290ed4c9b4346415ef9cf1d4d4d79240d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%ul
  %li
    = s_("PipelineCharts|Total:")
    %strong= n_("1 pipeline", "%d pipelines", @counts[:total]) % @counts[:total]
  %li
    = s_("PipelineCharts|Successful:")
    %strong= n_("1 pipeline", "%d pipelines", @counts[:success]) % @counts[:success]
  %li
    = s_("PipelineCharts|Failed:")
    %strong= n_("1 pipeline", "%d pipelines", @counts[:failed]) % @counts[:failed]
  %li
    = s_("PipelineCharts|Success ratio:")
    %strong
      #{success_ratio(@counts)}%