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

constants.js « info « commit_box « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b74fbe19e158025e3165b6f78735ee1819100d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { __, s__ } from '~/locale';

export const COMMIT_BOX_POLL_INTERVAL = 10000;

export const PIPELINE_STATUS_FETCH_ERROR = __(
  'There was a problem fetching the latest pipeline status.',
);

export const BRANCHES = s__('Commit|Branches');

export const TAGS = s__('Commit|Tags');

export const CONTAINING_COMMIT = s__('Commit|containing commit');

export const FETCH_CONTAINING_REFS_EVENT = 'fetch-containing-refs';

export const FETCH_COMMIT_REFERENCES_ERROR = s__(
  'Commit|There was an error fetching the commit references. Please try again later.',
);

export const BRANCHES_REF_TYPE = 'heads';

export const TAGS_REF_TYPE = 'tags';