diff --git a/app/soapbox/components/media_gallery.js b/app/soapbox/components/media_gallery.js index defe361dc..90c2f2f5d 100644 --- a/app/soapbox/components/media_gallery.js +++ b/app/soapbox/components/media_gallery.js @@ -587,17 +587,22 @@ class MediaGallery extends React.PureComponent { /> )); - let warning; + let warning, summary; if (sensitive) { warning = ; } else if (inReview) { - // warning = ; - warning = 'Content Under Review'; + warning = ; } else { warning = ; } + if (inReview) { + summary = ; + } else { + summary = ; + } + return (
) : ( -
- +
) )} diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index 94e50c152..36b58496f 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -989,6 +989,10 @@ "status.embed": "Embed", "status.favourite": "Like", "status.filtered": "Filtered", + "status.in_review_warning": "Content Under Review", + "status.in_review_summary.summary": "This Truth has been sent to Moderation for review and is only visible to you.", + "status.in_review_summary.contact": "If you believe this is in error please {link}.", + "status.in_review_summary.link": "Contact Support", "status.load_more": "Load more", "status.media_hidden": "Media hidden", "status.mention": "Mention @{name}",