2021-09-30 23:02:18 +05:30
|
|
|
import { __ } from '~/locale';
|
2021-09-04 01:27:46 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
export const TREE_PAGE_LIMIT = 1000; // the maximum amount of items per page
|
2021-09-04 01:27:46 +05:30
|
|
|
export const TREE_PAGE_SIZE = 100; // the amount of items to be fetched per (batch) request
|
|
|
|
export const TREE_INITIAL_FETCH_COUNT = TREE_PAGE_LIMIT / TREE_PAGE_SIZE; // the amount of (batch) requests to make
|
2021-09-30 23:02:18 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
export const COMMIT_BATCH_SIZE = 25; // we request commit data in batches of 25
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
export const SECONDARY_OPTIONS_TEXT = __('Cancel');
|
|
|
|
export const COMMIT_LABEL = __('Commit message');
|
|
|
|
export const TARGET_BRANCH_LABEL = __('Target branch');
|
|
|
|
export const TOGGLE_CREATE_MR_LABEL = __('Start a new merge request with these changes');
|
2021-11-18 22:05:49 +05:30
|
|
|
export const NEW_BRANCH_IN_FORK = __(
|
|
|
|
'A new branch will be created in your fork and a new merge request will be started.',
|
|
|
|
);
|
2021-10-27 15:23:28 +05:30
|
|
|
|
|
|
|
export const COMMIT_MESSAGE_SUBJECT_MAX_LENGTH = 52;
|
|
|
|
export const COMMIT_MESSAGE_BODY_MAX_LENGTH = 72;
|
2021-11-11 11:23:49 +05:30
|
|
|
|
|
|
|
export const LIMITED_CONTAINER_WIDTH_CLASS = 'limit-container-width';
|
2021-11-18 22:05:49 +05:30
|
|
|
|
|
|
|
export const I18N_COMMIT_DATA_FETCH_ERROR = __('An error occurred while fetching commit data.');
|