summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/messages.js
blob: 4298d4c627c9189b49e9ecd47fccd2af40c13427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { s__ } from '~/locale';

export const MSG_CANNOT_PUSH_CODE = 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_SHORT = 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.',
);