|
@@ -160,7 +160,7 @@ export default class CommentComponent extends React.Component<CommentProps> {
|
|
|
<form onSubmit={sendReply}>
|
|
|
<TextArea
|
|
|
className="comment__reply-input"
|
|
|
- placeholder="Enter your reply..."
|
|
|
+ placeholder={gettext('Enter your reply...')}
|
|
|
value={comment.newReply}
|
|
|
onChange={onChangeNewReply}
|
|
|
/>
|
|
@@ -235,7 +235,7 @@ export default class CommentComponent extends React.Component<CommentProps> {
|
|
|
className="comment__input"
|
|
|
value={comment.newText}
|
|
|
onChange={onChangeText}
|
|
|
- placeholder="Enter your comments..."
|
|
|
+ placeholder={gettext('Enter your comments...')}
|
|
|
additionalAttributes={{
|
|
|
'aria-describedby': descriptionId,
|
|
|
}}
|