summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/settings/components/registry_settings_app.vue
blob: b2c700b817cc48168795313ade19fe85aa66965f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<script>
import { mapState } from 'vuex';
import { s__, sprintf } from '~/locale';

export default {
  components: {},
  computed: {
    ...mapState({
      helpPagePath: 'helpPagePath',
    }),

    helpText() {
      return sprintf(
        s__(
          'PackageRegistry|Read more about the %{helpLinkStart}Container Registry tag retention policies%{helpLinkEnd}',
        ),
        {
          helpLinkStart: `<a href="${this.helpPagePath}" target="_blank">`,
          helpLinkEnd: '</a>',
        },
        false,
      );
    },
  },
};
</script>

<template>
  <div>
    <p>
      {{ s__('PackageRegistry|Tag retention policies are designed to:') }}
    </p>
    <ul>
      <li>{{ s__('PackageRegistry|Keep and protect the images that matter most.') }}</li>
      <li>
        {{
          s__("PackageRegistry|Automatically remove extra images that aren't designed to be kept.")
        }}
      </li>
    </ul>
    <p ref="help-link" v-html="helpText"></p>
  </div>
</template>