debian-mirror-gitlab/app/assets/javascripts/ide/messages.js

26 lines
890 B
JavaScript
Raw Normal View History

2021-04-17 20:07:23 +05:30
import { s__ } from '~/locale';
2021-04-29 21:17:54 +05:30
export const MSG_CANNOT_PUSH_CODE_SHOULD_FORK = s__(
2021-06-08 01:23:25 +05:30
'WebIDE|You cant edit files directly in this project. Fork this project and submit a merge request with your changes.',
2021-04-17 20:07:23 +05:30
);
2021-04-29 21:17:54 +05:30
export const MSG_CANNOT_PUSH_CODE_GO_TO_FORK = s__(
2021-06-08 01:23:25 +05:30
'WebIDE|You cant edit files directly in this project. Go to your fork and submit a merge request with your changes.',
2021-04-29 21:17:54 +05:30
);
export const MSG_CANNOT_PUSH_CODE = s__(
2021-04-17 20:07:23 +05:30
'WebIDE|You need permission to edit files directly in this project.',
);
export const MSG_CANNOT_PUSH_UNSIGNED = s__(
2021-06-08 01:23:25 +05:30
'WebIDE|This project does not accept unsigned commits. You cant commit changes through the Web IDE.',
2021-04-17 20:07:23 +05:30
);
export const MSG_CANNOT_PUSH_UNSIGNED_SHORT = s__(
'WebIDE|This project does not accept unsigned commits.',
);
2021-04-29 21:17:54 +05:30
export const MSG_FORK = s__('WebIDE|Fork project');
export const MSG_GO_TO_FORK = s__('WebIDE|Go to fork');