summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/new/components/create_group_description_details.vue
blob: ea08a0821a8e26193cb6be0439df1acca8c0f4e8 (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
44
<script>
import { GlSprintf, GlLink } from '@gitlab/ui';
import { helpPagePath } from '~/helpers/help_page_helper';

export default {
  components: {
    GlLink,
    GlSprintf,
  },
  paths: {
    groupsHelpPath: helpPagePath('user/group/index'),
    subgroupsHelpPath: helpPagePath('user/group/subgroups/index'),
  },
};
</script>

<template>
  <div>
    <p>
      <gl-sprintf
        :message="
          s__(
            'GroupsNew|%{linkStart}Groups%{linkEnd} allow you to manage and collaborate across multiple projects. Members of a group have access to all of its projects. Groups can also be nested by creating subgroups.',
          )
        "
      >
        <template #link="{ content }">
          <gl-link :href="$options.paths.groupsHelpPath" target="_blank">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
    </p>
    <p>
      <gl-sprintf
        :message="
          s__('GroupsNew|Groups can also be nested by creating %{linkStart}subgroups%{linkEnd}.')
        "
      >
        <template #link="{ content }">
          <gl-link :href="$options.paths.subgroupsHelpPath" target="_blank">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
    </p>
  </div>
</template>