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

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

export const EXPIRATION_POLICY_WILL_RUN_IN = s__(
  'ContainerRegistry|Expiration policy will run in %{time}',
);
export const EXPIRATION_POLICY_DISABLED_TEXT = s__(
  'ContainerRegistry|Expiration policy is disabled.',
);
export const DELETE_ALERT_TITLE = s__('ContainerRegistry|Some tags were not deleted');
export const DELETE_ALERT_LINK_TEXT = s__(
  'ContainerRegistry|The cleanup policy timed out before it could delete all tags. An administrator can %{adminLinkStart}manually run cleanup now%{adminLinkEnd} or you can wait for the cleanup policy to automatically run again. %{docLinkStart}More information%{docLinkEnd}',
);
export const CLEANUP_TIMED_OUT_ERROR_MESSAGE = s__(
  'ContainerRegistry|Cleanup timed out before it could delete all tags',
);
export const SET_UP_CLEANUP = s__('ContainerRegistry|Set up cleanup');