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

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

export const CONFIRM_DANGER_MODAL_ID = 'confirm-danger-modal';
export const CONFIRM_DANGER_MODAL_TITLE = __('Confirmation required');
export const CONFIRM_DANGER_MODAL_ERROR = __('Confirmation required');
export const CONFIRM_DANGER_MODAL_BUTTON = __('Confirm');
export const CONFIRM_DANGER_WARNING = __(
  'This action can lead to data loss. To prevent accidental actions we ask you to confirm your intention.',
);
export const CONFIRM_DANGER_PHRASE_TEXT = __(
  'Please type %{phrase_code} to proceed or close this modal to cancel.',
);