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

constants.js « components « index « jobs « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e2d464bc4d9f925be79034d732721b2df137176 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { s__, __ } from '~/locale';

export const STOP_JOBS_MODAL_ID = 'stop-jobs-modal';
export const STOP_JOBS_MODAL_TITLE = s__('AdminArea|Stop all jobs?');
export const STOP_JOBS_BUTTON_TEXT = s__('AdminArea|Stop all jobs');
export const CANCEL_TEXT = __('Cancel');
export const STOP_JOBS_FAILED_TEXT = s__('AdminArea|Stopping jobs failed');
export const PRIMARY_ACTION_TEXT = s__('AdminArea|Stop jobs');
export const STOP_JOBS_WARNING = s__(
  'AdminArea|You’re about to stop all jobs. This will halt all current jobs that are running.',
);