summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/i18n.js
blob: 951fa9733d4ec3ebd3818337261598902f19f00e (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
import { __, s__ } from '~/locale';

export const COMMENT_FORM = {
  GENERIC_UNSUBMITTABLE_NETWORK: __(
    'Your comment could not be submitted! Please check your network connection and try again.',
  ),
  note: __('Note'),
  comment: __('Comment'),
  issue: __('issue'),
  startThread: __('Start thread'),
  mergeRequest: __('merge request'),
  epic: __('epic'),
  bodyPlaceholder: __('Write a comment or drag your files hereā€¦'),
  confidential: s__('Notes|Make this comment confidential'),
  confidentialVisibility: s__(
    'Notes|Confidential comments are only visible to members with the role of Reporter or higher',
  ),
  discussionThatNeedsResolution: __(
    'Discuss a specific suggestion or question that needs to be resolved.',
  ),
  discussion: __('Discuss a specific suggestion or question.'),
  actionButtonWithNote: __('%{actionText} & %{openOrClose} %{noteable}'),
  actionButton: {
    withNote: {
      reopen: __('%{actionText} & reopen %{noteable}'),
      close: __('%{actionText} & close %{noteable}'),
    },
    withoutNote: {
      reopen: __('Reopen %{noteable}'),
      close: __('Close %{noteable}'),
    },
  },
  submitButton: {
    startThread: __('Start thread'),
    comment: __('Comment'),
    commentHelp: __('Add a general comment to this %{noteableDisplayName}.'),
  },
};