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

deploy_token_translations.js « deploy_tokens « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3767e9e61700e3ed96bb67773e72a17909678320 (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
import { s__ } from '~/locale';

const translations = {
  addTokenButton: s__('DeployTokens|Create deploy token'),
  addTokenExpiryLabel: s__('DeployTokens|Expiration date (optional)'),
  addTokenExpiryDescription: s__(
    'DeployTokens|Enter an expiration date for your token. Defaults to never expire.',
  ),
  addTokenHeader: s__('DeployTokens|New deploy token'),
  addTokenDescription: s__(
    'DeployTokens|Create a new deploy token for all projects in this group. %{link_start}What are deploy tokens?%{link_end}',
  ),
  addTokenNameLabel: s__('DeployTokens|Name'),
  addTokenNameDescription: s__('DeployTokens|Enter a unique name for your deploy token.'),
  addTokenScopesLabel: s__('DeployTokens|Scopes (select at least one)'),
  addTokenUsernameDescription: s__(
    'DeployTokens|Enter a username for your token. Defaults to %{code_start}gitlab+deploy-token-{n}%{code_end}.',
  ),
  addTokenUsernameLabel: s__('DeployTokens|Username (optional)'),
  newTokenCopyMessage: s__('DeployTokens|Copy deploy token'),
  newProjectTokenCreated: s__('DeployTokens|Your new project deploy token has been created.'),
  newGroupTokenCreated: s__('DeployTokens|Your new group deploy token has been created.'),
  newTokenDescription: s__(
    'DeployTokens|Use this token as a password. Save it. This password can %{i_start}not%{i_end} be recovered.',
  ),
  newTokenMessage: s__('DeployTokens|Your New Deploy Token'),
  newTokenUsernameCopy: s__('DeployTokens|Copy username'),
  newTokenUsernameDescription: s__(
    'DeployTokens|This username supports access. %{link_start}What kind of access?%{link_end}',
  ),
  readRepositoryHelp: s__('DeployTokens|Allows read-only access to the repository.'),
  readRegistryHelp: s__('DeployTokens|Allows read-only access to registry images.'),
  writeRegistryHelp: s__('DeployTokens|Allows read and write access to registry images.'),
  readPackageRegistryHelp: s__('DeployTokens|Allows read-only access to the package registry.'),
  writePackageRegistryHelp: s__(
    'DeployTokens|Allows read and write access to the package registry.',
  ),
  createTokenFailedAlert: s__('DeployTokens|Failed to create a new deployment token'),
};

export default translations;