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

constants.js « entity_select « 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: 0fb5a2d5534d68f5c59404ddb33e8abf8ed067dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { __, s__ } from '~/locale';

export const RESET_LABEL = __('Reset');
export const QUERY_TOO_SHORT_MESSAGE = __('Enter at least three characters to search.');

// Groups
export const GROUP_TOGGLE_TEXT = __('Search for a group');
export const GROUP_HEADER_TEXT = __('Select a group');
export const FETCH_GROUPS_ERROR = __('Unable to fetch groups. Reload the page to try again.');
export const FETCH_GROUP_ERROR = __('Unable to fetch group. Reload the page to try again.');

// Projects
export const PROJECT_TOGGLE_TEXT = s__('ProjectSelect|Search for project');
export const PROJECT_HEADER_TEXT = s__('ProjectSelect|Select a project');
export const FETCH_PROJECTS_ERROR = __('Unable to fetch projects. Reload the page to try again.');
export const FETCH_PROJECT_ERROR = __('Unable to fetch project. Reload the page to try again.');