summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/user_popover/constants.js
blob: bcbe72b4b4f4283b0f7c10177c0e11243b7baefe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { __ } from '~/locale';

export const USER_POPOVER_DELAY = 200;
export const I18N_ERROR_FOLLOW = __(
  'An error occurred while trying to follow this user, please try again.',
);
export const I18N_ERROR_UNFOLLOW = __(
  'An error occurred while trying to unfollow this user, please try again.',
);
export const I18N_USER_BLOCKED = __('User is blocked');
export const I18N_USER_BUSY = __('Busy');
export const I18N_USER_LEARN = __('Learn more about %{name}');
export const I18N_USER_FOLLOW = __('Follow');
export const I18N_USER_UNFOLLOW = __('Unfollow');