debian-mirror-gitlab/app/assets/javascripts/import_entities/import_groups/constants.js

21 lines
677 B
JavaScript
Raw Normal View History

2021-12-11 22:18:48 +05:30
import { __, s__ } from '~/locale';
2021-10-27 15:23:28 +05:30
export const i18n = {
2021-12-11 22:18:48 +05:30
ERROR_INVALID_FORMAT: s__(
'GroupSettings|Please choose a group URL with no special characters or spaces.',
),
ERROR_NAME_ALREADY_EXISTS: s__('BulkImport|Name already exists.'),
ERROR_REQUIRED: __('This field is required.'),
ERROR_NAME_ALREADY_USED_IN_SUGGESTION: s__(
'BulkImport|Name already used as a target for another group.',
),
ERROR_IMPORT: s__('BulkImport|Importing the group failed.'),
ERROR_IMPORT_COMPLETED: s__('BulkImport|Import is finished. Pick another name for re-import'),
2022-01-26 12:08:38 +05:30
features: {
projectMigration: __('projects'),
},
2021-10-27 15:23:28 +05:30
};
2021-12-11 22:18:48 +05:30
export const NEW_NAME_FIELD = 'newName';