Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « settings « registry « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0dac466b29ec27102329cd04bd97cf334b9ed41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { s__ } from '~/locale';

export const FETCH_SETTINGS_ERROR_MESSAGE = s__(
  'ContainerRegistry|Something went wrong while fetching the expiration policy.',
);

export const UPDATE_SETTINGS_ERROR_MESSAGE = s__(
  'ContainerRegistry|Something went wrong while updating the expiration policy.',
);

export const UPDATE_SETTINGS_SUCCESS_MESSAGE = s__(
  'ContainerRegistry|Expiration policy successfully saved.',
);

export const NAME_REGEX_LENGTH = 255;