summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/container_registry/explorer/constants/expiration_policies.js
blob: 40f9b09a982c8c37b3c456e456325e677a42da03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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',
);