16 lines
459 B
JavaScript
16 lines
459 B
JavaScript
|
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;
|