summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_import/utils/constants.js
blob: 6adc3e5306c44428722b1d8a1997c23761e4b63b (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
26
27
28
29
import { __ } from '~/locale';

export const debounceWait = 500;

export const dropdownLabel = __(
  'The GitLab user to which the Jira user %{jiraDisplayName} will be mapped',
);

export const previousImportsMessage = __(`You have imported from this project
  %{numberOfPreviousImports} times before. Each new import will create duplicate issues.`);

export const tableConfig = [
  {
    key: 'jiraDisplayName',
    label: __('Jira display name'),
  },
  {
    key: 'arrow',
    label: '',
  },
  {
    key: 'gitlabUsername',
    label: __('GitLab username'),
  },
];

export const userMappingMessage = __(`Jira users have been imported from the configured Jira
  instance. They can be mapped by selecting a GitLab user from the dropdown in the "GitLab username"
  column. When the form appears, the dropdown defaults to the user conducting the import.`);