fix(lang): add missing string (#2370)

pull/2372/head
TheCatLady 2 years ago committed by GitHub
parent 5af06bd872
commit d36c1d2929
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -67,6 +67,7 @@ const messages = defineMessages({
toastissuedeletefailed: 'Something went wrong while deleting the issue.',
nocomments: 'No comments.',
unknownissuetype: 'Unknown',
commentplaceholder: 'Add a comment…',
});
const isMovie = (movie: MovieDetails | TvDetails): movie is MovieDetails => {
@ -460,7 +461,9 @@ const IssueDetails: React.FC = () => {
id="message"
name="message"
as="textarea"
placeholder="Respond with a comment..."
placeholder={intl.formatMessage(
messages.commentplaceholder
)}
className="h-20"
/>
<div className="flex items-center justify-end mt-4 space-x-2">

@ -42,6 +42,7 @@
"components.IssueDetails.allseasons": "All Seasons",
"components.IssueDetails.closeissue": "Close Issue",
"components.IssueDetails.closeissueandcomment": "Close with Comment",
"components.IssueDetails.commentplaceholder": "Add a comment…",
"components.IssueDetails.comments": "Comments",
"components.IssueDetails.deleteissue": "Delete Issue",
"components.IssueDetails.deleteissueconfirm": "Are you sure you want to delete this issue?",

Loading…
Cancel
Save