summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/header_search/constants.js
blob: 2fadb1bd1ee5c63f855f3e59d6b56897bf4a1ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { __ } from '~/locale';

export const MSG_ISSUES_ASSIGNED_TO_ME = __('Issues assigned to me');

export const MSG_ISSUES_IVE_CREATED = __("Issues I've created");

export const MSG_MR_ASSIGNED_TO_ME = __('Merge requests assigned to me');

export const MSG_MR_IM_REVIEWER = __("Merge requests that I'm a reviewer");

export const MSG_MR_IVE_CREATED = __("Merge requests I've created");

export const MSG_IN_ALL_GITLAB = __('in all GitLab');

export const MSG_IN_GROUP = __('in group');

export const MSG_IN_PROJECT = __('in project');

export const GROUPS_CATEGORY = 'Groups';

export const PROJECTS_CATEGORY = 'Projects';

export const LARGE_AVATAR_PX = 32;

export const SMALL_AVATAR_PX = 16;