25 lines
979 B
JavaScript
25 lines
979 B
JavaScript
import { __, s__ } from '~/locale';
|
|
|
|
export const BRANCHES_PER_PAGE = 20;
|
|
export const PROJECTS_PER_PAGE = 20;
|
|
|
|
export const I18N_NEW_BRANCH_LABEL_DROPDOWN = __('Project');
|
|
export const I18N_NEW_BRANCH_LABEL_BRANCH = __('Branch name');
|
|
export const I18N_NEW_BRANCH_LABEL_SOURCE = __('Source branch');
|
|
export const I18N_NEW_BRANCH_SUBMIT_BUTTON_TEXT = __('Create branch');
|
|
|
|
export const CREATE_BRANCH_ERROR_GENERIC = s__(
|
|
'JiraConnect|Failed to create branch. Please try again.',
|
|
);
|
|
export const CREATE_BRANCH_ERROR_WITH_CONTEXT = s__('JiraConnect|Failed to create branch.');
|
|
|
|
export const I18N_PAGE_TITLE_WITH_BRANCH_NAME = s__(
|
|
'JiraConnect|Create branch for Jira issue %{jiraIssue}',
|
|
);
|
|
export const I18N_PAGE_TITLE_DEFAULT = __('New branch');
|
|
export const I18N_NEW_BRANCH_SUCCESS_TITLE = s__(
|
|
'JiraConnect|New branch was successfully created.',
|
|
);
|
|
export const I18N_NEW_BRANCH_SUCCESS_MESSAGE = s__(
|
|
'JiraConnect|You can now close this window and return to Jira.',
|
|
);
|