summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/extensions/code_quality/constants.js
blob: 26c986884d346b3fdc71ff54c57709c8c5b0fa54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { n__, s__, __, sprintf } from '~/locale';

export const codeQualityPrefixes = {
  fixed: 'fixed',
  new: 'new',
};

export const i18n = {
  label: s__('ciReport|Code Quality'),
  loading: s__('ciReport|Code Quality is loading'),
  error: s__('ciReport|Code Quality failed to load results'),
  noChanges: s__(`ciReport|Code Quality hasn't changed.`),
  prependText: s__(`ciReport|in`),
  fixed: s__(`ciReport|Fixed`),
  findings: (errors, prefix) =>
    sprintf(
      n__(
        '%{strong_start}%{errors}%{strong_end} %{prefix} finding',
        '%{strong_start}%{errors}%{strong_end} %{prefix} findings',
        errors.length,
      ),
      {
        errors: errors.length,
        prefix,
      },
      false,
    ),
  improvementAndDegradationCopy: (improvement, degradation) =>
    sprintf(__('Code Quality scans found %{degradation} and %{improvement}.'), {
      improvement,
      degradation,
    }),
  singularCopy: (findings) => sprintf(__('Code Quality scans found %{findings}.'), { findings }),
};