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

constants.js « truncated_text « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3b43d40adfc5363957eee262d2f7838211fff0c (plain)
1
2
3
4
5
6
7
8
9
import { __ } from '~/locale';

export const SHOW_MORE = __('Show more');
export const SHOW_LESS = __('Show less');
export const STATES = {
  INITIAL: 'initial',
  TRUNCATED: 'truncated',
  EXTENDED: 'extended',
};