summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/confirm_danger/constants.js
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.',
);