summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/learn_gitlab/components/included_in_trial_indicator.vue
blob: 693dc6a15adeb725e2da45ab6555fe368cf51b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
import { s__ } from '~/locale';

export default {
  name: 'IncludedInTrialIndicator',
  i18n: {
    trialOnly: s__('LearnGitlab|- Included in trial'),
  },
};
</script>
<template>
  <span class="gl-font-style-italic gl-text-gray-500" data-testid="trial-only">
    {{ $options.i18n.trialOnly }}
  </span>
</template>