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

constants.js « oauth_application « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5eaacadda783049fd1101247d59eaae9cc25b830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { __, s__ } from '~/locale';

export const CONFIRM_MODAL = s__(
  'AuthorizedApplication|Are you sure you want to renew this secret? Any applications using the old secret will no longer be able to authenticate with GitLab.',
);
export const CONFIRM_MODAL_TITLE = s__('AuthorizedApplication|Renew secret?');
export const COPY_SECRET = __('Copy secret');
export const DESCRIPTION_SECRET = __(
  'This is the only time the secret is accessible. Copy the secret and store it securely.',
);
export const RENEW_SECRET = s__('AuthorizedApplication|Renew secret');
export const RENEW_SECRET_FAILURE = s__(
  'AuthorizedApplication|There was an error trying to renew the application secret. Please try again.',
);
export const RENEW_SECRET_SUCCESS = s__(
  'AuthorizedApplication|Application secret was successfully renewed.',
);
export const WARNING_NO_SECRET = __(
  'The secret is only available when you create the application or renew the secret.',
);