debian-mirror-gitlab/app/assets/javascripts/alerts_settings/utils/error_messages.js

22 lines
671 B
JavaScript
Raw Normal View History

2021-01-29 00:20:46 +05:30
import { s__ } from '~/locale';
export const DELETE_INTEGRATION_ERROR = s__(
'AlertsIntegrations|The integration could not be deleted. Please try again.',
);
export const ADD_INTEGRATION_ERROR = s__(
'AlertsIntegrations|The integration could not be added. Please try again.',
);
export const UPDATE_INTEGRATION_ERROR = s__(
'AlertsIntegrations|The current integration could not be updated. Please try again.',
);
export const RESET_INTEGRATION_TOKEN_ERROR = s__(
'AlertsIntegrations|The integration token could not be reset. Please try again.',
);
export const INTEGRATION_PAYLOAD_TEST_ERROR = s__(
2021-04-17 20:07:23 +05:30
'AlertsIntegrations|Integration payload is invalid.',
2021-01-29 00:20:46 +05:30
);