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

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

export const MSG_CANNOT_PUSH_CODE_SHOULD_FORK = s__(
  'WebIDE|You need permission to edit files directly in this project. Fork this project to make your changes and submit a merge request.',
);

export const MSG_CANNOT_PUSH_CODE_GO_TO_FORK = s__(
  'WebIDE|You need permission to edit files directly in this project. Go to your fork to make changes and submit a merge request.',
);

export const MSG_CANNOT_PUSH_CODE = s__(
  'WebIDE|You need permission to edit files directly in this project.',
);

export const MSG_CANNOT_PUSH_UNSIGNED = s__(
  'WebIDE|This project does not accept unsigned commits. You will not be able to commit your changes through the Web IDE.',
);

export const MSG_CANNOT_PUSH_UNSIGNED_SHORT = s__(
  'WebIDE|This project does not accept unsigned commits.',
);

export const MSG_FORK = s__('WebIDE|Fork project');

export const MSG_GO_TO_FORK = s__('WebIDE|Go to fork');