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

messages.js « approvals « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0538c38307b420d98544d5c04138385583114607 (plain)
1
2
3
4
5
6
7
8
9
import { __, s__ } from '~/locale';

export const FETCH_LOADING = __('Checking approval status');
export const FETCH_ERROR = s__(
  'mrWidget|An error occurred while retrieving approval data for this merge request.',
);
export const APPROVE_ERROR = s__('mrWidget|An error occurred while submitting your approval.');
export const UNAPPROVE_ERROR = s__('mrWidget|An error occurred while removing your approval.');
export const APPROVED_MESSAGE = s__('mrWidget|Merge request approved.');